1 from .common
import InfoExtractor
2 from ..utils
import int_or_none
5 class FiveTVIE(InfoExtractor
):
10 (?:[^/]+/)+(?P<id>\d+)|
11 (?P<path>[^/?#]+)(?:[/?#])?
16 'url': 'http://5-tv.ru/news/96814/',
17 'md5': 'bbff554ad415ecf5416a2f48c22d9283',
21 'title': 'Россияне выбрали имя для общенациональной платежной системы',
22 'description': 'md5:a8aa13e2b7ad36789e9f77a74b6de660',
23 'thumbnail': r
're:^https?://.*\.jpg$',
27 'url': 'http://5-tv.ru/video/1021729/',
31 'title': '3D принтер',
32 'description': 'md5:d76c736d29ef7ec5c0cf7d7c65ffcb41',
33 'thumbnail': r
're:^https?://.*\.jpg$',
37 # redirect to https://www.5-tv.ru/projects/1000095/izvestia-glavnoe/
38 'url': 'http://www.5-tv.ru/glavnoe/#itemDetails',
42 'title': r
're:^Итоги недели с \d+ по \d+ \w+ \d{4} года$',
43 'thumbnail': r
're:^https?://.*\.jpg$',
45 'skip': 'redirect to «Известия. Главное» project page',
47 'url': 'http://www.5-tv.ru/glavnoe/broadcasts/508645/',
48 'only_matching': True,
50 'url': 'http://5-tv.ru/films/1507502/',
51 'only_matching': True,
53 'url': 'http://5-tv.ru/programs/broadcast/508713/',
54 'only_matching': True,
56 'url': 'http://5-tv.ru/angel/',
57 'only_matching': True,
59 'url': 'http://www.5-tv.ru/schedule/?iframe=true&width=900&height=450',
60 'only_matching': True,
63 def _real_extract(self
, url
):
64 mobj
= self
._match
_valid
_url
(url
)
65 video_id
= mobj
.group('id') or mobj
.group('path')
67 webpage
= self
._download
_webpage
(url
, video_id
)
69 video_url
= self
._search
_regex
(
70 [r
'<div[^>]+?class="(?:flow)?player[^>]+?data-href="([^"]+)"',
71 r
'<a[^>]+?href="([^"]+)"[^>]+?class="videoplayer"'],
74 title
= self
._generic
_title
('', webpage
)
75 duration
= int_or_none(self
._og
_search
_property
(
76 'video:duration', webpage
, 'duration', default
=None))
82 'description': self
._og
_search
_description
(webpage
, default
=None),
83 'thumbnail': self
._og
_search
_thumbnail
(webpage
, default
=None),