mirror of
https://github.com/mitb-archive/filebot
synced 2024-12-24 16:58:51 -05:00
* extra {vf} step
This commit is contained in:
parent
353bb384de
commit
5b1fe0a22f
@ -293,8 +293,8 @@ public class MediaBindingBean {
|
|||||||
int height = Integer.parseInt(getMediaInfo(StreamKind.Video, 0, "Height"));
|
int height = Integer.parseInt(getMediaInfo(StreamKind.Video, 0, "Height"));
|
||||||
|
|
||||||
int ns = 0;
|
int ns = 0;
|
||||||
int[] ws = new int[] { 15360, 7680, 3840, 1920, 1280, 1024, 854, 852, 688, 512, 320 };
|
int[] ws = new int[] { 15360, 7680, 3840, 1920, 1280, 1024, 854, 852, 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 };
|
||||||
for (int i = 0; i < ws.length - 1; i++) {
|
for (int i = 0; i < ws.length - 1; i++) {
|
||||||
if ((width >= ws[i] || height >= hs[i]) || (width > ws[i + 1] && height > hs[i + 1])) {
|
if ((width >= ws[i] || height >= hs[i]) || (width > ws[i + 1] && height > hs[i + 1])) {
|
||||||
ns = hs[i];
|
ns = hs[i];
|
||||||
|
Loading…
Reference in New Issue
Block a user