mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Merge 37c79b931000748e5bf7452758ca867555d6db9c into df129c7ba30aaa9ffffb81a48f53aa7253b0b4e6
This commit is contained in:
commit
cc6506a27c
@ -138,6 +138,10 @@ def _get_output_args(node, stream_name_map):
|
||||
args += ['-b:v', str(kwargs.pop('video_bitrate'))]
|
||||
if 'audio_bitrate' in kwargs:
|
||||
args += ['-b:a', str(kwargs.pop('audio_bitrate'))]
|
||||
if 'video_sync' in kwargs:
|
||||
args += ['-vsync', str(kwargs.pop('video_sync'))]
|
||||
if 'audio_sync' in kwargs:
|
||||
args += ['-async', str(kwargs.pop('audio_sync'))]
|
||||
if 'video_size' in kwargs:
|
||||
video_size = kwargs.pop('video_size')
|
||||
if not isinstance(video_size, basestring) and isinstance(video_size, Iterable):
|
||||
|
Loading…
x
Reference in New Issue
Block a user