1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-10 19:35:15 -05:00

* fix conversion issues by returning a Long value

This commit is contained in:
Reinhard Pointner 2015-10-18 07:51:10 +00:00
parent 2a64e1fe99
commit 42966e8c68

View File

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