postprocessors (default)
--prefer-ffmpeg Prefer ffmpeg over avconv for running the
postprocessors
+ --exec Execute a command after the file is finished downloading, similar to find's -exec format
+ Example: --exec 'adb push {} /sdcard/Music/ && rm {}'
# CONFIGURATION
'Sebastian Haas',
'Alexander Kirk',
'Erik Johnson',
+<<<<<<< HEAD
'Keith Beckman',
'Ole Ernst',
+=======
+ 'Aaron McDaniel (mcd1992)',
+>>>>>>> Implemented --exec option.
)
__license__ = 'Public Domain'
FFmpegExtractAudioPP,
FFmpegEmbedSubtitlePP,
XAttrMetadataPP,
+ ExecAfterDownload,
)
help='Prefer avconv over ffmpeg for running the postprocessors (default)')
postproc.add_option('--prefer-ffmpeg', action='store_true', dest='prefer_ffmpeg',
help='Prefer ffmpeg over avconv for running the postprocessors')
-
+ postproc.add_option('--exec', metavar='', action='store', dest='execstring',
+ help='Execute a command on the file after downloading, similar to find\'s -exec syntax. Must be enclosed in quotes. Example: --exec \'adb push {} /sdcard/Music/ && rm {}\'' )
parser.add_option_group(general)
parser.add_option_group(selection)
'default_search': opts.default_search,
'youtube_include_dash_manifest': opts.youtube_include_dash_manifest,
'encoding': opts.encoding,
+ 'execstring': opts.execstring,
}
with YoutubeDL(ydl_opts) as ydl:
ydl.add_post_processor(FFmpegAudioFixPP())
ydl.add_post_processor(AtomicParsleyPP())
+
+ # Please keep ExecAfterDownload towards the bottom as it allows the user to modify the final file in any way.
+ # So if the user is able to remove the file before your postprocessor runs it might cause a few problems.
+ if opts.execstring:
+ ydl.add_post_processor(ExecAfterDownload(commandString=opts.execstring))
+
# Update version
if opts.update_self:
update_self(ydl.to_screen, opts.verbose)
FFmpegEmbedSubtitlePP,
)
from .xattrpp import XAttrMetadataPP
+from .execafterdownload import ExecAfterDownload
__all__ = [
'AtomicParsleyPP',
'FFmpegExtractAudioPP',
'FFmpegEmbedSubtitlePP',
'XAttrMetadataPP',
+ 'ExecAfterDownload',
]
--- /dev/null
+# ExecAfterDownload written by AaronM / mcd1992.
+# If there are any issues with this postprocessor please contact me via github or admin@fgthou.se
+
+import os, re, shlex
+from ..utils import PostProcessingError
+
+class ExecAfterDownload( object ):
+ _downloader = None
+
+ def __init__( self, downloader = None, commandString = None ):
+ self._downloader = downloader
+ self.commandString = commandString
+
+ def set_downloader( self, downloader ):
+ """Sets the downloader for this PP."""
+ self._downloader = downloader
+
+ def run( self, information ):
+ self.targetFile = information["filepath"]
+ self.finalCommand = None;
+
+ if( re.search( '{}', self.commandString ) ): # Find and replace all occurrences of {} with the file name.
+ self.finalCommand = re.sub( "{}", '\'' + self.targetFile + '\'', self.commandString )
+ else:
+ self.finalCommand = self.commandString + ' \'' + self.targetFile + '\''
+
+ if( self.finalCommand ):
+ print( "[exec] Executing command: " + self.finalCommand )
+ os.system( self.finalCommand )
+ else:
+ raise PostProcessingExecError( "Invalid syntax for --exec post processor" )
+
+ return None, information # by default, keep file and do nothing
+
+class PostProcessingExecError( PostProcessingError ):
+ pass