diff options
| author | Remita Amine <remitamine@gmail.com> | 2016-10-04 07:59:53 +0100 | 
|---|---|---|
| committer | Remita Amine <remitamine@gmail.com> | 2016-10-04 08:00:25 +0100 | 
| commit | 7232e54813481dc7b9b2ea9f70499a49badd75cc (patch) | |
| tree | 94566533a5907be8c9405db7e2f55dcae5318bfd | |
| parent | 6eb5503b12286ef9813ee22e95622f09dab2ebe5 (diff) | |
[tonline] Add new extractor(#10376)
| -rw-r--r-- | youtube_dl/extractor/extractors.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/tonline.py | 59 | 
2 files changed, 60 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py index f67e19526..e73956923 100644 --- a/youtube_dl/extractor/extractors.py +++ b/youtube_dl/extractor/extractors.py @@ -908,6 +908,7 @@ from .tnaflix import (      MovieFapIE,  )  from .toggle import ToggleIE +from .tonline import TOnlineIE  from .toutv import TouTvIE  from .toypics import ToypicsUserIE, ToypicsIE  from .traileraddict import TrailerAddictIE diff --git a/youtube_dl/extractor/tonline.py b/youtube_dl/extractor/tonline.py new file mode 100644 index 000000000..cc11eae2a --- /dev/null +++ b/youtube_dl/extractor/tonline.py @@ -0,0 +1,59 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from .common import InfoExtractor +from ..utils import int_or_none + + +class TOnlineIE(InfoExtractor): +    IE_NAME = 't-online.de' +    _VALID_URL = r'https?://(?:www\.)?t-online\.de/tv/(?:[^/]+/)*id_(?P<id>\d+)' +    _TEST = { +        'url': 'http://www.t-online.de/tv/sport/fussball/id_79166266/drittes-remis-zidane-es-muss-etwas-passieren-.html', +        'md5': '7d94dbdde5f9d77c5accc73c39632c29', +        'info_dict': { +            'id': '79166266', +            'ext': 'mp4', +            'title': 'Drittes Remis! Zidane: "Es muss etwas passieren"', +            'description': 'Es läuft nicht rund bei Real Madrid. Das 1:1 gegen den SD Eibar war das dritte Unentschieden in Folge in der Liga.', +        } +    } + +    def _real_extract(self, url): +        video_id = self._match_id(url) +        video_data = self._download_json( +            'http://www.t-online.de/tv/id_%s/tid_json_video' % video_id, video_id) +        title = video_data['subtitle'] + +        formats = [] +        for asset in video_data.get('assets', []): +            asset_source = asset.get('source') or asset.get('source2') +            if not asset_source: +                continue +            formats_id = [] +            for field_key in ('type', 'profile'): +                field_value = asset.get(field_key) +                if field_value: +                    formats_id.append(field_value) +            formats.append({ +                'format_id': '-'.join(formats_id), +                'url': asset_source, +            }) + +        thumbnails = [] +        for image in video_data.get('images', []): +            image_source = image.get('source') +            if not image_source: +                continue +            thumbnails.append({ +                'url': image_source, +            }) + +        return { +            'id': video_id, +            'title': title, +            'description': video_data.get('description'), +            'duration': int_or_none(video_data.get('duration')), +            'thumbnails': thumbnails, +            'formats': formats, +        } | 
