diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2015-01-05 18:07:16 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2015-01-05 18:07:16 +0100 | 
| commit | 93e40a7b2f0020a3d1e9f5e5afe29f308dcb6b73 (patch) | |
| tree | 2cdab37be9b6d2109507436b97b6cb5bfb4c6cbe | |
| parent | a285b6377b46518ca45d6a41481bf920b353a857 (diff) | |
| parent | bc1fc5ddbcba784778cbdd98c051ff2493178515 (diff) | |
Merge remote-tracking branch 'ckrooss/master'
| -rw-r--r-- | youtube_dl/extractor/__init__.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/radiobremen.py | 54 | 
2 files changed, 55 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index 0c8729384..8e47bd60d 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -325,6 +325,7 @@ from .prosiebensat1 import ProSiebenSat1IE  from .pyvideo import PyvideoIE  from .quickvid import QuickVidIE  from .radiode import RadioDeIE +from .radiobremen import RadioBremenIE  from .radiofrance import RadioFranceIE  from .rai import RaiIE  from .rbmaradio import RBMARadioIE diff --git a/youtube_dl/extractor/radiobremen.py b/youtube_dl/extractor/radiobremen.py new file mode 100644 index 000000000..6d130d3d9 --- /dev/null +++ b/youtube_dl/extractor/radiobremen.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- + +from __future__ import unicode_literals + +import re + +from .common import InfoExtractor + + +class RadioBremenIE(InfoExtractor): +    _VALID_URL = r'http?://(?:www\.)?radiobremen\.de/mediathek/(index\.html)?\?id=(?P<video_id>[0-9]+)' +    IE_NAME = 'radiobremen' + +    _TEST = { +        'url': 'http://www.radiobremen.de/mediathek/index.html?id=114720', +        'info_dict': { +            'id': '114720', +            'ext': 'mp4', +            'width': 512, +            'title': 'buten un binnen vom 22. Dezember', +            'description': 'Unter anderem mit diesen Themen: 45 Flüchtlinge sind in Worpswede angekommen +++ Freies Internet für alle: Bremer arbeiten an einem flächendeckenden W-Lan-Netzwerk +++ Aktivisten kämpfen für das Unibad +++ So war das Wetter 2014 +++', +        }, +    } + +    def _real_extract(self, url): +        mobj = re.match(self._VALID_URL, url) +        video_id = mobj.group('video_id') + +        meta_url = "http://www.radiobremen.de/apps/php/mediathek/metadaten.php?id=%s" % video_id +        meta_doc = self._download_webpage(meta_url, video_id, 'Downloading metadata') +        title = self._html_search_regex("<h1.*>(?P<title>.+)</h1>", meta_doc, "title") +        description = self._html_search_regex("<p>(?P<description>.*)</p>", meta_doc, "description") +        duration = self._html_search_regex("Länge:</td>\s+<td>(?P<duration>[0-9]+:[0-9]+)</td>", meta_doc, "duration") + +        page_doc = self._download_webpage(url, video_id, 'Downloading video information') +        pattern = "ardformatplayerclassic\(\'playerbereich\',\'(?P<width>[0-9]+)\',\'.*\',\'(?P<video_id>[0-9]+)\',\'(?P<secret>[0-9]+)\',\'(?P<thumbnail>.+)\',\'\'\)" +        mobj = re.search(pattern, page_doc) +        width, video_id, secret, thumbnail = int(mobj.group("width")), mobj.group("video_id"), mobj.group("secret"), mobj.group("thumbnail") +        video_url = "http://dl-ondemand.radiobremen.de/mediabase/{:}/{:}_{:}_{:}.mp4".format(video_id, video_id, secret, width) + +        return { +            'id': video_id, +            'title': title, +            'description': description, +            'duration': duration, +            'formats': [ +                {'url': video_url, +                 'ext': 'mp4', +                 'width': width, +                 'protocol': 'http' +                 } +            ], +            'thumbnail': thumbnail, +        } | 
