diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-10 12:45:17 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-11-10 12:45:17 +0100 |
commit | 0ed05a1d2db2335168497eb26b8588f2ee0039d7 (patch) | |
tree | f65757c87afeaa711f89260a5db0b3a80665941e /youtube_dl/FileDownloader.py | |
parent | 1008bebaded30e0c1dcce33300fa4096331aec4b (diff) |
Use the 'rtmp_live' field for the live parameter of rtmpdump
Diffstat (limited to 'youtube_dl/FileDownloader.py')
-rw-r--r-- | youtube_dl/FileDownloader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index 04784f602..d0b3dd8fb 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -428,7 +428,7 @@ class FileDownloader(object): info_dict.get('page_url', None), info_dict.get('play_path', None), info_dict.get('tc_url', None), - info_dict.get('live', False)) + info_dict.get('rtmp_live', False)) # Attempt to download using mplayer if url.startswith('mms') or url.startswith('rtsp'): |