aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/FileDownloader.py
diff options
context:
space:
mode:
authorMichael Walter <michael.walter@gmail.com>2013-04-07 15:17:36 +0200
committerMichael Walter <michael.walter@gmail.com>2013-04-07 15:17:36 +0200
commitadb029ed813dd29463fa04d827f89f37457c713c (patch)
tree058cc877fb3ba5df82bd8ac317b25e23f7021f48 /youtube_dl/FileDownloader.py
parent43ff1a347d766bbaa7116f627680e8e74a8760d1 (diff)
downloadyoutube-dl-adb029ed813dd29463fa04d827f89f37457c713c.tar.xz
added --playpath/-y support to RTMP downloads (via 'play_path' entry in 'info_dict')
Diffstat (limited to 'youtube_dl/FileDownloader.py')
-rw-r--r--youtube_dl/FileDownloader.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py
index 7c5a52be1..e801db00a 100644
--- a/youtube_dl/FileDownloader.py
+++ b/youtube_dl/FileDownloader.py
@@ -629,7 +629,7 @@ class FileDownloader(object):
except (IOError, OSError):
self.report_warning(u'Unable to remove downloaded video file')
- def _download_with_rtmpdump(self, filename, url, player_url, page_url):
+ def _download_with_rtmpdump(self, filename, url, player_url, page_url, play_path):
self.report_destination(filename)
tmpfilename = self.temp_name(filename)
@@ -648,6 +648,8 @@ class FileDownloader(object):
basic_args += ['-W', player_url]
if page_url is not None:
basic_args += ['--pageUrl', page_url]
+ if play_path is not None:
+ basic_args += ['-y', play_path]
args = basic_args + [[], ['-e', '-k', '1']][self.params.get('continuedl', False)]
if self.params.get('verbose', False):
try:
@@ -702,7 +704,8 @@ class FileDownloader(object):
if url.startswith('rtmp'):
return self._download_with_rtmpdump(filename, url,
info_dict.get('player_url', None),
- info_dict.get('page_url', None))
+ info_dict.get('page_url', None),
+ info_dict.get('play_path', None))
tmpfilename = self.temp_name(filename)
stream = None