diff options
author | Wenbin Chen <wenbin.chen@intel.com> | 2022-10-31 15:22:25 +0800 |
---|---|---|
committer | Haihao Xiang <haihao.xiang@intel.com> | 2022-11-22 13:52:38 +0800 |
commit | efe2b63c89462a46c0450da49832b3c9075b1222 (patch) | |
tree | f4bf84f195aeeb6a45e88c7a384c45f73ad274cd /doc/examples/.gitignore | |
parent | c0c0a5f106c3a3ab80ab53b57db2132e585e80a0 (diff) | |
download | ffmpeg-efe2b63c89462a46c0450da49832b3c9075b1222.tar.gz |
doc/examples: Add qsv_transcode example
Add qsv_transcode example which shows how to use qsv to do hardware
accelerated transcoding, also show how to dynamically set encoding
parameters.
examples:
Normal usage:
qsv_transcode input.mp4 h264_qsv output.mp4 "g 60"
Dynamic setting usage:
qsv_transcode input.mp4 hevc_qsv output.mp4 "g 60 asyne_depth 1"
100 "g 120"
This command initializes codec with gop_size 60 and change it to
120 after 100 frames
Signed-off-by: Wenbin Chen <wenbin.chen@intel.com>
Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
Diffstat (limited to 'doc/examples/.gitignore')
-rw-r--r-- | doc/examples/.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/examples/.gitignore b/doc/examples/.gitignore index 44960e1de7..d787afdd4c 100644 --- a/doc/examples/.gitignore +++ b/doc/examples/.gitignore @@ -22,3 +22,4 @@ /transcoding /vaapi_encode /vaapi_transcode +/qsv_transcode |