X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Foe1.py;fp=youtube_dl%2Fextractor%2Foe1.py;h=f327e9e086ecfb3bf270212d5dae94761ff5dbb5;hb=f0da3f1ef925ce8aa0850277a03d510a29c0f43d;hp=0000000000000000000000000000000000000000;hpb=cb3ac1c6108abf91f34553a9c61388b7bbcef959;p=youtube-dl diff --git a/youtube_dl/extractor/oe1.py b/youtube_dl/extractor/oe1.py new file mode 100644 index 000000000..f327e9e08 --- /dev/null +++ b/youtube_dl/extractor/oe1.py @@ -0,0 +1,38 @@ +# coding: utf-8 +from __future__ import unicode_literals +import calendar +import datetime +import json +import re + +from .common import InfoExtractor + +# audios on oe1.orf.at are only available for 7 days, so we can't +# add tests. + + +class OE1IE(InfoExtractor): + _VALID_URL = r'http://oe1\.orf\.at/programm/(?P\d+)' + + def _real_extract(self, url): + mobj = re.match(self._VALID_URL, url) + show_id = mobj.group('id') + data = json.loads(self._download_webpage( + 'http://oe1.orf.at/programm/%s/konsole' % show_id, + show_id + )) + + timestamp = datetime.datetime.strptime('%s %s' % ( + data['item']['day_label'], + data['item']['time'] + ), '%d.%m.%Y %H:%M') + unix_timestamp = calendar.timegm(timestamp.utctimetuple()) + + return { + 'id': show_id, + 'title': data['item']['title'], + 'url': data['item']['url_stream'], + 'ext': 'mp3', + 'description': data['item']['info'], + 'timestamp': unix_timestamp + }