aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/__init__.py
diff options
context:
space:
mode:
authormcd1992 <theanonbutinf@gmail.com>2014-08-22 16:40:43 -0500
committermcd1992 <theanonbutinf@gmail.com>2014-08-24 14:38:43 -0500
commita7cacbca2b140f668785d57264914de5585ed699 (patch)
treea14fe74b8e6ce31a22b415cabf56de397dadc1e4 /youtube_dl/__init__.py
parentb8313f07bc8c7565c9255b131d307d10b8d02538 (diff)
downloadyoutube-dl-a7cacbca2b140f668785d57264914de5585ed699.tar.xz
Implemented --exec option.
Diffstat (limited to 'youtube_dl/__init__.py')
-rw-r--r--youtube_dl/__init__.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index a96bf9b5c..189a8ff35 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -71,8 +71,12 @@ __authors__ = (
'Sebastian Haas',
'Alexander Kirk',
'Erik Johnson',
+<<<<<<< HEAD
'Keith Beckman',
'Ole Ernst',
+=======
+ 'Aaron McDaniel (mcd1992)',
+>>>>>>> Implemented --exec option.
)
__license__ = 'Public Domain'
@@ -119,6 +123,7 @@ from .postprocessor import (
FFmpegExtractAudioPP,
FFmpegEmbedSubtitlePP,
XAttrMetadataPP,
+ ExecAfterDownload,
)
@@ -550,7 +555,8 @@ def parseOpts(overrideArguments=None):
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)
@@ -831,6 +837,7 @@ def _real_main(argv=None):
'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:
@@ -854,6 +861,12 @@ def _real_main(argv=None):
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)