mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Use id as hash value for source nodes to make sure they're not singletons
This commit is contained in:
parent
6a8245e0c7
commit
df18dacda2
@ -5,6 +5,7 @@ from .dag import KwargReprNode
|
|||||||
from ._utils import escape_chars, get_hash_int
|
from ._utils import escape_chars, get_hash_int
|
||||||
from builtins import object
|
from builtins import object
|
||||||
import os
|
import os
|
||||||
|
import uuid
|
||||||
|
|
||||||
|
|
||||||
def _is_of_types(obj, types):
|
def _is_of_types(obj, types):
|
||||||
@ -305,6 +306,7 @@ class FilterNode(FilterableNode):
|
|||||||
# noinspection PyMethodOverriding
|
# noinspection PyMethodOverriding
|
||||||
class SourceNode(FilterableNode):
|
class SourceNode(FilterableNode):
|
||||||
def __init__(self, name, args=[], kwargs={}):
|
def __init__(self, name, args=[], kwargs={}):
|
||||||
|
self.source_node_id = uuid.uuid4()
|
||||||
super(SourceNode, self).__init__(
|
super(SourceNode, self).__init__(
|
||||||
stream_spec=None,
|
stream_spec=None,
|
||||||
name=name,
|
name=name,
|
||||||
@ -316,6 +318,13 @@ class SourceNode(FilterableNode):
|
|||||||
kwargs=kwargs
|
kwargs=kwargs
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def __hash__(self):
|
||||||
|
"""Two source nodes with the same options should _not_ be considered
|
||||||
|
the same node. For this reason we create a uuid4 on node instantiation,
|
||||||
|
and use that as our hash.
|
||||||
|
"""
|
||||||
|
return self.source_node_id.int
|
||||||
|
|
||||||
|
|
||||||
# noinspection PyMethodOverriding
|
# noinspection PyMethodOverriding
|
||||||
class OutputNode(Node):
|
class OutputNode(Node):
|
||||||
|
@ -673,6 +673,27 @@ def test_sources():
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def test_same_source_multiple_times():
|
||||||
|
out = (ffmpeg
|
||||||
|
.concat(
|
||||||
|
ffmpeg.source("testsrc").trim(end=5),
|
||||||
|
ffmpeg.source("testsrc").trim(start=10, end=14).filter(
|
||||||
|
"setpts", "PTS-STARTPTS"
|
||||||
|
),
|
||||||
|
)
|
||||||
|
.output(TEST_OUTPUT_FILE1)
|
||||||
|
)
|
||||||
|
|
||||||
|
assert out.get_args() == [
|
||||||
|
'-filter_complex',
|
||||||
|
'testsrc[s0];[s0]trim=end=5[s1];testsrc[s2];[s2]trim=end=14:start=10[s3];[s3]setpts=PTS-STARTPTS[s4];[s1][s4]concat=n=2[s5]',
|
||||||
|
'-map',
|
||||||
|
'[s5]',
|
||||||
|
TEST_OUTPUT_FILE1
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def test_pipe():
|
def test_pipe():
|
||||||
width = 32
|
width = 32
|
||||||
height = 32
|
height = 32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user