diff options
author | Limin Wang <lance.lmwang@gmail.com> | 2019-11-04 19:10:01 +0800 |
---|---|---|
committer | Limin Wang <lance.lmwang@gmail.com> | 2020-05-03 05:28:33 +0800 |
commit | d8bc4d23e3698e00867c358b9df9efc94cb5ab9a (patch) | |
tree | 07f03184aae2491384470bda16423a981c1d535b /doc/bitstream_filters.texi | |
parent | 2d17f43fe1958de338530c0b03b8d5de397a8e72 (diff) | |
download | ffmpeg-d8bc4d23e3698e00867c358b9df9efc94cb5ab9a.tar.gz |
avcodec/prores_metadata_bsf: add arib-std-b67 format support
It's based on the following specs:
RDD 45:2017 - SMPTE Registered Disclosure Doc - Interoperable Master Format - Application ProRes
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
Diffstat (limited to 'doc/bitstream_filters.texi')
-rw-r--r-- | doc/bitstream_filters.texi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/bitstream_filters.texi b/doc/bitstream_filters.texi index e2de4fd4ed..9aa2f00296 100644 --- a/doc/bitstream_filters.texi +++ b/doc/bitstream_filters.texi @@ -591,6 +591,8 @@ Keep the same transfer characteristics property (default). BT 601, BT 709, BT 2020 @item smpte2084 SMPTE ST 2084 +@item arib-std-b67 +ARIB STD-B67 @end table @@ -616,6 +618,11 @@ Set Rec709 colorspace for each frame of the file ffmpeg -i INPUT -c copy -bsf:v prores_metadata=color_primaries=bt709:color_trc=bt709:colorspace=bt709 output.mov @end example +Set Hybrid Log-Gamma parameters for each frame of the file +@example +ffmpeg -i INPUT -c copy -bsf:v prores_metadata=color_primaries=bt2020:color_trc=arib-std-b67:colorspace=bt2020nc output.mov +@end example + @section remove_extra Remove extradata from packets. |