Skip to content
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

Fastflix could not recognize hevc video containing hdr10plus metadata with recent ffmpeg build. #581

Closed
alpha-0 opened this issue Jul 14, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@alpha-0
Copy link

alpha-0 commented Jul 14, 2024

FastFlix Version:
5.7.2 and earlier version

Describe the bug
Fastflix could not recognize any hevc video containing hdr10plus metadata with recent ffmpeg build (ENABLE_HDR10_PLUS=ON).

That is because recent ffmpeg has vbsf option deprecated.

For example to verify hdr10plus metadata from old version to the recent version of ffmpeg:
ffmpeg -loglevel warning -i input.mkv -map 0:v:0 -c:v copy -vbsf hevc_mp4toannexb -f hevc - | hdr10plus_tool --verify extract -

should be changed to:
ffmpeg -loglevel warning -i input.mkv -map 0:v:0 -c:v copy -bsf:v hevc_mp4toannexb -f hevc - | hdr10plus_tool --verify extract -

@alpha-0 alpha-0 added the bug Something isn't working label Jul 14, 2024
cdgriffith added a commit that referenced this issue Jul 19, 2024
…taller (thanks to Sam Katakouzinos)

* Fixing #580 No Downmix key error on profile save (thanks to Hankuu)
* Fixing #581 Fastflix could not recognize hevc video containing hdr10plus metadata with recent ffmpeg build (thanks to alpha-0)
cdgriffith added a commit that referenced this issue Jul 19, 2024
* Fixing #578 Missing code signing to FastFlix exec inside of the installer (thanks to Sam Katakouzinos)
* Fixing #579 Missing Infos and no Mouse-Over info in Subs-Panel since 5.7 (thanks to GeZorTenPlotZ)
* Fixing #580 No Downmix key error on profile save (thanks to Hankuu)
* Fixing #581 Fastflix could not recognize hevc video containing hdr10plus metadata with recent ffmpeg build (thanks to alpha-0)
@cdgriffith
Copy link
Owner

Appreciate the updated command and details, makes life easy to update ! https://github.com/cdgriffith/FastFlix/releases/tag/5.7.4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants