diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-03-28 23:22:43 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-03-28 23:23:58 +0100 |
commit | b17418313f15f030dcc938f5618cdccf55752e39 (patch) | |
tree | aaec0a0168209e5e20568c2f7ac1d89dbed1c367 /youtube_dl | |
parent | e9a6fd6a68024b7835d4ee664c921ef3f3591594 (diff) |
[oe1] Simplify (#2646)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/oe1.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/youtube_dl/extractor/oe1.py b/youtube_dl/extractor/oe1.py index f327e9e08..38971ab4d 100644 --- a/youtube_dl/extractor/oe1.py +++ b/youtube_dl/extractor/oe1.py @@ -1,8 +1,8 @@ # coding: utf-8 from __future__ import unicode_literals + import calendar import datetime -import json import re from .common import InfoExtractor @@ -12,15 +12,17 @@ from .common import InfoExtractor class OE1IE(InfoExtractor): - _VALID_URL = r'http://oe1\.orf\.at/programm/(?P<id>\d+)' + IE_DESC = 'oe1.orf.at' + _VALID_URL = r'http://oe1\.orf\.at/programm/(?P<id>[0-9]+)' def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) show_id = mobj.group('id') - data = json.loads(self._download_webpage( + + data = self._download_json( 'http://oe1.orf.at/programm/%s/konsole' % show_id, show_id - )) + ) timestamp = datetime.datetime.strptime('%s %s' % ( data['item']['day_label'], @@ -33,6 +35,6 @@ class OE1IE(InfoExtractor): 'title': data['item']['title'], 'url': data['item']['url_stream'], 'ext': 'mp3', - 'description': data['item']['info'], + 'description': data['item'].get('info'), 'timestamp': unix_timestamp } |