2016-10-02 11:39:18 +00:00
|
|
|
# coding: utf-8
|
2015-01-24 17:28:16 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2015-08-21 05:20:32 +00:00
|
|
|
import re
|
2015-01-24 17:28:16 +00:00
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
class RTL2IE(InfoExtractor):
|
2015-01-25 17:09:48 +00:00
|
|
|
_VALID_URL = r'http?://(?:www\.)?rtl2\.de/[^?#]*?/(?P<id>[^?#/]*?)(?:$|/(?:$|[?#]))'
|
2015-01-24 17:28:16 +00:00
|
|
|
_TESTS = [{
|
2015-01-25 17:09:48 +00:00
|
|
|
'url': 'http://www.rtl2.de/sendung/grip-das-motormagazin/folge/folge-203-0',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'folge-203-0',
|
|
|
|
'ext': 'f4v',
|
|
|
|
'title': 'GRIP sucht den Sommerkönig',
|
|
|
|
'description': 'Matthias, Det und Helge treten gegeneinander an.'
|
2015-01-24 17:28:16 +00:00
|
|
|
},
|
2015-08-21 05:00:08 +00:00
|
|
|
'params': {
|
|
|
|
# rtmp download
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
2015-01-25 17:09:48 +00:00
|
|
|
}, {
|
|
|
|
'url': 'http://www.rtl2.de/sendung/koeln-50667/video/5512-anna/21040-anna-erwischt-alex/',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '21040-anna-erwischt-alex',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Anna erwischt Alex!',
|
|
|
|
'description': 'Anna ist Alex\' Tochter bei Köln 50667.'
|
2015-01-24 17:28:16 +00:00
|
|
|
},
|
2015-08-21 05:20:32 +00:00
|
|
|
'params': {
|
|
|
|
# rtmp download
|
|
|
|
'skip_download': True,
|
|
|
|
},
|
2015-01-25 17:09:48 +00:00
|
|
|
}]
|
2015-01-24 17:28:16 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2015-01-25 17:09:48 +00:00
|
|
|
# Some rtl2 urls have no slash at the end, so append it.
|
|
|
|
if not url.endswith('/'):
|
2015-01-25 10:53:53 +00:00
|
|
|
url += '/'
|
2015-01-24 17:28:16 +00:00
|
|
|
|
2015-01-25 17:09:48 +00:00
|
|
|
video_id = self._match_id(url)
|
2015-01-25 10:53:53 +00:00
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
|
2015-08-21 05:20:32 +00:00
|
|
|
mobj = re.search(
|
|
|
|
r'<div[^>]+data-collection="(?P<vico_id>\d+)"[^>]+data-video="(?P<vivi_id>\d+)"',
|
|
|
|
webpage)
|
|
|
|
if mobj:
|
|
|
|
vico_id = mobj.group('vico_id')
|
|
|
|
vivi_id = mobj.group('vivi_id')
|
|
|
|
else:
|
|
|
|
vico_id = self._html_search_regex(
|
|
|
|
r'vico_id\s*:\s*([0-9]+)', webpage, 'vico_id')
|
|
|
|
vivi_id = self._html_search_regex(
|
|
|
|
r'vivi_id\s*:\s*([0-9]+)', webpage, 'vivi_id')
|
2015-01-24 17:28:16 +00:00
|
|
|
info_url = 'http://www.rtl2.de/video/php/get_video.php?vico_id=' + vico_id + '&vivi_id=' + vivi_id
|
|
|
|
|
2015-01-25 17:09:48 +00:00
|
|
|
info = self._download_json(info_url, video_id)
|
|
|
|
video_info = info['video']
|
|
|
|
title = video_info['titel']
|
|
|
|
description = video_info.get('beschreibung')
|
|
|
|
thumbnail = video_info.get('image')
|
2015-01-24 17:28:16 +00:00
|
|
|
|
2015-01-25 17:09:48 +00:00
|
|
|
download_url = video_info['streamurl']
|
|
|
|
download_url = download_url.replace('\\', '')
|
|
|
|
stream_url = 'mp4:' + self._html_search_regex(r'ondemand/(.*)', download_url, 'stream URL')
|
2016-02-14 09:37:17 +00:00
|
|
|
rtmp_conn = ['S:connect', 'O:1', 'NS:pageUrl:' + url, 'NB:fpad:0', 'NN:videoFunction:1', 'O:0']
|
2015-01-24 17:28:16 +00:00
|
|
|
|
2015-01-25 10:53:53 +00:00
|
|
|
formats = [{
|
2015-01-25 17:09:48 +00:00
|
|
|
'url': download_url,
|
|
|
|
'play_path': stream_url,
|
|
|
|
'player_url': 'http://www.rtl2.de/flashplayer/vipo_player.swf',
|
|
|
|
'page_url': url,
|
|
|
|
'flash_version': 'LNX 11,2,202,429',
|
|
|
|
'rtmp_conn': rtmp_conn,
|
|
|
|
'no_resume': True,
|
|
|
|
}]
|
|
|
|
self._sort_formats(formats)
|
2015-01-24 17:28:16 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2015-01-25 17:09:48 +00:00
|
|
|
'thumbnail': thumbnail,
|
|
|
|
'description': description,
|
2015-01-24 17:28:16 +00:00
|
|
|
'formats': formats,
|
|
|
|
}
|