aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/fktv.py
blob: c2aa23aa28f7c257d697ee2567f3b64848dfbcb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from __future__ import unicode_literals

import re

from .common import InfoExtractor
from ..utils import (
    clean_html,
    determine_ext,
)


class FKTVIE(InfoExtractor):
    IE_NAME = 'fernsehkritik.tv'
    _VALID_URL = r'http://(?:www\.)?fernsehkritik\.tv/folge-(?P<id>[0-9]+)(?:/.*)?'

    _TEST = {
        'url': 'http://fernsehkritik.tv/folge-1',
        'md5': '21f0b0c99bce7d5b524eb1b17b1c6d79',
        'info_dict': {
            'id': '1',
            'ext': 'mp4',
            'title': 'Folge 1 vom 10. April 2007',
        },
    }

    def _real_extract(self, url):
        episode = self._match_id(url)

        webpage = self._download_webpage('http://fernsehkritik.tv/folge-%s/play' % episode, episode)
        title = clean_html(self._html_search_regex('<h3>([^<]+?)</h3>', webpage, 'title'))
        matchs = re.search(r'(?s)<video[^>]*poster="([^"]+)"[^>]*>(.*?)</video>', webpage)
        if matchs:
            poster, sources = matchs.groups()
            urls = re.findall(r'(?s)<source[^>]*src="([^"]+)"[^>]*>', sources)
            if sources:
                formats = [{'url': url, 'format_id': determine_ext(url)} for url in urls]
                return {
                    'id': episode,
                    'title': title,
                    'formats': formats,
                    'thumbnail': poster,
                }