mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-05 04:13:07 +08:00
[wat] extract m3u8 formats instead of f4m formats(fixes #6678)
- sometimes f4m fragments are protected with Akamai Player Verification Token https://github.com/rg3/youtube-dl/issues/6678#issuecomment-170147085 - sometimes they fail with 403 while the m3u8 formats works - m3u8 manifest contain more formats
This commit is contained in:
parent
1846e9ade0
commit
63d4a85253
@ -2,7 +2,6 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import hashlib
|
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
@ -68,9 +67,6 @@ class WatIE(InfoExtractor):
|
|||||||
raise ExtractorError(
|
raise ExtractorError(
|
||||||
'%s returned error: %s' % (self.IE_NAME, error_desc), expected=True)
|
'%s returned error: %s' % (self.IE_NAME, error_desc), expected=True)
|
||||||
|
|
||||||
geo_list = video_info.get('geoList')
|
|
||||||
country = geo_list[0] if geo_list else ''
|
|
||||||
|
|
||||||
chapters = video_info['chapters']
|
chapters = video_info['chapters']
|
||||||
first_chapter = chapters[0]
|
first_chapter = chapters[0]
|
||||||
files = video_info['files']
|
files = video_info['files']
|
||||||
@ -78,53 +74,23 @@ class WatIE(InfoExtractor):
|
|||||||
|
|
||||||
if real_id_for_chapter(first_chapter) != real_id:
|
if real_id_for_chapter(first_chapter) != real_id:
|
||||||
self.to_screen('Multipart video detected')
|
self.to_screen('Multipart video detected')
|
||||||
chapter_urls = []
|
entries = [self.url_result('wat:%s' % real_id_for_chapter(chapter)) for chapter in chapters]
|
||||||
for chapter in chapters:
|
|
||||||
chapter_id = real_id_for_chapter(chapter)
|
|
||||||
# Yes, when we this chapter is processed by WatIE,
|
|
||||||
# it will download the info again
|
|
||||||
chapter_info = self.download_video_info(chapter_id)
|
|
||||||
chapter_urls.append(chapter_info['url'])
|
|
||||||
entries = [self.url_result(chapter_url) for chapter_url in chapter_urls]
|
|
||||||
return self.playlist_result(entries, real_id, video_info['title'])
|
return self.playlist_result(entries, real_id, video_info['title'])
|
||||||
|
|
||||||
upload_date = None
|
upload_date = None
|
||||||
if 'date_diffusion' in first_chapter:
|
if 'date_diffusion' in first_chapter:
|
||||||
upload_date = unified_strdate(first_chapter['date_diffusion'])
|
upload_date = unified_strdate(first_chapter['date_diffusion'])
|
||||||
# Otherwise we can continue and extract just one part, we have to use
|
# Otherwise we can continue and extract just one part, we have to use
|
||||||
# the short id for getting the video url
|
# the real id for getting the video url
|
||||||
|
|
||||||
formats = [{
|
formats = [{
|
||||||
'url': 'http://wat.tv/get/android5/%s.mp4' % real_id,
|
'url': 'http://wat.tv/get/android5/%s.mp4' % real_id,
|
||||||
'format_id': 'Mobile',
|
'format_id': 'Mobile',
|
||||||
}]
|
}]
|
||||||
|
formats.extend(self._extract_m3u8_formats(
|
||||||
fmts = [('SD', 'web')]
|
'http://wat.tv/get/ipad/%s.m3u8' % real_id,
|
||||||
if first_file.get('hasHD'):
|
real_id, 'mp4', 'm3u8_native', m3u8_id='hls'))
|
||||||
fmts.append(('HD', 'webhd'))
|
self._sort_formats(formats)
|
||||||
|
|
||||||
def compute_token(param):
|
|
||||||
timestamp = '%08x' % int(self._download_webpage(
|
|
||||||
'http://www.wat.tv/servertime', real_id,
|
|
||||||
'Downloading server time').split('|')[0])
|
|
||||||
magic = '9b673b13fa4682ed14c3cfa5af5310274b514c4133e9b3a81e6e3aba009l2564'
|
|
||||||
return '%s/%s' % (hashlib.md5((magic + param + timestamp).encode('ascii')).hexdigest(), timestamp)
|
|
||||||
|
|
||||||
for fmt in fmts:
|
|
||||||
webid = '/%s/%s' % (fmt[1], real_id)
|
|
||||||
video_url = self._download_webpage(
|
|
||||||
'http://www.wat.tv/get%s?token=%s&getURL=1&country=%s' % (webid, compute_token(webid), country),
|
|
||||||
real_id,
|
|
||||||
'Downloading %s video URL' % fmt[0],
|
|
||||||
'Failed to download %s video URL' % fmt[0],
|
|
||||||
False)
|
|
||||||
if not video_url:
|
|
||||||
continue
|
|
||||||
formats.append({
|
|
||||||
'url': video_url,
|
|
||||||
'ext': 'mp4',
|
|
||||||
'format_id': fmt[0],
|
|
||||||
})
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': real_id,
|
'id': real_id,
|
||||||
|
Loading…
Reference in New Issue
Block a user