Added output arg for video codec

In order to enable hardware acceleration for ffmpeg-python the arg -c:v needs to be used. This change adds that capability using the same method as video_bitrate.
This commit is contained in:
Richard Meyers 2018-07-08 20:08:08 -07:00 committed by GitHub
parent ce06215af5
commit 33c9d53678
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,6 +121,10 @@ def _get_output_args(node, stream_name_map):
filename = kwargs.pop('filename')
if 'format' in kwargs:
args += ['-f', kwargs.pop('format')]
if 'video_codec' in kwargs:
args += ['-c:v', str(kwargs.pop('video_codec'))]
if 'audio_codec' in kwargs:
args += ['-c:a', str(kwargs.pop('audio_codec'))]
if 'video_bitrate' in kwargs:
args += ['-b:v', str(kwargs.pop('video_bitrate'))]
if 'audio_bitrate' in kwargs: