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

Function get_stream_map_nodes

ffmpeg/nodes.py:136–142  ·  view source on GitHub ↗
(stream_map)

Source from the content-addressed store, hash-verified

134
135
136def get_stream_map_nodes(stream_map):
137 nodes = []
138 for stream in list(stream_map.values()):
139 if not isinstance(stream, Stream):
140 raise TypeError('Expected Stream; got {}'.format(type(stream)))
141 nodes.append(stream.node)
142 return nodes
143
144
145def get_stream_spec_nodes(stream_spec):

Callers 1

get_stream_spec_nodesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…