]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/varzesh3.py
Fix "invalid escape sequences" error on Python 3.6
[yt-dlp.git] / youtube_dl / extractor / varzesh3.py
CommitLineData
db40364b
MTP
1# coding: utf-8
2from __future__ import unicode_literals
55cde6ef 3
db40364b 4from .common import InfoExtractor
ee94e7e6
YCH
5from ..compat import (
6 compat_urllib_parse_urlparse,
7 compat_parse_qs,
8)
9from ..utils import (
10 clean_html,
11 remove_start,
12)
db40364b
MTP
13
14
15class Varzesh3IE(InfoExtractor):
55cde6ef 16 _VALID_URL = r'https?://(?:www\.)?video\.varzesh3\.com/(?:[^/]+/)+(?P<id>[^/]+)/?'
ee94e7e6 17 _TESTS = [{
db40364b
MTP
18 'url': 'http://video.varzesh3.com/germany/bundesliga/5-%D9%88%D8%A7%DA%A9%D9%86%D8%B4-%D8%A8%D8%B1%D8%AA%D8%B1-%D8%AF%D8%B1%D9%88%D8%A7%D8%B2%D9%87%E2%80%8C%D8%A8%D8%A7%D9%86%D8%A7%D9%86%D8%9B%D9%87%D9%81%D8%AA%D9%87-26-%D8%A8%D9%88%D9%86%D8%AF%D8%B3/',
19 'md5': '2a933874cb7dce4366075281eb49e855',
20 'info_dict': {
db40364b
MTP
21 'id': '76337',
22 'ext': 'mp4',
8896b614 23 'title': '۵ واکنش برتر دروازه‌بانان؛هفته ۲۶ بوندسلیگا',
2315fb5e 24 'description': 'فصل ۲۰۱۵-۲۰۱۴',
ec85ded8 25 'thumbnail': r're:^https?://.*\.jpg$',
ee94e7e6
YCH
26 },
27 'skip': 'HTTP 404 Error',
28 }, {
29 'url': 'http://video.varzesh3.com/video/112785/%D8%AF%D9%84%D9%87-%D8%B9%D9%84%DB%8C%D8%9B-%D8%B3%D8%AA%D8%A7%D8%B1%D9%87-%D9%86%D9%88%D8%B8%D9%87%D9%88%D8%B1-%D9%84%DB%8C%DA%AF-%D8%A8%D8%B1%D8%AA%D8%B1-%D8%AC%D8%B2%DB%8C%D8%B1%D9%87',
00b426d6 30 'md5': '841b7cd3afbc76e61708d94e53a4a4e7',
ee94e7e6
YCH
31 'info_dict': {
32 'id': '112785',
33 'ext': 'mp4',
34 'title': 'دله علی؛ ستاره نوظهور لیگ برتر جزیره',
35 'description': 'فوتبال 120',
36 },
37 'expected_warnings': ['description'],
38 }]
db40364b
MTP
39
40 def _real_extract(self, url):
55cde6ef
S
41 display_id = self._match_id(url)
42
43 webpage = self._download_webpage(url, display_id)
44
45 video_url = self._search_regex(
46 r'<source[^>]+src="([^"]+)"', webpage, 'video url')
db40364b 47
ee94e7e6
YCH
48 title = remove_start(self._html_search_regex(
49 r'<title>([^<]+)</title>', webpage, 'title'), 'ویدیو ورزش 3 | ')
50
55cde6ef
S
51 description = self._html_search_regex(
52 r'(?s)<div class="matn">(.+?)</div>',
ee94e7e6
YCH
53 webpage, 'description', default=None)
54 if description is None:
55 description = clean_html(self._html_search_meta('description', webpage))
56
57 thumbnail = self._og_search_thumbnail(webpage, default=None)
58 if thumbnail is None:
59 fb_sharer_url = self._search_regex(
60 r'<a[^>]+href="(https?://www\.facebook\.com/sharer/sharer\.php?[^"]+)"',
61 webpage, 'facebook sharer URL', fatal=False)
62 sharer_params = compat_parse_qs(compat_urllib_parse_urlparse(fb_sharer_url).query)
63 thumbnail = sharer_params.get('p[images][0]', [None])[0]
db40364b 64
55cde6ef
S
65 video_id = self._search_regex(
66 r"<link[^>]+rel='(?:canonical|shortlink)'[^>]+href='/\?p=([^']+)'",
ee94e7e6
YCH
67 webpage, display_id, default=None)
68 if video_id is None:
69 video_id = self._search_regex(
ec85ded8 70 r'var\s+VideoId\s*=\s*(\d+);', webpage, 'video id',
ee94e7e6 71 default=display_id)
db40364b
MTP
72
73 return {
55cde6ef
S
74 'url': video_url,
75 'id': video_id,
db40364b 76 'title': title,
db40364b
MTP
77 'description': description,
78 'thumbnail': thumbnail,
79 }