[fm4] Add new extractor
authorSebastian Haas <sehaas@deebas.com>
Sun, 3 Aug 2014 18:47:56 +0000 (20:47 +0200)
committerSebastian Haas <sehaas@deebas.com>
Sun, 3 Aug 2014 18:50:46 +0000 (20:50 +0200)
youtube_dl/extractor/__init__.py
youtube_dl/extractor/fm4.py [new file with mode: 0644]

index 66c873789e1030707e72b63140c01bba75012088..e5ce08bc1743d59a4ce2a0f312361c9f7ab0dc3e 100644 (file)
@@ -96,6 +96,7 @@ from .fktv import (
     FKTVPosteckeIE,
 )
 from .flickr import FlickrIE
+from .fm4 import FM4IE
 from .fourtube import FourTubeIE
 from .franceculture import FranceCultureIE
 from .franceinter import FranceInterIE
diff --git a/youtube_dl/extractor/fm4.py b/youtube_dl/extractor/fm4.py
new file mode 100644 (file)
index 0000000..4eb63ff
--- /dev/null
@@ -0,0 +1,49 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+import calendar
+import datetime
+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 _extract_entry_dict(self, info, title, subtitle):
+        result = {
+            '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'
+        }
+
+        return result
+
+    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
+        )
+
+        entries = [ self._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
+        }