mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
add -async option suppotr
This commit is contained in:
parent
4cb7d26f55
commit
b91c385774
@ -134,6 +134,10 @@ def _get_output_args(node, stream_name_map):
|
|||||||
args += ['-b:v', str(kwargs.pop('video_bitrate'))]
|
args += ['-b:v', str(kwargs.pop('video_bitrate'))]
|
||||||
if 'audio_bitrate' in kwargs:
|
if 'audio_bitrate' in kwargs:
|
||||||
args += ['-b:a', str(kwargs.pop('audio_bitrate'))]
|
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:
|
if 'video_size' in kwargs:
|
||||||
video_size = kwargs.pop('video_size')
|
video_size = kwargs.pop('video_size')
|
||||||
if not isinstance(video_size, basestring) and isinstance(
|
if not isinstance(video_size, basestring) and isinstance(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user