|
|
|
|
|
by r4vik
1432 days ago
|
|
I don't know if the output is correct but I prompted openai: ffmpeg command to convert hdr video to SDR:
ffmpeg -i video.mp4
and it returned:
ffmpeg -i video.mp4 -vf format=pix_fmts=yuv420p -c:v libx264 -crf 18 -preset veryslow -c:a copy output.mp4 This FFmpeg command will take your HDR video and convert it to an SDR video using the libx264 codec with a CRF value of 18.```
|
|