aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader/rtmp.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-01-30 03:12:53 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-01-30 03:12:53 +0100
commitcf8d6ec865d62ae4bd45f59145adab04776ab2a1 (patch)
treea06fe5abed9043201e97a5b8dba91066c2d906a4 /youtube_dl/downloader/rtmp.py
parentf452f72c6ba0cc3fe560e7449fcb95e804da5b69 (diff)
parent7bb3ceb4c731c9783d2c565204cbc1071c3545ed (diff)
Merge remote-tracking branch 'bastik/dev-dctp'
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 e06ebe826..f7eeb6f43 100644
--- a/youtube_dl/downloader/rtmp.py
+++ b/youtube_dl/downloader/rtmp.py
@@ -104,6 +104,7 @@ class RtmpFD(FileDownloader):
live = info_dict.get('rtmp_live', False)
conn = info_dict.get('rtmp_conn', None)
protocol = info_dict.get('rtmp_protocol', None)
+ real_time = info_dict.get('rtmp_real_time', False)
no_resume = info_dict.get('no_resume', False)
continue_dl = info_dict.get('continuedl', False)
@@ -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: