mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 20:11:11 +08:00
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:
parent
ce06215af5
commit
33c9d53678
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user