]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/msn.py
[xtube] Fix extraction (Closes #9953, closes #9961)
[yt-dlp.git] / youtube_dl / extractor / msn.py
CommitLineData
c6781156
T
1# coding: utf-8
2from __future__ import unicode_literals
3
4import re
c6781156 5
f1f33632
S
6from .common import InfoExtractor
7from ..compat import compat_str
c6781156 8from ..utils import (
f1f33632
S
9 determine_ext,
10 ExtractorError,
c6781156 11 int_or_none,
f1f33632 12 unescapeHTML,
c6781156
T
13)
14
f1f33632 15
c6781156 16class MSNIE(InfoExtractor):
f1f33632 17 _VALID_URL = r'https?://(?:www\.)?msn\.com/(?:[^/]+/)+(?P<display_id>[^/]+)/[a-z]{2}-(?P<id>[\da-zA-Z]+)'
c6781156
T
18 _TESTS = [{
19 'url': 'http://www.msn.com/en-ae/foodanddrink/joinourtable/criminal-minds-shemar-moore-shares-a-touching-goodbye-message/vp-BBqQYNE',
f1f33632 20 'md5': '8442f66c116cbab1ff7098f986983458',
c6781156
T
21 'info_dict': {
22 'id': 'BBqQYNE',
f1f33632
S
23 'display_id': 'criminal-minds-shemar-moore-shares-a-touching-goodbye-message',
24 'ext': 'mp4',
c6781156
T
25 'title': 'Criminal Minds - Shemar Moore Shares A Touching Goodbye Message',
26 'description': 'md5:e8e89b897b222eb33a6b5067a8f1bc25',
27 'duration': 104,
f1f33632
S
28 'uploader': 'CBS Entertainment',
29 'uploader_id': 'IT0X5aoJ6bJgYerJXSDCgFmYPB1__54v',
c6781156 30 },
c6781156
T
31 }, {
32 'url': 'http://www.msn.com/en-ae/news/offbeat/meet-the-nine-year-old-self-made-millionaire/ar-BBt6ZKf',
f1f33632
S
33 'only_matching': True,
34 }, {
35 'url': 'http://www.msn.com/en-ae/video/watch/obama-a-lot-of-people-will-be-disappointed/vi-AAhxUMH',
36 'only_matching': True,
37 }, {
38 # geo restricted
39 'url': 'http://www.msn.com/en-ae/foodanddrink/joinourtable/the-first-fart-makes-you-laugh-the-last-fart-makes-you-cry/vp-AAhzIBU',
40 'only_matching': True,
b0c200f1
S
41 }, {
42 'url': 'http://www.msn.com/en-ae/entertainment/bollywood/watch-how-salman-khan-reacted-when-asked-if-he-would-apologize-for-his-‘raped-woman’-comment/vi-AAhvzW6',
43 'only_matching': True,
c6781156
T
44 }]
45
46 def _real_extract(self, url):
47 mobj = re.match(self._VALID_URL, url)
48 video_id, display_id = mobj.group('id', 'display_id')
49
50 webpage = self._download_webpage(url, display_id)
51
f1f33632
S
52 video = self._parse_json(
53 self._search_regex(
54 r'data-metadata\s*=\s*(["\'])(?P<data>.+?)\1',
55 webpage, 'video data', default='{}', group='data'),
56 display_id, transform_source=unescapeHTML)
57
58 if not video:
59 error = unescapeHTML(self._search_regex(
60 r'data-error=(["\'])(?P<error>.+?)\1',
61 webpage, 'error', group='error'))
62 raise ExtractorError('%s said: %s' % (self.IE_NAME, error), expected=True)
63
64 title = video['title']
c6781156
T
65
66 formats = []
f1f33632
S
67 for file_ in video.get('videoFiles', []):
68 format_url = file_.get('url')
69 if not format_url:
70 continue
71 ext = determine_ext(format_url)
72 # .ism is not yet supported (see
73 # https://github.com/rg3/youtube-dl/issues/8118)
74 if ext == 'ism':
75 continue
76 if 'm3u8' in format_url:
77 # m3u8_native should not be used here until
78 # https://github.com/rg3/youtube-dl/issues/9913 is fixed
79 m3u8_formats = self._extract_m3u8_formats(
80 format_url, display_id, 'mp4',
81 m3u8_id='hls', fatal=False)
82 # Despite metadata in m3u8 all video+audio formats are
83 # actually video-only (no audio)
84 for f in m3u8_formats:
85 if f.get('acodec') != 'none' and f.get('vcodec') != 'none':
86 f['acodec'] = 'none'
87 formats.extend(m3u8_formats)
88 else:
c6781156 89 formats.append({
f1f33632 90 'url': format_url,
c6781156 91 'ext': 'mp4',
f1f33632
S
92 'format_id': 'http',
93 'width': int_or_none(file_.get('width')),
94 'height': int_or_none(file_.get('height')),
c6781156 95 })
c6781156
T
96 self._sort_formats(formats)
97
98 subtitles = {}
f1f33632
S
99 for file_ in video.get('files', []):
100 format_url = file_.get('url')
101 format_code = file_.get('formatCode')
102 if not format_url or not format_code:
103 continue
104 if compat_str(format_code) == '3100':
105 subtitles.setdefault(file_.get('culture', 'en'), []).append({
106 'ext': determine_ext(format_url, 'ttml'),
107 'url': format_url,
c6781156
T
108 })
109
110 return {
111 'id': video_id,
f1f33632
S
112 'display_id': display_id,
113 'title': title,
114 'description': video.get('description'),
115 'thumbnail': video.get('headlineImage', {}).get('url'),
116 'duration': int_or_none(video.get('durationSecs')),
117 'uploader': video.get('sourceFriendly'),
118 'uploader_id': video.get('providerId'),
119 'creator': video.get('creator'),
c6781156 120 'subtitles': subtitles,
f1f33632 121 'formats': formats,
c6781156 122 }