summary refs log tree commit diff
diff options
context:
space:
mode:
authorphaer <phaer@phaer.org>2014-03-28 17:57:25 +0200
committerphaer <phaer@phaer.org>2014-03-28 17:57:25 +0200
commitf0da3f1ef925ce8aa0850277a03d510a29c0f43d (patch)
tree3eba10340060eccf625f04866dd474f93ef675a4
parentcb3ac1c6108abf91f34553a9c61388b7bbcef959 (diff)
downloadyoutube-dl-f0da3f1ef925ce8aa0850277a03d510a29c0f43d.tar.gz
youtube-dl-f0da3f1ef925ce8aa0850277a03d510a29c0f43d.tar.xz
youtube-dl-f0da3f1ef925ce8aa0850277a03d510a29c0f43d.zip
[oe1] Add support for oe1.orf.at.
-rw-r--r--youtube_dl/extractor/__init__.py1
-rw-r--r--youtube_dl/extractor/oe1.py38
2 files changed, 39 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index 481296231..0e4b2b6e8 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -177,6 +177,7 @@ from .normalboots import NormalbootsIE
 from .novamov import NovaMovIE
 from .nowness import NownessIE
 from .nowvideo import NowVideoIE
+from .oe1 import OE1IE
 from .ooyala import OoyalaIE
 from .orf import ORFIE
 from .parliamentliveuk import ParliamentLiveUKIE
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<id>\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
+        }