]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/heise.py
Fix "invalid escape sequences" error on Python 3.6
[yt-dlp.git] / youtube_dl / extractor / heise.py
CommitLineData
0155549d
M
1# coding: utf-8
2from __future__ import unicode_literals
3
0155549d
M
4from .common import InfoExtractor
5from ..utils import (
711ede6e 6 determine_ext,
ecfe6234 7 int_or_none,
0155549d
M
8 parse_iso8601,
9)
10
11
12class HeiseIE(InfoExtractor):
5a8b7755
PH
13 _VALID_URL = r'''(?x)
14 https?://(?:www\.)?heise\.de/video/artikel/
15 .+?(?P<id>[0-9]+)\.html(?:$|[?#])
16 '''
0155549d
M
17 _TEST = {
18 'url': (
5a8b7755 19 'http://www.heise.de/video/artikel/Podcast-c-t-uplink-3-3-Owncloud-Tastaturen-Peilsender-Smartphone-2404147.html'
0155549d
M
20 ),
21 'md5': 'ffed432483e922e88545ad9f2f15d30e',
22 'info_dict': {
23 'id': '2404147',
24 'ext': 'mp4',
25 'title': (
5a8b7755 26 "Podcast: c't uplink 3.3 – Owncloud / Tastaturen / Peilsender Smartphone"
0155549d 27 ),
711ede6e 28 'format_id': 'mp4_720p',
0155549d
M
29 'timestamp': 1411812600,
30 'upload_date': '20140927',
c121a75b 31 'description': 'In uplink-Episode 3.3 geht es darum, wie man sich von Cloud-Anbietern emanzipieren kann, worauf man beim Kauf einer Tastatur achten sollte und was Smartphones über uns verraten.',
ec85ded8 32 'thumbnail': r're:^https?://.*\.jpe?g$',
0155549d
M
33 }
34 }
35
0155549d 36 def _real_extract(self, url):
5a8b7755 37 video_id = self._match_id(url)
5a8b7755 38 webpage = self._download_webpage(url, video_id)
ecfe6234
PH
39
40 container_id = self._search_regex(
41 r'<div class="videoplayerjw".*?data-container="([0-9]+)"',
42 webpage, 'container ID')
43 sequenz_id = self._search_regex(
44 r'<div class="videoplayerjw".*?data-sequenz="([0-9]+)"',
45 webpage, 'sequenz ID')
46 data_url = 'http://www.heise.de/videout/feed?container=%s&sequenz=%s' % (container_id, sequenz_id)
47 doc = self._download_xml(data_url, video_id)
0155549d
M
48
49 info = {
5a8b7755 50 'id': video_id,
ecfe6234 51 'thumbnail': self._og_search_thumbnail(webpage),
711ede6e
PH
52 'timestamp': parse_iso8601(
53 self._html_search_meta('date', webpage)),
c121a75b 54 'description': self._og_search_description(webpage),
0155549d
M
55 }
56
711ede6e 57 title = self._html_search_meta('fulltitle', webpage)
0155549d
M
58 if title:
59 info['title'] = title
0155549d 60 else:
5a8b7755 61 info['title'] = self._og_search_title(webpage)
0155549d
M
62
63 formats = []
ecfe6234
PH
64 for source_node in doc.findall('.//{http://rss.jwpcdn.com/}source'):
65 label = source_node.attrib['label']
66 height = int_or_none(self._search_regex(
67 r'^(.*?_)?([0-9]+)p$', label, 'height', default=None))
711ede6e
PH
68 video_url = source_node.attrib['file']
69 ext = determine_ext(video_url, '')
ecfe6234 70 formats.append({
711ede6e 71 'url': video_url,
ecfe6234 72 'format_note': label,
711ede6e 73 'format_id': '%s_%s' % (ext, label),
ecfe6234
PH
74 'height': height,
75 })
0155549d
M
76 self._sort_formats(formats)
77 info['formats'] = formats
78
0155549d 79 return info