mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-10 19:37:25 +00:00
[6play] Fix extraction (closes #12011)
This commit is contained in:
parent
fdf9b959bc
commit
b9c9cb5f79
@ -2,63 +2,82 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from ..compat import compat_str
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
qualities,
|
|
||||||
int_or_none,
|
|
||||||
mimetype2ext,
|
|
||||||
determine_ext,
|
determine_ext,
|
||||||
|
int_or_none,
|
||||||
|
try_get,
|
||||||
|
qualities,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class SixPlayIE(InfoExtractor):
|
class SixPlayIE(InfoExtractor):
|
||||||
_VALID_URL = r'(?:6play:|https?://(?:www\.)?6play\.fr/.+?-c_)(?P<id>[0-9]+)'
|
_VALID_URL = r'(?:6play:|https?://(?:www\.)?6play\.fr/.+?-c_)(?P<id>[0-9]+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'http://www.6play.fr/jamel-et-ses-amis-au-marrakech-du-rire-p_1316/jamel-et-ses-amis-au-marrakech-du-rire-2015-c_11495320',
|
'url': 'http://www.6play.fr/le-meilleur-patissier-p_1807/le-meilleur-patissier-special-fetes-mercredi-a-21-00-sur-m6-c_11638450',
|
||||||
'md5': '42310bffe4ba3982db112b9cd3467328',
|
'md5': '42310bffe4ba3982db112b9cd3467328',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '11495320',
|
'id': '11638450',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Jamel et ses amis au Marrakech du rire 2015',
|
'title': 'Le Meilleur Pâtissier, spécial fêtes mercredi à 21:00 sur M6',
|
||||||
'description': 'md5:ba2149d5c321d5201b78070ee839d872',
|
'description': 'md5:308853f6a5f9e2d55a30fc0654de415f',
|
||||||
|
'duration': 39,
|
||||||
|
'series': 'Le meilleur pâtissier',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
clip_data = self._download_json(
|
|
||||||
'https://player.m6web.fr/v2/video/config/6play-auth/FR/%s.json' % video_id,
|
data = self._download_json(
|
||||||
video_id)
|
'https://pc.middleware.6play.fr/6play/v2/platforms/m6group_web/services/6play/videos/clip_%s' % video_id,
|
||||||
video_data = clip_data['videoInfo']
|
video_id, query={
|
||||||
|
'csa': 5,
|
||||||
|
'with': 'clips',
|
||||||
|
})
|
||||||
|
|
||||||
|
clip_data = data['clips'][0]
|
||||||
|
title = clip_data['title']
|
||||||
|
|
||||||
quality_key = qualities(['lq', 'sd', 'hq', 'hd'])
|
quality_key = qualities(['lq', 'sd', 'hq', 'hd'])
|
||||||
formats = []
|
formats = []
|
||||||
for source in clip_data['sources']:
|
for asset in clip_data['assets']:
|
||||||
source_type, source_url = source.get('type'), source.get('src')
|
asset_url = asset.get('full_physical_path')
|
||||||
if not source_url or source_type == 'hls/primetime':
|
if not asset_url:
|
||||||
continue
|
continue
|
||||||
ext = mimetype2ext(source_type) or determine_ext(source_url)
|
container = asset.get('video_container')
|
||||||
if ext == 'm3u8':
|
ext = determine_ext(asset_url)
|
||||||
|
if container == 'm3u8' or ext == 'm3u8':
|
||||||
formats.extend(self._extract_m3u8_formats(
|
formats.extend(self._extract_m3u8_formats(
|
||||||
source_url, video_id, 'mp4', 'm3u8_native',
|
asset_url, video_id, 'mp4', 'm3u8_native',
|
||||||
m3u8_id='hls', fatal=False))
|
m3u8_id='hls', fatal=False))
|
||||||
formats.extend(self._extract_f4m_formats(
|
formats.extend(self._extract_f4m_formats(
|
||||||
source_url.replace('.m3u8', '.f4m'),
|
asset_url.replace('.m3u8', '.f4m'),
|
||||||
video_id, f4m_id='hds', fatal=False))
|
video_id, f4m_id='hds', fatal=False))
|
||||||
elif ext == 'mp4':
|
elif container == 'mp4' or ext == 'mp4':
|
||||||
quality = source.get('quality')
|
quality = asset.get('video_quality')
|
||||||
formats.append({
|
formats.append({
|
||||||
'url': source_url,
|
'url': asset_url,
|
||||||
'format_id': quality,
|
'format_id': quality,
|
||||||
'quality': quality_key(quality),
|
'quality': quality_key(quality),
|
||||||
'ext': ext,
|
'ext': ext,
|
||||||
})
|
})
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
|
def get(getter):
|
||||||
|
for src in (data, clip_data):
|
||||||
|
v = try_get(src, getter, compat_str)
|
||||||
|
if v:
|
||||||
|
return v
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': video_data['title'].strip(),
|
'title': title,
|
||||||
'description': video_data.get('description'),
|
'description': get(lambda x: x['description']),
|
||||||
'duration': int_or_none(video_data.get('duration')),
|
'duration': int_or_none(clip_data.get('duration')),
|
||||||
'series': video_data.get('titlePgm'),
|
'series': get(lambda x: x['program']['title']),
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user