mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-30 21:20:34 +00:00
86e5f3ed2e
Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
31 lines
973 B
Python
31 lines
973 B
Python
from .onet import OnetBaseIE
|
|
|
|
|
|
class ClipRsIE(OnetBaseIE):
|
|
_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
|