[polskieradio] Add support for Polskie Radio.
authorJakub Adam Wieczorek <ja.wieczorek@student.uw.edu.pl>
Thu, 16 Jun 2016 19:00:27 +0000 (21:00 +0200)
committerSergey M․ <dstftw@gmail.com>
Sat, 25 Jun 2016 16:19:18 +0000 (23:19 +0700)
Polskie Radio is the main Polish state-funded radio broadcasting service.

youtube_dl/extractor/extractors.py
youtube_dl/extractor/polskieradio.py [new file with mode: 0644]

index 6fc5a18f502a39fd6fc3e0561fa3b6f93cf575d2..9f98a14908d29081fe67d32a57ae33e453ac8da9 100644 (file)
@@ -606,6 +606,7 @@ from .pluralsight import (
     PluralsightCourseIE,
 )
 from .podomatic import PodomaticIE
+from .polskieradio import PolskieRadioIE
 from .porn91 import Porn91IE
 from .pornhd import PornHdIE
 from .pornhub import (
diff --git a/youtube_dl/extractor/polskieradio.py b/youtube_dl/extractor/polskieradio.py
new file mode 100644 (file)
index 0000000..5d4b116
--- /dev/null
@@ -0,0 +1,74 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+from ..utils import int_or_none
+
+import calendar
+from datetime import datetime
+
+
+class PolskieRadioIE(InfoExtractor):
+    _VALID_URL = r'https?://(?:www\.)?polskieradio\.pl/[0-9]+/[0-9]+/Artykul/(?P<id>[0-9]+),.+'
+    _TESTS = [{
+        'url': 'http://www.polskieradio.pl/7/5102/Artykul/1587943,Prof-Andrzej-Nowak-o-historii-nie-da-sie-myslec-beznamietnie',
+        'md5': '2984ee6ce9046d91fc233bc1a864a09a',
+        'info_dict': {
+            'id': '1587943',
+            'ext': 'mp3',
+            'title': 'Prof. Andrzej Nowak: o historii nie da się myśleć beznamiętnie',
+            'description': 'md5:12f954edbf3120c5e7075e17bf9fc5c5',
+            'release_date': '20160227',
+            'upload_date': '20160227',
+            'timestamp': 1456594200,
+            'duration': 2364
+        }
+    }, {
+        'url': 'http://polskieradio.pl/9/305/Artykul/1632955,Bardzo-popularne-slowo-remis',
+        'md5': '68a393e25b942c1a76872f56d303a31a',
+        'info_dict': {
+            'id': '1632955',
+            'ext': 'mp3',
+            'title': 'Bardzo popularne słowo: remis',
+            'description': 'md5:3b58dfae614100abc0f175a0b26d5680',
+            'release_date': '20160617',
+            'upload_date': '20160617',
+            'timestamp': 1466184900,
+            'duration': 393
+        }
+    }]
+
+    def _real_extract(self, url):
+        video_id = self._match_id(url)
+        webpage = self._download_webpage(url, video_id)
+        metadata_string = self._html_search_regex(r'<span class="play pr-media-play" data-media=(\{.+\})>', webpage, 'metadata')
+        metadata = self._parse_json(metadata_string, video_id)
+
+        title = self._og_search_title(webpage)
+        if title is not None:
+            title = title.strip()
+
+        description = self._og_search_description(webpage)
+        if description is not None:
+            description = description.strip()
+
+        release_date = self._html_search_regex(r'Data emisji:[^0-9]+([0-9]{1,2}\.[0-9]{2}\.[0-9]{4})', webpage, 'release date', fatal=False)
+        if release_date is not None:
+            release_date = datetime.strptime(release_date, '%d.%m.%Y').strftime('%Y%m%d')
+
+        upload_datetime = self._html_search_regex(r'<span id="datetime2" class="time">\s+(.+)\s+</span>', webpage, 'release time', fatal=False)
+        if upload_datetime is not None:
+            timestamp = calendar.timegm(datetime.strptime(upload_datetime, '%d.%m.%Y %H:%M').timetuple())
+        else:
+            timestamp = None
+
+        return {
+            'id': video_id,
+            'title': title,
+            'description': description,
+            'display_id': metadata.get('id'),
+            'duration': int_or_none(metadata.get('length')),
+            'url': self._proto_relative_url(metadata.get('file'), 'http:'),
+            'release_date': release_date,
+            'timestamp': timestamp
+        }