mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-10-28 21:14:33 +01:00
8c25f81bee
utils is large enough without these compatibility functions. Everything that is present in newer versions of Python (i.e. with dev Python it's just an import) goes into compat.py . Everything else (i.e. youtube-dl-specific helpers) goes into utils.py .
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from .common import InfoExtractor
|
|
from ..compat import compat_urllib_parse_unquote
|
|
|
|
|
|
class Ro220IE(InfoExtractor):
|
|
IE_NAME = '220.ro'
|
|
_VALID_URL = r'(?x)(?:https?://)?(?:www\.)?220\.ro/(?P<category>[^/]+)/(?P<shorttitle>[^/]+)/(?P<id>[^/]+)'
|
|
_TEST = {
|
|
'url': 'http://www.220.ro/sport/Luati-Le-Banii-Sez-4-Ep-1/LYV6doKo7f/',
|
|
'md5': '03af18b73a07b4088753930db7a34add',
|
|
'info_dict': {
|
|
'id': 'LYV6doKo7f',
|
|
'ext': 'mp4',
|
|
'title': 'Luati-le Banii sez 4 ep 1',
|
|
'description': 're:^Iata-ne reveniti dupa o binemeritata vacanta\. +Va astept si pe Facebook cu pareri si comentarii.$',
|
|
}
|
|
}
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
url = compat_urllib_parse_unquote(self._search_regex(
|
|
r'(?s)clip\s*:\s*{.*?url\s*:\s*\'([^\']+)\'', webpage, 'url'))
|
|
title = self._og_search_title(webpage)
|
|
description = self._og_search_description(webpage)
|
|
thumbnail = self._og_search_thumbnail(webpage)
|
|
|
|
formats = [{
|
|
'format_id': 'sd',
|
|
'url': url,
|
|
'ext': 'mp4',
|
|
}]
|
|
|
|
return {
|
|
'id': video_id,
|
|
'formats': formats,
|
|
'title': title,
|
|
'description': description,
|
|
'thumbnail': thumbnail,
|
|
}
|