aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/cjsw.py
diff options
context:
space:
mode:
authorChristopher Smith <ctsmi@ucalgary.ca>2017-06-29 13:10:45 -0600
committerSergey M․ <dstftw@gmail.com>2017-07-09 17:01:00 +0700
commitd2b9f362fabad8f9490825456d8ed679d7159271 (patch)
tree8f530cbfcf49afb099d060a33f0825c06447add0 /youtube_dl/extractor/cjsw.py
parent4328ddf82b812420ffc120b4150251f751bff08c (diff)
downloadyoutube-dl-d2b9f362fabad8f9490825456d8ed679d7159271.tar.xz
[cjsw] Add extractor
Diffstat (limited to 'youtube_dl/extractor/cjsw.py')
-rw-r--r--youtube_dl/extractor/cjsw.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cjsw.py b/youtube_dl/extractor/cjsw.py
new file mode 100644
index 000000000..087cac9bc
--- /dev/null
+++ b/youtube_dl/extractor/cjsw.py
@@ -0,0 +1,41 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+
+
+class CJSWIE(InfoExtractor):
+ _VALID_URL = r'https?://(?:www\.)?cjsw\.com/program/\S+/(?P<id>[0-9]+)'
+ IE_NAME = 'cjsw'
+ _TEST = {
+ 'url': 'http://cjsw.com/program/freshly-squeezed/episode/20170620',
+ 'md5': 'cee14d40f1e9433632c56e3d14977120',
+ 'info_dict': {
+ 'id': '20170620',
+ 'ext': 'mp3',
+ 'title': 'Freshly Squeezed',
+ 'description': 'Sled Island artists featured // Live session with Phi Pho, followed by a live session with Sinzere & The Late Nights! // Stay Fresh Y\'all!!',
+ }
+ }
+
+ def _real_extract(self, url):
+ episode_id = self._match_id(url)
+
+ webpage = self._download_webpage(url, episode_id)
+
+ title = self._search_regex(
+ r'<button[^>]+data-showname=(["\'])(?P<title>(?!\1).+?)\1[^>]*>', webpage, 'title', group='title')
+ description = self._html_search_regex(
+ r'<p>(?P<description>.+?)</p>', webpage, 'description', fatal=False)
+ formats = [{
+ 'url': self._search_regex(
+ r'<button[^>]+data-audio-src=(["\'])(?P<audio_url>(?!\1).+?)\1[^>]*>', webpage, 'audio_url', group='audio_url'),
+ 'ext': 'mp3',
+ 'vcodec': 'none',
+ }]
+ return {
+ 'id': episode_id,
+ 'title': title,
+ 'description': description,
+ 'formats': formats,
+ }