ffmpeg-python/ffmpeg/ffmpeg.py
2017-05-13 22:57:34 -10:00

255 lines
8.2 KiB
Python
Executable File

#!./venv/bin/python
from functools import partial
import hashlib
import json
import operator
import subprocess
import sys
def _create_root_node(node_class, *args, **kwargs):
root = node_class(*args, **kwargs)
root._update_hash()
return root
def _create_child_node(node_class, parent, *args, **kwargs):
child = node_class([parent], *args, **kwargs)
child._update_hash()
return child
class _Node(object):
def __init__(self, parents):
parent_hashes = [parent.hash for parent in parents]
assert len(parent_hashes) == len(set(parent_hashes)), 'Same node cannot be included as parent multiple times'
self.parents = parents
@classmethod
def _add_operator(cls, node_class):
if not getattr(node_class, 'STATIC', False):
def func(self, *args, **kwargs):
return _create_child_node(node_class, self, *args, **kwargs)
else:
@classmethod
def func(cls2, *args, **kwargs):
return _create_root_node(node_class, *args, **kwargs)
setattr(cls, node_class.NAME, func)
@classmethod
def _add_operators(cls, node_classes):
[cls._add_operator(node_class) for node_class in node_classes]
@property
def _props(self):
return {k: v for k, v in self.__dict__.items() if k not in ['parents', 'hash']}
def __repr__(self):
# TODO: exclude default values.
props = self._props
formatted_props = ['{}={!r}'.format(key, props[key]) for key in sorted(self._props)]
return '{}({})'.format(self.NAME, ','.join(formatted_props))
def __eq__(self, other):
return self.hash == other.hash
def _update_hash(self):
my_hash = hashlib.md5(json.dumps(self._props)).hexdigest()
parent_hashes = [parent.hash for parent in self.parents]
hashes = parent_hashes + [my_hash]
self.hash = hashlib.md5(','.join(hashes)).hexdigest()
class _InputNode(_Node):
pass
class _FileInputNode(_InputNode):
NAME = 'file_input'
STATIC = True
def __init__(self, filename):
super(_FileInputNode, self).__init__(parents=[])
self.filename = filename
class _FilterNode(_Node):
pass
class _TrimFilterNode(_FilterNode):
NAME = 'trim'
def __init__(self, parents, start_frame, end_frame, setpts='PTS-STARTPTS'):
super(_TrimFilterNode, self).__init__(parents)
self.start_frame = start_frame
self.end_frame = end_frame
self.setpts = setpts
class _ConcatNode(_Node):
NAME = 'concat'
STATIC = True
def __init__(self, *parents):
super(_ConcatNode, self).__init__(parents)
class _OutputNode(_Node):
@classmethod
def _get_stream_name(cls, name):
return '[{}]'.format(name)
@classmethod
def _get_input_args(cls, input_node):
if isinstance(input_node, _FileInputNode):
args = ['-i', input_node.filename]
else:
assert False, 'Unsupported input node: {}'.format(input_node)
return args
@classmethod
def _topo_sort(cls, start_node):
marked_nodes = []
sorted_nodes = []
child_map = {}
def visit(node, child):
assert node not in marked_nodes, 'Graph is not a DAG'
if child is not None:
if node not in child_map:
child_map[node] = []
child_map[node].append(child)
if node not in sorted_nodes:
marked_nodes.append(node)
[visit(parent, node) for parent in node.parents]
marked_nodes.remove(node)
sorted_nodes.append(node)
unmarked_nodes = [start_node]
while unmarked_nodes:
visit(unmarked_nodes.pop(), None)
return sorted_nodes, child_map
@classmethod
def _get_filter(cls, node):
# TODO: find a better way to do this instead of ugly if/elifs.
if isinstance(node, _TrimFilterNode):
return 'trim=start_frame={}:end_frame={},setpts={}'.format(node.start_frame, node.end_frame, node.setpts)
elif isinstance(node, _ConcatNode):
return 'concat=n={}'.format(len(node.parents))
else:
assert False, 'Unsupported filter node: {}'.format(node)
@classmethod
def _get_filter_spec(cls, i, node, stream_name_map):
stream_name = cls._get_stream_name('v{}'.format(i))
stream_name_map[node] = stream_name
inputs = [stream_name_map[parent] for parent in node.parents]
filter_spec = '{}{}{}'.format(''.join(inputs), cls._get_filter(node), stream_name)
return filter_spec
@classmethod
def _get_filter_arg(cls, filter_nodes, stream_name_map):
filter_specs = [cls._get_filter_spec(i, node, stream_name_map) for i, node in enumerate(filter_nodes)]
return ';'.join(filter_specs)
@classmethod
def _get_global_args(cls, node):
if isinstance(node, _OverwriteOutputNode):
return ['-y']
else:
assert False, 'Unsupported global node: {}'.format(node)
@classmethod
def _get_output_args(cls, node, stream_name_map):
args = []
if not isinstance(node, _MergeOutputsNode):
stream_name = stream_name_map[node.parents[0]]
if stream_name != '[0]':
args += ['-map', stream_name]
if isinstance(node, _FileOutputNode):
args += [node.filename]
else:
assert False, 'Unsupported output node: {}'.format(node)
return args
def get_args(self):
args = []
# TODO: group nodes together, e.g. `-i somefile -r somerate`.
sorted_nodes, child_map = self._topo_sort(self)
input_nodes = [node for node in sorted_nodes if isinstance(node, _InputNode)]
output_nodes = [node for node in sorted_nodes if isinstance(node, _OutputNode) and not
isinstance(node, _GlobalNode)]
global_nodes = [node for node in sorted_nodes if isinstance(node, _GlobalNode)]
filter_nodes = [node for node in sorted_nodes if node not in (input_nodes + output_nodes + global_nodes)]
stream_name_map = {node: self._get_stream_name(i) for i, node in enumerate(input_nodes)}
filter_arg = self._get_filter_arg(filter_nodes, stream_name_map)
args += reduce(operator.add, [self._get_input_args(node) for node in input_nodes])
if filter_arg:
args += ['-filter_complex', filter_arg]
args += reduce(operator.add, [self._get_output_args(node, stream_name_map) for node in output_nodes])
args += reduce(operator.add, [self._get_global_args(node) for node in global_nodes], [])
return args
def run(self):
args = ['ffmpeg'] + self.get_args()
subprocess.check_call(args)
class _GlobalNode(_OutputNode):
def __init__(self, parents):
assert len(parents) == 1
assert isinstance(parents[0], _OutputNode), 'Global nodes can only be attached after output nodes'
super(_GlobalNode, self).__init__(parents)
class _OverwriteOutputNode(_GlobalNode):
NAME = 'overwrite_output'
class _MergeOutputsNode(_OutputNode):
NAME = 'merge_outputs'
def __init__(self, *parents):
assert not any([not isinstance(parent, _OutputNode) for parent in parents]), 'Can only merge output streams'
super(_MergeOutputsNode, self).__init__(*parents)
class _FileOutputNode(_OutputNode):
NAME = 'file_output'
def __init__(self, parents, filename):
super(_FileOutputNode, self).__init__(parents)
self.filename = filename
NODE_CLASSES = [
_ConcatNode,
_FileInputNode,
_FileOutputNode,
_OverwriteOutputNode,
_TrimFilterNode,
]
_Node._add_operators(NODE_CLASSES)
_module = sys.modules[__name__]
for _node_class in NODE_CLASSES:
if getattr(_node_class, 'STATIC', False):
func = _create_root_node
else:
func = _create_child_node
func = partial(func, _node_class)
setattr(_module, _node_class.NAME, func)
def get_args(node):
assert isinstance(node, _OutputNode), 'Cannot generate ffmpeg args for non-output node'
return node.get_args()
def run(node):
assert isinstance(node, _OutputNode), 'Cannot run ffmpeg on non-output node'
return node.run()