]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/dumpert.py
1f00386feae15d00a4421b3166335c15f3b01aa9
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from ..compat
import compat_urllib_request
8 from ..utils
import qualities
11 class DumpertIE(InfoExtractor
):
12 _VALID_URL
= r
'https?://(?:www\.)?dumpert\.nl/(?:mediabase|embed)/(?P<id>[0-9]+/[0-9a-zA-Z]+)'
14 'url': 'http://www.dumpert.nl/mediabase/6646981/951bc60f/',
15 'md5': '1b9318d7d5054e7dcb9dc7654f21d643',
17 'id': '6646981/951bc60f',
19 'title': 'Ik heb nieuws voor je',
20 'description': 'Niet schrikken hoor',
21 'thumbnail': 're:^https?://.*\.jpg$',
24 'url': 'http://www.dumpert.nl/embed/6675421/dc440fe7/',
25 'only_matching': True,
28 def _real_extract(self
, url
):
29 video_id
= self
._match
_id
(url
)
31 url
= 'https://www.dumpert.nl/mediabase/' + video_id
32 req
= compat_urllib_request
.Request(url
)
33 req
.add_header('Cookie', 'nsfw=1; cpc=10')
34 webpage
= self
._download
_webpage
(req
, video_id
)
36 files_base64
= self
._search
_regex
(
37 r
'data-files="([^"]+)"', webpage
, 'data files')
39 files
= self
._parse
_json
(
40 base64
.b64decode(files_base64
.encode('utf-8')).decode('utf-8'),
43 quality
= qualities(['flv', 'mobile', 'tablet', '720p'])
47 'format_id': format_id
,
48 'quality': quality(format_id
),
49 } for format_id
, video_url
in files
.items() if format_id
!= 'still']
50 self
._sort
_formats
(formats
)
52 title
= self
._html
_search
_meta
(
53 'title', webpage
) or self
._og
_search
_title
(webpage
)
54 description
= self
._html
_search
_meta
(
55 'description', webpage
) or self
._og
_search
_description
(webpage
)
56 thumbnail
= files
.get('still') or self
._og
_search
_thumbnail
(webpage
)
61 'description': description
,
62 'thumbnail': thumbnail
,