FFmpegPostProcessor: print the command line used if the --verbose option is given

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-10-12 13:49:27 +02:00
parent b4cdc245cf
commit 4eb7f1d12e
2 changed files with 7 additions and 0 deletions

View file

@ -9,6 +9,7 @@ import io
import json
import locale
import os
import pipes
import platform
import re
import socket
@ -927,3 +928,7 @@ class locked_file(object):
def read(self, *args):
return self.f.read(*args)
def shell_quote(args):
return ' '.join(map(pipes.quote, args))