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

Method __init__

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

Source from the content-addressed store, hash-verified

345# noinspection PyMethodOverriding
346class GlobalNode(Node):
347 def __init__(self, stream, name, args=[], kwargs={}):
348 super(GlobalNode, self).__init__(
349 stream_spec=stream,
350 name=name,
351 incoming_stream_types={OutputStream},
352 outgoing_stream_type=OutputStream,
353 min_inputs=1,
354 max_inputs=1,
355 args=args,
356 kwargs=kwargs,
357 )
358
359
360def stream_operator(stream_classes={Stream}, name=None):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected