From: Markus Müller Date: Sun, 8 Feb 2015 20:55:39 +0000 (+0100) Subject: fix rtlnow for newer series like "Der Bachelor" season 5 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=bdb186f3b074f1f7ac0f154be419ca04241add6f;p=youtube-dl fix rtlnow for newer series like "Der Bachelor" season 5 --- diff --git a/youtube_dl/extractor/rtlnow.py b/youtube_dl/extractor/rtlnow.py index 285c3c4be..e235f3c57 100644 --- a/youtube_dl/extractor/rtlnow.py +++ b/youtube_dl/extractor/rtlnow.py @@ -134,9 +134,18 @@ class RTLnowIE(InfoExtractor): 'player_url': video_page_url + 'includes/vodplayer.swf', } else: - fmt = { - 'url': filename.text, - } + mobj = re.search(r'.*/(?P[^/]+)/videos/(?P.+)\.f4m', filename.text) + if mobj: + fmt = { + 'url': 'rtmpe://fmspay-fra2.rtl.de/' + mobj.group('hoster'), + 'play_path': 'mp4:' + mobj.group('play_path'), + 'page_url': url, + 'player_url': video_page_url + 'includes/vodplayer.swf', + } + else: + fmt = { + 'url': filename.text, + } fmt.update({ 'width': int_or_none(filename.get('width')), 'height': int_or_none(filename.get('height')),