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

Make sure that 748x574 resolution resolves to 576p

This commit is contained in:
Reinhard Pointner 2017-08-03 11:23:39 +08:00
parent 49478321ac
commit 7a7af2b386

View File

@ -355,8 +355,8 @@ public class MediaBindingBean {
int width = Integer.parseInt(getMediaInfo(StreamKind.Video, 0, "Width")); int width = Integer.parseInt(getMediaInfo(StreamKind.Video, 0, "Width"));
int height = Integer.parseInt(getMediaInfo(StreamKind.Video, 0, "Height")); int height = Integer.parseInt(getMediaInfo(StreamKind.Video, 0, "Height"));
int[] ws = new int[] { 15360, 7680, 3840, 1920, 1280, 1024, 854, 720, 688, 512, 320 }; int[] ws = new int[] { 15360, 7680, 3840, 1920, 1280, 1024, 854, 748, 720, 688, 512, 320 };
int[] hs = new int[] { 8640, 4320, 2160, 1080, 720, 576, 576, 480, 360, 240, 240 }; int[] hs = new int[] { 8640, 4320, 2160, 1080, 720, 576, 576, 480, 480, 360, 240, 240 };
int ns = 0; int ns = 0;