aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader/rtmp.py
diff options
context:
space:
mode:
authorPaul Hartmann <phaaurlt@gmail.com>2015-01-28 08:21:04 +0100
committerPaul Hartmann <phaaurlt@gmail.com>2015-01-28 08:21:04 +0100
commit0865f397ae6c875ec4194093af5c8f53e75f2285 (patch)
tree873df6be852a90004e056854d30d842495282b9f /youtube_dl/downloader/rtmp.py
parent3a0d2f520a0f95c2f87b1c95049135b10206f97f (diff)
downloadyoutube-dl-0865f397ae6c875ec4194093af5c8f53e75f2285.zip
youtube-dl-0865f397ae6c875ec4194093af5c8f53e75f2285.tar.gz
youtube-dl-0865f397ae6c875ec4194093af5c8f53e75f2285.tar.bz2
added extractor for dctp.tv
Diffstat (limited to 'youtube_dl/downloader/rtmp.py')
-rw-r--r--youtube_dl/downloader/rtmp.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/downloader/rtmp.py b/youtube_dl/downloader/rtmp.py
index e06ebe8..6cb1bfc 100644
--- a/youtube_dl/downloader/rtmp.py
+++ b/youtube_dl/downloader/rtmp.py
@@ -106,6 +106,7 @@ class RtmpFD(FileDownloader):
protocol = info_dict.get('rtmp_protocol', None)
no_resume = info_dict.get('no_resume', False)
continue_dl = info_dict.get('continuedl', False)
+ real_time = info_dict.get('real_time', False)
self.report_destination(filename)
tmpfilename = self.temp_name(filename)
@@ -143,6 +144,8 @@ class RtmpFD(FileDownloader):
basic_args += ['--conn', conn]
if protocol is not None:
basic_args += ['--protocol', protocol]
+ if real_time:
+ basic_args += ['--realtime']
args = basic_args
if not no_resume and continue_dl and not live: