4 changed files with 80 additions and 89 deletions
Unified View
Diff Options
-
8youtube_dl/extractor/__init__.py
-
45youtube_dl/extractor/fm4.py
-
40youtube_dl/extractor/oe1.py
-
76youtube_dl/extractor/orf.py
@ -1,45 +0,0 @@ |
|||||
# coding: utf-8 |
|
||||
from __future__ import unicode_literals |
|
||||
|
|
||||
import re |
|
||||
|
|
||||
from .common import InfoExtractor |
|
||||
|
|
||||
# audios on fm4.orf.at are only available for 7 days, so we can't |
|
||||
# add tests. |
|
||||
|
|
||||
|
|
||||
class FM4IE(InfoExtractor): |
|
||||
IE_DESC = 'fm4.orf.at' |
|
||||
_VALID_URL = r'http://fm4\.orf\.at/7tage/?#(?P<date>[0-9]+)/(?P<show>\w+)' |
|
||||
|
|
||||
def _real_extract(self, url): |
|
||||
mobj = re.match(self._VALID_URL, url) |
|
||||
show_date = mobj.group('date') |
|
||||
show_id = mobj.group('show') |
|
||||
|
|
||||
data = self._download_json( |
|
||||
'http://audioapi.orf.at/fm4/json/2.0/broadcasts/%s/4%s' % (show_date, show_id), |
|
||||
show_id |
|
||||
) |
|
||||
|
|
||||
def extract_entry_dict(info, title, subtitle): |
|
||||
return { |
|
||||
'id': info['loopStreamId'].replace('.mp3', ''), |
|
||||
'url': 'http://loopstream01.apa.at/?channel=fm4&id=%s' % info['loopStreamId'], |
|
||||
'title': title, |
|
||||
'description': subtitle, |
|
||||
'duration': (info['end'] - info['start']) / 1000, |
|
||||
'timestamp': info['start'] / 1000, |
|
||||
'ext': 'mp3' |
|
||||
} |
|
||||
|
|
||||
entries = [extract_entry_dict(t, data['title'], data['subtitle']) for t in data['streams']] |
|
||||
|
|
||||
return { |
|
||||
'_type': 'playlist', |
|
||||
'id': show_id, |
|
||||
'title': data['title'], |
|
||||
'description': data['subtitle'], |
|
||||
'entries': entries |
|
||||
} |
|
@ -1,40 +0,0 @@ |
|||||
# coding: utf-8 |
|
||||
from __future__ import unicode_literals |
|
||||
|
|
||||
import calendar |
|
||||
import datetime |
|
||||
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): |
|
||||
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 = self._download_json( |
|
||||
'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'].get('info'), |
|
||||
'timestamp': unix_timestamp |
|
||||
} |
|
Write
Preview
Loading…
Cancel
Save