Add split operator

This commit is contained in:
Karl Kroening 2017-07-06 02:32:45 -06:00
parent 6887ad8bac
commit b7fc331722

View File

@ -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.