]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/line.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from ..utils
import js_to_json
10 class LineTVIE(InfoExtractor
):
11 _VALID_URL
= r
'https?://tv\.line\.me/v/(?P<id>\d+)_[^/]+-(?P<segment>ep\d+-\d+)'
14 'url': 'https://tv.line.me/v/793123_goodbye-mrblack-ep1-1/list/69246',
18 'title': 'Goodbye Mr.Black | EP.1-1',
19 'thumbnail': r
're:^https?://.*\.jpg$',
24 'url': 'https://tv.line.me/v/2587507_%E6%B4%BE%E9%81%A3%E5%A5%B3%E9%86%ABx-ep1-02/list/185245',
25 'only_matching': True,
28 def _real_extract(self
, url
):
29 series_id
, segment
= re
.match(self
._VALID
_URL
, url
).groups()
30 video_id
= '%s_%s' % (series_id
, segment
)
32 webpage
= self
._download
_webpage
(url
, video_id
)
34 player_params
= self
._parse
_json
(self
._search
_regex
(
35 r
'naver\.WebPlayer\(({[^}]+})\)', webpage
, 'player parameters'),
36 video_id
, transform_source
=js_to_json
)
38 video_info
= self
._download
_json
(
39 'https://global-nvapis.line.me/linetv/rmcnmv/vod_play_videoInfo.json',
41 'videoId': player_params
['videoId'],
42 'key': player_params
['key'],
45 stream
= video_info
['streams'][0]
46 extra_query
= '?__gda__=' + stream
['key']['value']
47 formats
= self
._extract
_m
3u8_formats
(
48 stream
['source'] + extra_query
, video_id
, ext
='mp4',
49 entry_protocol
='m3u8_native', m3u8_id
='hls')
51 for a_format
in formats
:
52 a_format
['url'] += extra_query
55 for video
in video_info
.get('videos', {}).get('list', []):
56 encoding_option
= video
.get('encodingOption', {})
57 abr
= video
['bitrate']['audio']
58 vbr
= video
['bitrate']['video']
61 'url': video
['source'],
62 'format_id': 'http-%d' % int(tbr
),
63 'height': encoding_option
.get('height'),
64 'width': encoding_option
.get('width'),
67 'filesize': video
.get('size'),
69 if video
.get('duration') and duration
is None:
70 duration
= video
['duration']
72 self
._sort
_formats
(formats
)
74 if not formats
[0].get('width'):
75 formats
[0]['vcodec'] = 'none'
77 title
= self
._og
_search
_title
(webpage
)
79 # like_count requires an additional API request https://tv.line.me/api/likeit/getCount
85 'extra_param_to_segment_url': extra_query
[1:],
87 'thumbnails': [{'url': thumbnail
['source']}
88 for thumbnail
in video_info
.get('thumbnails', {}).get('list', [])],
89 'view_count': video_info
.get('meta', {}).get('count'),