1 from .common
import InfoExtractor
9 class Varzesh3IE(InfoExtractor
):
11 _VALID_URL
= r
'https?://(?:www\.)?video\.varzesh3\.com/(?:[^/]+/)+(?P<id>[^/]+)/?'
13 '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/',
14 'md5': '2a933874cb7dce4366075281eb49e855',
18 'title': '۵ واکنش برتر دروازهبانان؛هفته ۲۶ بوندسلیگا',
19 'description': 'فصل ۲۰۱۵-۲۰۱۴',
20 'thumbnail': r
're:^https?://.*\.jpg$',
22 'skip': 'HTTP 404 Error',
24 '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',
25 'md5': '841b7cd3afbc76e61708d94e53a4a4e7',
29 'title': 'دله علی؛ ستاره نوظهور لیگ برتر جزیره',
30 'description': 'فوتبال 120',
32 'expected_warnings': ['description'],
35 def _real_extract(self
, url
):
36 display_id
= self
._match
_id
(url
)
38 webpage
= self
._download
_webpage
(url
, display_id
)
40 video_url
= self
._search
_regex
(
41 r
'<source[^>]+src="([^"]+)"', webpage
, 'video url')
43 title
= remove_start(self
._html
_extract
_title
(webpage
), 'ویدیو ورزش 3 | ')
45 description
= self
._html
_search
_regex
(
46 r
'(?s)<div class="matn">(.+?)</div>',
47 webpage
, 'description', default
=None)
48 if description
is None:
49 description
= clean_html(self
._html
_search
_meta
('description', webpage
))
51 thumbnail
= self
._og
_search
_thumbnail
(webpage
, default
=None)
53 fb_sharer_url
= self
._search
_regex
(
54 r
'<a[^>]+href="(https?://www\.facebook\.com/sharer/sharer\.php?[^"]+)"',
55 webpage
, 'facebook sharer URL', fatal
=False)
56 sharer_params
= parse_qs(fb_sharer_url
)
57 thumbnail
= sharer_params
.get('p[images][0]', [None])[0]
59 video_id
= self
._search
_regex
(
60 r
"<link[^>]+rel='(?:canonical|shortlink)'[^>]+href='/\?p=([^']+)'",
61 webpage
, display_id
, default
=None)
63 video_id
= self
._search
_regex
(
64 r
'var\s+VideoId\s*=\s*(\d+);', webpage
, 'video id',
71 'description': description
,
72 'thumbnail': thumbnail
,