-
Notifications
You must be signed in to change notification settings - Fork 62
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
Movie work in BDInfo v0.7.5.6 but not in BDInfo v0.7.5.7 beta and newer. (And some fixes) #36
Comments
Nevermind, used VPN to download it. Will have a look at it |
Another fix |
This disk is using variable PES (packetized elementary stream) packet length instead of fixed length for the main video stream, hence the code was not able to parse the files correctly.
This one doesn't need to be changed, because it is actually working as intended. |
Video bitrate should be measured correctly with the lastest beta release v0.7.6.1b Avg frame sizes for HEVC streams are still on TODO list |
Is working great and the report look a lot better. Thanks. But i notice a few things. 1)Report is missing a space between Main Audio Track and Secondary Audio Track 2)Report FILES: Name (Fixed in v0.7.6.2b) 3)Bug - Dolby Vision video is missing "Main 10 @ Level 5.1" number 4)Bug - Is strange nobody notice this. The Movie Size is wrong, probably because all the files size all wrong. I notice this 5)This could be a bug depending how you see it. I notice this comparing BDInfo with the DVDFab-BDInfo. Disc Size - I do this for me but i don't know if this affect something else. private long GetDirectorySize(DirectoryInfo directoryInfo)
6)Report - AUDIO - 5.1 / 48 kHz / 2005 kbps / 24-bit (DTS Core: 5.1 / 48 kHz / 768 kbps / 24-bit) 7)Report - SUBTITLES - Presentation Graphics English 29.42 kbps 1920x1080 / 1596 Captions |
Some Request. Comparing BDInfo with the DVDFab-BDInfo i notice: MPEG-H HEVC Video 62,635 kbps 2160p / 23.976 fps / 16:9 / Main 10 @ Level 5.1 @ High / 10 bits / HDR10 / BT.2020 MPEG-H HEVC Video 62639 kbps 2160p / 23.976 fps / 16:9 / Main 10 @ Level 5.1 @ High / 4:2:0 / 10 bits / 1000nits / HDR10 / BT.2020 Missing: Thanks |
Level 0 @ High Edit: |
Movie
Robin.Hood.Prince.of.Thieves.1991.4k
Sample
https://www60.zippyshare.com/v/EWW9VF8N/file.html
I try to use your tool to create the sample but the movie stays loading like newer version of BDInfo. The problem is only with this movie.
In the sample i copy all the files and one stream file.
I try to see what is the problem but all i can find was that when i change the "TSCodecHEVC.cs" for the BDInfo v0.7.5.6 the movie work.
Some fixes
(Fixed in v0.7.6.2b) 1)Avg Frame Size in report for 4k and others movie
In FormRepot.cs - Commented because the Tag value is never used here for anything else. And when is null Avg Frame Size don't work.
if (diag.Tag != null)
{
chapterFrameCount++; ***Move this line outside the if
}
(Fixed in v0.7.6.2b) 2)Chart Type Video frame size in report for 4k and others movie
In FormChart.cs (public void GenerateFrameSizeChart) - Commented because the Tag value is never used here for anything else.
And when is null Chart Type Video frame size don't work.
if (diag.Tag == null) continue;
string frameType = diag.Tag;
The text was updated successfully, but these errors were encountered: