mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Update _ffmpeg.py
This commit is contained in:
parent
2803574b2b
commit
9b6d77b453
@ -13,6 +13,20 @@ from .nodes import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def sanitize_args(streams_and_filename, kwargs):
|
||||||
|
streams_and_filename = list(streams_and_filename)
|
||||||
|
if 'filename' not in kwargs:
|
||||||
|
if not isinstance(streams_and_filename[-1], basestring):
|
||||||
|
raise ValueError('A filename must be provided')
|
||||||
|
kwargs['filename'] = streams_and_filename.pop(-1)
|
||||||
|
|
||||||
|
fmt = kwargs.pop('f', None)
|
||||||
|
if fmt:
|
||||||
|
if 'format' in kwargs:
|
||||||
|
raise ValueError("Can't specify both `format` and `f` kwargs")
|
||||||
|
kwargs['format'] = fmt
|
||||||
|
return (streams_and_filename, kwargs)
|
||||||
|
|
||||||
def input(filename, **kwargs):
|
def input(filename, **kwargs):
|
||||||
"""Input file URL (ffmpeg ``-i`` option)
|
"""Input file URL (ffmpeg ``-i`` option)
|
||||||
|
|
||||||
@ -38,21 +52,11 @@ def global_args(stream, *args):
|
|||||||
return GlobalNode(stream, global_args.__name__, args).stream()
|
return GlobalNode(stream, global_args.__name__, args).stream()
|
||||||
|
|
||||||
|
|
||||||
@output_operator()
|
|
||||||
def overwrite_output(stream, **kwargs):
|
|
||||||
"""Overwrite output files without asking (ffmpeg ``-y`` option)
|
|
||||||
|
|
||||||
Official documentation: `Main options <https://ffmpeg.org/ffmpeg.html#Main-options>`__
|
|
||||||
"""
|
|
||||||
return GlobalNode(stream, overwrite_output.__name__, ['-y'], kwargs=kwargs).stream()
|
|
||||||
|
|
||||||
|
|
||||||
@output_operator()
|
@output_operator()
|
||||||
def merge_outputs(*streams):
|
def merge_outputs(*streams):
|
||||||
"""Include all given outputs in one ffmpeg command line"""
|
"""Include all given outputs in one ffmpeg command line"""
|
||||||
return MergeOutputsNode(streams, merge_outputs.__name__).stream()
|
return MergeOutputsNode(streams, merge_outputs.__name__).stream()
|
||||||
|
|
||||||
|
|
||||||
@filter_operator()
|
@filter_operator()
|
||||||
def output(*streams_and_filename, **kwargs):
|
def output(*streams_and_filename, **kwargs):
|
||||||
"""Output file URL
|
"""Output file URL
|
||||||
@ -77,19 +81,18 @@ def output(*streams_and_filename, **kwargs):
|
|||||||
|
|
||||||
Official documentation: `Synopsis <https://ffmpeg.org/ffmpeg.html#Synopsis>`__
|
Official documentation: `Synopsis <https://ffmpeg.org/ffmpeg.html#Synopsis>`__
|
||||||
"""
|
"""
|
||||||
streams_and_filename = list(streams_and_filename)
|
streams_and_filename, kwargs = sanitize_args(streams_and_filename, kwargs)
|
||||||
if 'filename' not in kwargs:
|
return OutputNode(streams_and_filename, output.__name__, kwargs=kwargs).stream()
|
||||||
if not isinstance(streams_and_filename[-1], basestring):
|
|
||||||
raise ValueError('A filename must be provided')
|
|
||||||
kwargs['filename'] = streams_and_filename.pop(-1)
|
|
||||||
streams = streams_and_filename
|
|
||||||
|
|
||||||
fmt = kwargs.pop('f', None)
|
|
||||||
if fmt:
|
@output_operator()
|
||||||
if 'format' in kwargs:
|
def overwrite_output(*streams_and_filename, **kwargs):
|
||||||
raise ValueError("Can't specify both `format` and `f` kwargs")
|
"""Overwrite output files without asking (ffmpeg ``-y`` option)
|
||||||
kwargs['format'] = fmt
|
|
||||||
return OutputNode(streams, output.__name__, kwargs=kwargs).stream()
|
Official documentation: `Main options <https://ffmpeg.org/ffmpeg.html#Main-options>`__
|
||||||
|
"""
|
||||||
|
streams_and_filename, kwargs = sanitize_args(streams_and_filename, kwargs)
|
||||||
|
return GlobalNode(streams_and_filename, overwrite_output.__name__, ['-y'], kwargs=kwargs).stream()
|
||||||
|
|
||||||
|
|
||||||
__all__ = ['input', 'merge_outputs', 'output', 'overwrite_output']
|
__all__ = ['input', 'merge_outputs', 'output', 'overwrite_output']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user