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:
commit
13d9e2c3fa
@ -1,8 +1,9 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from builtins import object
|
|
||||||
from .dag import KwargReprNode
|
from .dag import KwargReprNode
|
||||||
from ._utils import get_hash_int
|
from ._utils import get_hash_int
|
||||||
|
from builtins import object
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
def _is_of_types(obj, types):
|
def _is_of_types(obj, types):
|
||||||
@ -115,6 +116,10 @@ class InputNode(Node):
|
|||||||
kwargs=kwargs
|
kwargs=kwargs
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def short_repr(self):
|
||||||
|
return os.path.basename(self.kwargs['filename'])
|
||||||
|
|
||||||
|
|
||||||
class FilterNode(Node):
|
class FilterNode(Node):
|
||||||
def __init__(self, stream_spec, name, max_inputs=1, args=[], kwargs={}):
|
def __init__(self, stream_spec, name, max_inputs=1, args=[], kwargs={}):
|
||||||
@ -152,6 +157,10 @@ class OutputNode(Node):
|
|||||||
kwargs=kwargs
|
kwargs=kwargs
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def short_repr(self):
|
||||||
|
return os.path.basename(self.kwargs['filename'])
|
||||||
|
|
||||||
|
|
||||||
class OutputStream(Stream):
|
class OutputStream(Stream):
|
||||||
def __init__(self, upstream_node, upstream_label):
|
def __init__(self, upstream_node, upstream_label):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user