about summary refs log tree commit diff
path: root/youtube_dl/extractor/sonyliv.py
diff options
context:
space:
mode:
authorSukhbir Singh <sukhbir@riseup.net>2016-08-07 19:11:00 -0400
committerSergey M․ <dstftw@gmail.com>2016-08-09 02:09:13 +0700
commit8991844ea260a17943e935acfd5565caab27a99e (patch)
treed9be4aa5743eac18e0c8565e9bac854c16354469 /youtube_dl/extractor/sonyliv.py
parent082395d0a0f21375f63e3c9b33011b30d5de3aae (diff)
downloadyoutube-dl-8991844ea260a17943e935acfd5565caab27a99e.tar.gz
youtube-dl-8991844ea260a17943e935acfd5565caab27a99e.tar.xz
youtube-dl-8991844ea260a17943e935acfd5565caab27a99e.zip
[sonyliv] Add new extractor
Diffstat (limited to 'youtube_dl/extractor/sonyliv.py')
-rw-r--r--youtube_dl/extractor/sonyliv.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/youtube_dl/extractor/sonyliv.py b/youtube_dl/extractor/sonyliv.py
new file mode 100644
index 000000000..c717b1f4d
--- /dev/null
+++ b/youtube_dl/extractor/sonyliv.py
@@ -0,0 +1,28 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+
+
+class SonyLIVIE(InfoExtractor):
+    _VALID_URL = r'http?://(?:www\.)?sonyliv\.com/details/episodes/(?P<id>[0-9]+)/'
+    _TEST = {
+        'url': 'http://www.sonyliv.com/details/episodes/5024612095001/Ep.-1---Achaari-Cheese-Toast---Bachelor\'s-Delight',
+        'info_dict': {
+            'title': 'Ep. 1 - Achaari Cheese Toast - Bachelor\'s Delight',
+            'id': '5024612095001',
+            'ext': 'mp4',
+            'upload_date': '20160707',
+            'description': 'Bachelor\'s Delight is a new food show from Sony LIV to satisfy the taste buds of all those bachelors looking for a quick bite.',
+            'uploader_id': '4338955589001',
+            'timestamp': 1467870968,
+        },
+        'params': {
+            'skip_download': True,
+        },
+        'add_ie': ['BrightcoveNew'],
+    }
+    BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/4338955589001/default_default/index.html?videoId=%s'
+
+    def _real_extract(self, url):
+        return self.url_result(self.BRIGHTCOVE_URL_TEMPLATE % self._match_id(url), 'BrightcoveNew')