From 0865f397ae6c875ec4194093af5c8f53e75f2285 Mon Sep 17 00:00:00 2001 From: Paul Hartmann Date: Wed, 28 Jan 2015 08:21:04 +0100 Subject: added extractor for dctp.tv --- youtube_dl/downloader/rtmp.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'youtube_dl/downloader') diff --git a/youtube_dl/downloader/rtmp.py b/youtube_dl/downloader/rtmp.py index e06ebe826..6cb1bfc50 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: -- cgit v1.2.3