mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-06-30 11:02:54 -05:00
FFmpegPostProcessor: print the command line used if the --verbose option is given
This commit is contained in:
@ -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))
|
||||
|
Reference in New Issue
Block a user