haruhi-dl/youtube_dl/extractor/fktv.py

52 lines
1.5 KiB
Python
Raw Normal View History

2014-10-27 02:26:05 +01:00
from __future__ import unicode_literals
from .common import InfoExtractor
from ..utils import (
clean_html,
2015-09-09 11:42:47 +02:00
determine_ext,
2015-12-19 18:26:28 +01:00
js_to_json,
)
class FKTVIE(InfoExtractor):
2014-10-27 02:26:05 +01:00
IE_NAME = 'fernsehkritik.tv'
_VALID_URL = r'https?://(?:www\.)?fernsehkritik\.tv/folge-(?P<id>[0-9]+)(?:/.*)?'
_TEST = {
2014-10-27 02:26:05 +01:00
'url': 'http://fernsehkritik.tv/folge-1',
2015-09-09 11:42:47 +02:00
'md5': '21f0b0c99bce7d5b524eb1b17b1c6d79',
2014-10-27 02:26:05 +01:00
'info_dict': {
2015-09-09 11:42:47 +02:00
'id': '1',
'ext': 'mp4',
2014-10-27 02:26:05 +01:00
'title': 'Folge 1 vom 10. April 2007',
'thumbnail': r're:^https?://.*\.jpg$',
},
}
def _real_extract(self, url):
2015-09-09 11:42:47 +02:00
episode = self._match_id(url)
2015-09-25 12:01:08 +02:00
webpage = self._download_webpage(
'http://fernsehkritik.tv/folge-%s/play' % episode, episode)
title = clean_html(self._html_search_regex(
'<h3>([^<]+)</h3>', webpage, 'title'))
2015-12-19 18:26:28 +01:00
thumbnail = self._search_regex(r'POSTER\s*=\s*"([^"]+)', webpage, 'thumbnail', fatal=False)
sources = self._parse_json(self._search_regex(r'(?s)MEDIA\s*=\s*(\[.+?\]);', webpage, 'media'), episode, js_to_json)
formats = []
for source in sources:
furl = source.get('src')
if furl:
formats.append({
'url': furl,
'format_id': determine_ext(furl),
})
self._sort_formats(formats)
return {
'id': episode,
'title': title,
'formats': formats,
2015-12-19 18:26:28 +01:00
'thumbnail': thumbnail,
}