mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Make sure item
is instance of slice
in __getitem__
This commit is contained in:
parent
3f671218a6
commit
c2c6a864d2
@ -49,7 +49,7 @@ class Stream(object):
|
|||||||
Please note that this can only be used to select a substream that already exist. If you want to split
|
Please note that this can only be used to select a substream that already exist. If you want to split
|
||||||
the stream, use the `split` filter.
|
the stream, use the `split` filter.
|
||||||
"""
|
"""
|
||||||
if item.start != None:
|
if not isinstance(item, slice) or item.start is not None:
|
||||||
raise ValueError("Invalid syntax. Use 'stream[:\"something\"]', not 'stream[\"something\"]'.")
|
raise ValueError("Invalid syntax. Use 'stream[:\"something\"]', not 'stream[\"something\"]'.")
|
||||||
|
|
||||||
return self.node.stream(select=item.stop)
|
return self.node.stream(select=item.stop)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user