1 from __future__ import unicode_literals
3 from .common import InfoExtractor
4 from ..compat import compat_urllib_parse_unquote
7 class Ro220IE(InfoExtractor):
9 _VALID_URL = r'(?x)(?:https?://)?(?:www\.)?220\.ro/(?P<category>[^/]+)/(?P<shorttitle>[^/]+)/(?P<id>[^/]+)'
11 'url': 'http://www.220.ro/sport/Luati-Le-Banii-Sez-4-Ep-1/LYV6doKo7f/',
12 'md5': '03af18b73a07b4088753930db7a34add',
16 'title': 'Luati-le Banii sez 4 ep 1',
17 'description': 're:^Iata-ne reveniti dupa o binemeritata vacanta\. +Va astept si pe Facebook cu pareri si comentarii.$',
21 def _real_extract(self, url):
22 video_id = self._match_id(url)
24 webpage = self._download_webpage(url, video_id)
25 url = compat_urllib_parse_unquote(self._search_regex(
26 r'(?s)clip\s*:\s*{.*?url\s*:\s*\'([^\']+)\'', webpage, 'url'))
27 title = self._og_search_title(webpage)
28 description = self._og_search_description(webpage)
29 thumbnail = self._og_search_thumbnail(webpage)
41 'description': description,
42 'thumbnail': thumbnail,