1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* {bitrate} and {duration} as float type for convenience

This commit is contained in:
Reinhard Pointner 2014-01-08 14:30:35 +00:00
parent 32f119756b
commit 4b15736faf

View File

@ -546,8 +546,8 @@ public class MediaBindingBean {
}
@Define("duration")
public Integer getDuration() {
return new Integer(getMediaInfo(StreamKind.General, 0, "Duration"));
public Float getDuration() {
return new Float(getMediaInfo(StreamKind.General, 0, "Duration"));
}
@Define("seconds")