FFmpegPostProcessor: print the command line used if the --verbose option is given
This commit is contained in:
parent
b4cdc245cf
commit
4eb7f1d12e
2 changed files with 7 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue