Merge pull request #1 from mats16/feature/async

add -async option support
This commit is contained in:
Kazuki Matsuda 2020-06-03 08:41:05 +09:00 committed by GitHub
commit 37c79b9310
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,6 +134,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(