]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/musicplayon.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from ..utils
import int_or_none
10 class MusicPlayOnIE(InfoExtractor
):
11 _VALID_URL
= r
'https?://(?:.+?\.)?musicplayon\.com/play(?:-touch)?\?(?:v|pl=100&play)=(?P<id>\d+)'
14 'url': 'http://en.musicplayon.com/play?v=433377',
18 'title': 'Rick Ross - Interview On Chelsea Lately (2014)',
19 'description': 'Rick Ross Interview On Chelsea Lately',
21 'uploader': 'ultrafish',
25 'skip_download': True,
29 def _real_extract(self
, url
):
30 mobj
= re
.match(self
._VALID
_URL
, url
)
31 video_id
= mobj
.group('id')
33 page
= self
._download
_webpage
(url
, video_id
)
35 title
= self
._og
_search
_title
(page
)
36 description
= self
._og
_search
_description
(page
)
37 thumbnail
= self
._og
_search
_thumbnail
(page
)
38 duration
= self
._html
_search
_meta
('video:duration', page
, 'duration', fatal
=False)
39 view_count
= self
._og
_search
_property
('count', page
, fatal
=False)
40 uploader
= self
._html
_search
_regex
(
41 r
'<div>by <a href="[^"]+" class="purple">([^<]+)</a></div>', page
, 'uploader', fatal
=False)
45 'url': 'http://media0-eu-nl.musicplayon.com/stream-mobile?id=%s&type=.mp4' % video_id
,
50 manifest
= self
._download
_webpage
(
51 'http://en.musicplayon.com/manifest.m3u8?v=%s' % video_id
, video_id
, 'Downloading manifest')
53 for entry
in manifest
.split('#')[1:]:
54 if entry
.startswith('EXT-X-STREAM-INF:'):
55 meta
, url
, _
= entry
.split('\n')
56 params
= dict(param
.split('=') for param
in meta
.split(',')[1:])
60 'tbr': int(params
['BANDWIDTH']),
61 'width': int(params
['RESOLUTION'].split('x')[1]),
62 'height': int(params
['RESOLUTION'].split('x')[-1]),
63 'format_note': params
['NAME'].replace('"', '').strip(),
69 'description': description
,
70 'thumbnail': thumbnail
,
72 'duration': int_or_none(duration
),
73 'view_count': int_or_none(view_count
),