MCPcopy Create free account
hub / github.com/kkroening/ffmpeg-python / __init__

Method __init__

ffmpeg/nodes.py:305–315  ·  view source on GitHub ↗
(self, stream, name, args=[], kwargs={})

Source from the content-addressed store, hash-verified

303# noinspection PyMethodOverriding
304class OutputNode(Node):
305 def __init__(self, stream, name, args=[], kwargs={}):
306 super(OutputNode, self).__init__(
307 stream_spec=stream,
308 name=name,
309 incoming_stream_types={FilterableStream},
310 outgoing_stream_type=OutputStream,
311 min_inputs=1,
312 max_inputs=None,
313 args=args,
314 kwargs=kwargs,
315 )
316
317 @property
318 def short_repr(self):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected