Add asplit filter

This commit is contained in:
Davide Depau 2017-12-22 16:22:41 +01:00
parent d59bb7a592
commit 7bc77ff714
No known key found for this signature in database
GPG Key ID: C7D999B6A55EFE86

View File

@ -52,6 +52,11 @@ def split(stream):
return FilterNode(stream, split.__name__)
@filter_operator()
def asplit(stream):
return FilterNode(stream, split.__name__)
@filter_operator()
def setpts(stream, expr):
"""Change the PTS (presentation timestamp) of the input frames.