1
0
mirror of https://github.com/kkroening/ffmpeg-python.git synced 2025-04-06 04:15:44 +08:00

Merge branch 'feature/17' into feature/18

This commit is contained in:
Karl Kroening 2017-07-06 02:37:40 -06:00
commit 39466beb62

@ -48,6 +48,11 @@ def filter_(stream_spec, filter_name, *args, **kwargs):
return filter_multi_output(stream_spec, filter_name, *args, **kwargs).stream()
@filter_operator()
def split(stream):
return FilterNode(stream, split.__name__)
@filter_operator()
def setpts(stream, expr):
"""Change the PTS (presentation timestamp) of the input frames.