diff options
author | Martin Vignali <martin.vignali@gmail.com> | 2018-10-28 12:53:25 +0100 |
---|---|---|
committer | Martin Vignali <martin.vignali@gmail.com> | 2018-11-11 21:06:34 +0100 |
commit | 0aba92d42d5194aee335f623bcb70831cd71b0af (patch) | |
tree | 7d60bedbce737914a7d7802e5bca3aff6093d3f6 /doc/bitstream_filters.texi | |
parent | 936d18fb42bb1776f1b25e16b9d6a72846ee33ac (diff) | |
download | ffmpeg-0aba92d42d5194aee335f623bcb70831cd71b0af.tar.gz |
avcodec : add prores_metadata bsf for set the color property of each prores frame
Diffstat (limited to 'doc/bitstream_filters.texi')
-rw-r--r-- | doc/bitstream_filters.texi | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/doc/bitstream_filters.texi b/doc/bitstream_filters.texi index 53470c01ec..655a2c1e63 100644 --- a/doc/bitstream_filters.texi +++ b/doc/bitstream_filters.texi @@ -530,6 +530,72 @@ ffmpeg -i INPUT -c copy -bsf noise[=1] output.mkv @section null This bitstream filter passes the packets through unchanged. +@section prores_metadata + +Modify color property metadata embedded in prores stream. + +@table @option +@item color_primaries +Set the color primaries. +Available values are: + +@table @samp +@item auto +Keep the same color primaries property (default). + +@item unknown +@item bt709 +@item bt470bg +BT601 625 + +@item smpte170m +BT601 525 + +@item bt2020 +@item smpte431 +DCI P3 + +@item smpte432 +P3 D65 + +@end table + +@item transfer_characteristics +Set the color transfert. +Available values are: + +@table @samp +@item auto +Keep the same transfer characteristics property (default). + +@item unknown +@item bt709 +BT 601, BT 709, BT 2020 +@end table + + +@item matrix_coefficients +Set the matrix coefficient. +Available values are: + +@table @samp +@item auto +Keep the same transfer characteristics property (default). + +@item unknown +@item bt709 +@item smpte170m +BT 601 + +@item bt2020nc +@end table +@end table + +Set Rec709 colorspace for each frame of the file +@example +ffmpeg -i INPUT -c copy -bsf:v prores_metadata=color_primaries=bt709:color_trc=bt709:colorspace=bt709 output.mov +@end example + @section remove_extra Remove extradata from packets. |