summaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/cliprs.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--yt_dlp/extractor/cliprs.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/yt_dlp/extractor/cliprs.py b/yt_dlp/extractor/cliprs.py
new file mode 100644
index 0000000..c2add02
--- /dev/null
+++ b/yt_dlp/extractor/cliprs.py
@@ -0,0 +1,31 @@
+from .onet import OnetBaseIE
+
+
+class ClipRsIE(OnetBaseIE):
+ _WORKING = False
+ _VALID_URL = r'https?://(?:www\.)?clip\.rs/(?P<id>[^/]+)/\d+'
+ _TEST = {
+ 'url': 'http://www.clip.rs/premijera-frajle-predstavljaju-novi-spot-za-pesmu-moli-me-moli/3732',
+ 'md5': 'c412d57815ba07b56f9edc7b5d6a14e5',
+ 'info_dict': {
+ 'id': '1488842.1399140381',
+ 'ext': 'mp4',
+ 'title': 'PREMIJERA Frajle predstavljaju novi spot za pesmu Moli me, moli',
+ 'description': 'md5:56ce2c3b4ab31c5a2e0b17cb9a453026',
+ 'duration': 229,
+ 'timestamp': 1459850243,
+ 'upload_date': '20160405',
+ }
+ }
+
+ def _real_extract(self, url):
+ display_id = self._match_id(url)
+
+ webpage = self._download_webpage(url, display_id)
+
+ mvp_id = self._search_mvp_id(webpage)
+
+ info_dict = self._extract_from_id(mvp_id, webpage)
+ info_dict['display_id'] = display_id
+
+ return info_dict