Explicitly include -map [0] when output has multiple mapped streams

This commit is contained in:
Davide Depau 2017-12-21 17:37:10 +01:00
parent 0d95d9b58d
commit 90652306ea
No known key found for this signature in database
GPG Key ID: C7D999B6A55EFE86

View File

@ -100,7 +100,7 @@ def _get_output_args(node, stream_name_map):
for edge in node.incoming_edges:
# edge = node.incoming_edges[0]
stream_name = "[{}{}]".format(stream_name_map[edge.upstream_node, edge.upstream_label], "" if not edge.upstream_selector else ":{}".format(edge.upstream_selector))
if stream_name != '[0]':
if stream_name != '[0]' or len(node.incoming_edges) > 1:
args += ['-map', stream_name]
kwargs = copy.copy(node.kwargs)