mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.2 KiB
Python
57 lines
2.2 KiB
Python
5 years ago
|
# coding: utf-8
|
||
11 years ago
|
from __future__ import unicode_literals
|
||
5 years ago
|
|
||
|
import re
|
||
12 years ago
|
|
||
|
from .common import InfoExtractor
|
||
5 years ago
|
from ..compat import compat_str
|
||
10 years ago
|
from ..utils import (
|
||
5 years ago
|
int_or_none,
|
||
|
parse_duration,
|
||
|
xpath_text,
|
||
12 years ago
|
)
|
||
|
|
||
|
|
||
|
class MySpassIE(InfoExtractor):
|
||
5 years ago
|
_VALID_URL = r'https?://(?:www\.)?myspass\.de/([^/]+/)*(?P<id>\d+)'
|
||
12 years ago
|
_TEST = {
|
||
11 years ago
|
'url': 'http://www.myspass.de/myspass/shows/tvshows/absolute-mehrheit/Absolute-Mehrheit-vom-17022013-Die-Highlights-Teil-2--/11741/',
|
||
|
'md5': '0b49f4844a068f8b33f4b7c88405862b',
|
||
|
'info_dict': {
|
||
10 years ago
|
'id': '11741',
|
||
|
'ext': 'mp4',
|
||
5 years ago
|
'description': 'Wer kann in die Fußstapfen von Wolfgang Kubicki treten und die Mehrheit der Zuschauer hinter sich versammeln? Wird vielleicht sogar die Absolute Mehrheit geknackt und der Jackpot von 200.000 Euro mit nach Hause genommen?',
|
||
|
'title': '17.02.2013 - Die Highlights, Teil 2',
|
||
11 years ago
|
},
|
||
12 years ago
|
}
|
||
12 years ago
|
|
||
|
def _real_extract(self, url):
|
||
5 years ago
|
video_id = self._match_id(url)
|
||
12 years ago
|
|
||
9 years ago
|
metadata = self._download_xml(
|
||
5 years ago
|
'http://www.myspass.de/myspass/includes/apps/video/getvideometadataxml.php?id=' + video_id,
|
||
|
video_id)
|
||
|
|
||
|
title = xpath_text(metadata, 'title', fatal=True)
|
||
|
video_url = xpath_text(metadata, 'url_flv', 'download url', True)
|
||
|
video_id_int = int(video_id)
|
||
|
for group in re.search(r'/myspass2009/\d+/(\d+)/(\d+)/(\d+)/', video_url).groups():
|
||
|
group_int = int(group)
|
||
|
if group_int > video_id_int:
|
||
|
video_url = video_url.replace(
|
||
|
group, compat_str(group_int // video_id_int))
|
||
11 years ago
|
|
||
|
return {
|
||
12 years ago
|
'id': video_id,
|
||
|
'url': video_url,
|
||
|
'title': title,
|
||
5 years ago
|
'thumbnail': xpath_text(metadata, 'imagePreview'),
|
||
|
'description': xpath_text(metadata, 'description'),
|
||
|
'duration': parse_duration(xpath_text(metadata, 'duration')),
|
||
|
'series': xpath_text(metadata, 'format'),
|
||
|
'season_number': int_or_none(xpath_text(metadata, 'season')),
|
||
|
'season_id': xpath_text(metadata, 'season_id'),
|
||
|
'episode': title,
|
||
|
'episode_number': int_or_none(xpath_text(metadata, 'episode')),
|
||
12 years ago
|
}
|