From: Markus Müller Date: Wed, 25 Feb 2015 22:27:19 +0000 (+0100) Subject: Fix the RTL extractor for new episodes by using a different hostname X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=9504fc21b583d6ff968eec9d5843fc40b48725e7;hp=-c;p=youtube-dl Fix the RTL extractor for new episodes by using a different hostname --- 9504fc21b583d6ff968eec9d5843fc40b48725e7 diff --git a/youtube_dl/extractor/rtlnow.py b/youtube_dl/extractor/rtlnow.py index fd93cc66f..785a8045e 100644 --- a/youtube_dl/extractor/rtlnow.py +++ b/youtube_dl/extractor/rtlnow.py @@ -146,7 +146,7 @@ class RTLnowIE(InfoExtractor): mobj = re.search(r'.*/(?P[^/]+)/videos/(?P.+)\.f4m', filename.text) if mobj: fmt = { - 'url': 'rtmpe://fmspay-fra2.rtl.de/' + mobj.group('hoster'), + 'url': 'rtmpe://fms.rtl.de/' + mobj.group('hoster'), 'play_path': 'mp4:' + mobj.group('play_path'), 'page_url': url, 'player_url': video_page_url + 'includes/vodplayer.swf',