You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 -
The text was updated successfully, but these errors were encountered:
…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)
* 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)
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 -
The text was updated successfully, but these errors were encountered: