ffmpeg Format settings, Matrix bt709

后端 未结 2 1390
情深已故
情深已故 2021-01-05 19:24

Does anyone know how I can achieve the following color space (bt.709) via FFmpeg?
Here is what I have now in my files...

As you can se

2条回答
  •  自闭症患者
    2021-01-05 20:26

    With re-encoding, use

    ffmpeg -i test.mxf -c copy -c:v mpeg2video -b:v 5000k \
           -color_primaries 1 -color_trc 1 -colorspace 1 out.mxf
    

    In Mediainfo, at the end of the video stream attributes, you should see the three color-related entries. Note that Format settings (Matrix) is related to MPEG quantization and not color.

提交回复
热议问题