about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-10-26 21:44:23 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-10-26 21:44:29 +0100
commit83855f3a1fdf9d344e0b25c757e3eccd9246c2bf (patch)
tree54222a8a13abaa53f4fb41b61cd185b011a3f78e
parent50b51830fbeea2e9b2a3235e0c8b6b146f28eb3a (diff)
downloadyoutube-dl-83855f3a1fdf9d344e0b25c757e3eccd9246c2bf.tar.gz
youtube-dl-83855f3a1fdf9d344e0b25c757e3eccd9246c2bf.tar.xz
youtube-dl-83855f3a1fdf9d344e0b25c757e3eccd9246c2bf.zip
[livestream:original] Fix RTMP parameters (Fixes #4040)
-rw-r--r--youtube_dl/extractor/livestream.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/livestream.py b/youtube_dl/extractor/livestream.py
index 516147417..363a12ad0 100644
--- a/youtube_dl/extractor/livestream.py
+++ b/youtube_dl/extractor/livestream.py
@@ -190,7 +190,8 @@ class LivestreamOriginalIE(InfoExtractor):
             'id': video_id,
             'title': item.find('title').text,
             'url': 'rtmp://extondemand.livestream.com/ondemand',
-            'play_path': 'mp4:trans/dv15/mogulus-{0}.mp4'.format(path),
+            'play_path': 'trans/dv15/mogulus-{0}'.format(path),
+            'player_url': 'http://static.livestream.com/chromelessPlayer/v21/playerapi.swf?hash=5uetk&v=0803&classid=D27CDB6E-AE6D-11cf-96B8-444553540000&jsEnabled=false&wmode=opaque',
             'ext': 'flv',
             'thumbnail': thumbnail_url,
         }