mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Remove commented code
This commit is contained in:
parent
03762a5cc5
commit
1070b3e51b
@ -13,6 +13,7 @@ from .nodes import (
|
|||||||
|
|
||||||
_py_map = map
|
_py_map = map
|
||||||
|
|
||||||
|
|
||||||
def input(filename, **kwargs):
|
def input(filename, **kwargs):
|
||||||
"""Input file URL (ffmpeg ``-i`` option)
|
"""Input file URL (ffmpeg ``-i`` option)
|
||||||
|
|
||||||
@ -86,12 +87,6 @@ def map(*streams):
|
|||||||
|
|
||||||
return head
|
return head
|
||||||
|
|
||||||
# stream_map = get_stream_map(stream_spec)
|
|
||||||
# self.__check_input_len(stream_map, min_inputs, max_inputs)
|
|
||||||
# self.__check_input_types(stream_map, incoming_stream_types)
|
|
||||||
# incoming_edge_map = self.__get_incoming_edge_map(stream_map)
|
|
||||||
# super(Node, self).__init__(incoming_edge_map, name, args, kwargs)
|
|
||||||
# self.__outgoing_stream_type = outgoing_stream_type
|
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
'input',
|
'input',
|
||||||
|
@ -75,7 +75,6 @@ DagEdge = namedtuple('DagEdge', ['downstream_node', 'downstream_label', 'upstrea
|
|||||||
|
|
||||||
def get_incoming_edges(downstream_node, incoming_edge_map):
|
def get_incoming_edges(downstream_node, incoming_edge_map):
|
||||||
edges = []
|
edges = []
|
||||||
# downstream_label, (upstream_node, upstream_label) in [(i[0], i[1][:2]) for i in self.incoming_edge_map.items()]
|
|
||||||
for downstream_label, upstream_info in [(i[0], i[1]) for i in incoming_edge_map.items()]:
|
for downstream_label, upstream_info in [(i[0], i[1]) for i in incoming_edge_map.items()]:
|
||||||
upstream_node, upstream_label = upstream_info[:2]
|
upstream_node, upstream_label = upstream_info[:2]
|
||||||
upstream_selector = None if len(upstream_info) < 3 else upstream_info[2]
|
upstream_selector = None if len(upstream_info) < 3 else upstream_info[2]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user