-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some SD content is erroneously flagged as HD #987
Comments
Comment #1 originally posted by Omertron on 2009-09-13T18:37:20.000Z: Thanks for spotting this. 1080i/p should be width >=1920 and 720p should be width >=1280 Fixed in r1104 |
Comment #2 originally posted by Omertron on 2009-09-14T03:59:51.000Z: Actually I don't think the way you changed is is correct, as it doesn't take into |
Comment #3 originally posted by Omertron on 2009-09-14T06:26:10.000Z: If you've cropped the sides from 1280/1920 then you aren't getting HD really are you? This method is consistent with the rest of YAMJ where SD < 1280, 720 <1920 and 1080 = |
Comment #4 originally posted by Omertron on 2009-09-14T10:30:59.000Z: You probably misunderstood me, I didn't mean cropped 720p which is 16/9 all the way |
Comment #5 originally posted by Omertron on 2009-09-14T18:56:58.000Z: Ah, I understand now. I've updated the MediaInfo Scanner now in r1108 |
Original issue 988 created by Omertron on 2009-09-10T04:01:46.000Z:
Any files containing 768x576 or 1024x576 (PAL) content are flaged as HD.
The following change needs to be applied to fix this:
in MediaInfoScanner.java
line 385:
Code:
} else if (width > 720) {
should be:
Code:
} else if (width > 1024) {
The text was updated successfully, but these errors were encountered: