We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
make a test video:
ffmpeg -i input.mkv -c:v libx265 -pix_fmt gray test.mkv
same for 10 or 12 bits gray:
ffmpeg -i input.mkv -c:v libx265 -pix_fmt gray10le test.mkv ffmpeg -i input.mkv -c:v libx265 -pix_fmt gray12le test.mkv
ffmpeg -i input.mkv -c:v libx265 -pix_fmt gray10le test.mkv
ffmpeg -i input.mkv -c:v libx265 -pix_fmt gray12le test.mkv
use lavfilter play test video, the output color range is limited:
rbg(255,255,255) -> rbg(235,235,235) rbg(0,0,0) -> rbg(16,16,16)
ffplay and mpv don't have this bug lavfilter decoding AVC does not have this bug either
The text was updated successfully, but these errors were encountered:
No branches or pull requests
make a test video:
ffmpeg -i input.mkv -c:v libx265 -pix_fmt gray test.mkv
same for 10 or 12 bits gray:
ffmpeg -i input.mkv -c:v libx265 -pix_fmt gray10le test.mkv
ffmpeg -i input.mkv -c:v libx265 -pix_fmt gray12le test.mkv
use lavfilter play test video, the output color range is limited:
rbg(255,255,255) -> rbg(235,235,235)
rbg(0,0,0) -> rbg(16,16,16)
ffplay and mpv don't have this bug
lavfilter decoding AVC does not have this bug either
The text was updated successfully, but these errors were encountered: