]> jfr.im git - yt-dlp.git/blame - test/test_InfoExtractor.py
[vidio] Improve and sort formats
[yt-dlp.git] / test / test_InfoExtractor.py
CommitLineData
14719565
JMF
1#!/usr/bin/env python
2
3from __future__ import unicode_literals
4
5# Allow direct execution
cb252080 6import io
14719565
JMF
7import os
8import sys
9import unittest
10sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
11
cb252080 12from test.helper import FakeYDL, expect_dict, expect_value
14719565
JMF
13from youtube_dl.extractor.common import InfoExtractor
14from youtube_dl.extractor import YoutubeIE, get_info_extractor
88d9f6c0 15from youtube_dl.utils import encode_data_uri, strip_jsonp, ExtractorError, RegexNotFoundError
14719565
JMF
16
17
18class TestIE(InfoExtractor):
19 pass
20
21
22class TestInfoExtractor(unittest.TestCase):
23 def setUp(self):
24 self.ie = TestIE(FakeYDL())
25
26 def test_ie_key(self):
27 self.assertEqual(get_info_extractor(YoutubeIE.ie_key()), YoutubeIE)
28
29 def test_html_search_regex(self):
30 html = '<p id="foo">Watch this <a href="http://www.youtube.com/watch?v=BaW_jenozKc">video</a></p>'
31 search = lambda re, *args: self.ie._html_search_regex(re, html, *args)
32 self.assertEqual(search(r'<p id="foo">(.+?)</p>', 'foo'), 'Watch this video')
33
34 def test_opengraph(self):
35 ie = self.ie
36 html = '''
37 <meta name="og:title" content='Foo'/>
38 <meta content="Some video's description " name="og:description"/>
39 <meta property='og:image' content='http://domain.com/pic.jpg?key1=val1&amp;key2=val2'/>
1c29e81e 40 <meta content='application/x-shockwave-flash' property='og:video:type'>
db0a8ad9 41 <meta content='Foo' property=og:foobar>
448ef1f3
S
42 <meta name="og:test1" content='foo > < bar'/>
43 <meta name="og:test2" content="foo >//< bar"/>
14719565
JMF
44 '''
45 self.assertEqual(ie._og_search_title(html), 'Foo')
46 self.assertEqual(ie._og_search_description(html), 'Some video\'s description ')
47 self.assertEqual(ie._og_search_thumbnail(html), 'http://domain.com/pic.jpg?key1=val1&key2=val2')
1c29e81e 48 self.assertEqual(ie._og_search_video_url(html, default=None), None)
db0a8ad9 49 self.assertEqual(ie._og_search_property('foobar', html), 'Foo')
448ef1f3
S
50 self.assertEqual(ie._og_search_property('test1', html), 'foo > < bar')
51 self.assertEqual(ie._og_search_property('test2', html), 'foo >//< bar')
b070564e
S
52 self.assertEqual(ie._og_search_property(('test0', 'test1'), html), 'foo > < bar')
53 self.assertRaises(RegexNotFoundError, ie._og_search_property, 'test0', html, None, fatal=True)
54 self.assertRaises(RegexNotFoundError, ie._og_search_property, ('test0', 'test00'), html, None, fatal=True)
14719565 55
bec22481
PH
56 def test_html_search_meta(self):
57 ie = self.ie
58 html = '''
59 <meta name="a" content="1" />
60 <meta name='b' content='2'>
61 <meta name="c" content='3'>
62 <meta name=d content='4'>
63 <meta property="e" content='5' >
64 <meta content="6" name="f">
65 '''
66
67 self.assertEqual(ie._html_search_meta('a', html), '1')
68 self.assertEqual(ie._html_search_meta('b', html), '2')
69 self.assertEqual(ie._html_search_meta('c', html), '3')
70 self.assertEqual(ie._html_search_meta('d', html), '4')
71 self.assertEqual(ie._html_search_meta('e', html), '5')
72 self.assertEqual(ie._html_search_meta('f', html), '6')
88d9f6c0
S
73 self.assertEqual(ie._html_search_meta(('a', 'b', 'c'), html), '1')
74 self.assertEqual(ie._html_search_meta(('c', 'b', 'a'), html), '3')
75 self.assertEqual(ie._html_search_meta(('z', 'x', 'c'), html), '3')
76 self.assertRaises(RegexNotFoundError, ie._html_search_meta, 'z', html, None, fatal=True)
77 self.assertRaises(RegexNotFoundError, ie._html_search_meta, ('z', 'x'), html, None, fatal=True)
bec22481 78
6a801f44
JMF
79 def test_download_json(self):
80 uri = encode_data_uri(b'{"foo": "blah"}', 'application/json')
81 self.assertEqual(self.ie._download_json(uri, None), {'foo': 'blah'})
82 uri = encode_data_uri(b'callback({"foo": "blah"})', 'application/javascript')
83 self.assertEqual(self.ie._download_json(uri, None, transform_source=strip_jsonp), {'foo': 'blah'})
84 uri = encode_data_uri(b'{"foo": invalid}', 'application/json')
85 self.assertRaises(ExtractorError, self.ie._download_json, uri, None)
86 self.assertEqual(self.ie._download_json(uri, None, fatal=False), None)
87
7f3590c4
S
88 def test_extract_jwplayer_data_realworld(self):
89 # from http://www.suffolk.edu/sjc/
90 expect_dict(
91 self,
92 self.ie._extract_jwplayer_data(r'''
93 <script type='text/javascript'>
94 jwplayer('my-video').setup({
95 file: 'rtmp://192.138.214.154/live/sjclive',
96 fallback: 'true',
97 width: '95%',
98 aspectratio: '16:9',
99 primary: 'flash',
100 mediaid:'XEgvuql4'
101 });
102 </script>
103 ''', None, require_title=False),
104 {
105 'id': 'XEgvuql4',
106 'formats': [{
107 'url': 'rtmp://192.138.214.154/live/sjclive',
108 'ext': 'flv'
109 }]
110 })
111
112 # from https://www.pornoxo.com/videos/7564/striptease-from-sexy-secretary/
113 expect_dict(
114 self,
115 self.ie._extract_jwplayer_data(r'''
116<script type="text/javascript">
117 jwplayer("mediaplayer").setup({
118 'videoid': "7564",
119 'width': "100%",
120 'aspectratio': "16:9",
121 'stretching': "exactfit",
122 'autostart': 'false',
123 'flashplayer': "https://t04.vipstreamservice.com/jwplayer/v5.10/player.swf",
124 'file': "https://cdn.pornoxo.com/key=MF+oEbaxqTKb50P-w9G3nA,end=1489689259,ip=104.199.146.27/ip=104.199.146.27/speed=6573765/buffer=3.0/2009-12/4b2157147afe5efa93ce1978e0265289c193874e02597.flv",
125 'image': "https://t03.vipstreamservice.com/thumbs/pxo-full/2009-12/14/a4b2157147afe5efa93ce1978e0265289c193874e02597.flv-full-13.jpg",
126 'filefallback': "https://cdn.pornoxo.com/key=9ZPsTR5EvPLQrBaak2MUGA,end=1489689259,ip=104.199.146.27/ip=104.199.146.27/speed=6573765/buffer=3.0/2009-12/m_4b2157147afe5efa93ce1978e0265289c193874e02597.mp4",
127 'logo.hide': true,
128 'skin': "https://t04.vipstreamservice.com/jwplayer/skin/modieus-blk.zip",
129 'plugins': "https://t04.vipstreamservice.com/jwplayer/dock/dockableskinnableplugin.swf",
130 'dockableskinnableplugin.piclink': "/index.php?key=ajax-videothumbsn&vid=7564&data=2009-12--14--4b2157147afe5efa93ce1978e0265289c193874e02597.flv--17370",
131 'controlbar': 'bottom',
132 'modes': [
133 {type: 'flash', src: 'https://t04.vipstreamservice.com/jwplayer/v5.10/player.swf'}
134 ],
135 'provider': 'http'
136 });
137 //noinspection JSAnnotator
138 invideo.setup({
139 adsUrl: "/banner-iframe/?zoneId=32",
140 adsUrl2: "",
141 autostart: false
142 });
143</script>
144 ''', 'dummy', require_title=False),
145 {
146 'thumbnail': 'https://t03.vipstreamservice.com/thumbs/pxo-full/2009-12/14/a4b2157147afe5efa93ce1978e0265289c193874e02597.flv-full-13.jpg',
147 'formats': [{
148 'url': 'https://cdn.pornoxo.com/key=MF+oEbaxqTKb50P-w9G3nA,end=1489689259,ip=104.199.146.27/ip=104.199.146.27/speed=6573765/buffer=3.0/2009-12/4b2157147afe5efa93ce1978e0265289c193874e02597.flv',
149 'ext': 'flv'
150 }]
151 })
152
153 # from http://www.indiedb.com/games/king-machine/videos
154 expect_dict(
155 self,
156 self.ie._extract_jwplayer_data(r'''
157<script>
158jwplayer("mediaplayer").setup({"abouttext":"Visit Indie DB","aboutlink":"http:\/\/www.indiedb.com\/","displaytitle":false,"autostart":false,"repeat":false,"title":"king machine trailer 1","sharing":{"link":"http:\/\/www.indiedb.com\/games\/king-machine\/videos\/king-machine-trailer-1","code":"<iframe width=\"560\" height=\"315\" src=\"http:\/\/www.indiedb.com\/media\/iframe\/1522983\" frameborder=\"0\" allowfullscreen><\/iframe><br><a href=\"http:\/\/www.indiedb.com\/games\/king-machine\/videos\/king-machine-trailer-1\">king machine trailer 1 - Indie DB<\/a>"},"related":{"file":"http:\/\/rss.indiedb.com\/media\/recommended\/1522983\/feed\/rss.xml","dimensions":"160x120","onclick":"link"},"sources":[{"file":"http:\/\/cdn.dbolical.com\/cache\/videos\/games\/1\/50\/49678\/encode_mp4\/king-machine-trailer.mp4","label":"360p SD","default":"true"},{"file":"http:\/\/cdn.dbolical.com\/cache\/videos\/games\/1\/50\/49678\/encode720p_mp4\/king-machine-trailer.mp4","label":"720p HD"}],"image":"http:\/\/media.indiedb.com\/cache\/images\/games\/1\/50\/49678\/thumb_620x2000\/king-machine-trailer.mp4.jpg","advertising":{"client":"vast","tag":"http:\/\/ads.intergi.com\/adrawdata\/3.0\/5205\/4251742\/0\/1013\/ADTECH;cors=yes;width=560;height=315;referring_url=http:\/\/www.indiedb.com\/games\/king-machine\/videos\/king-machine-trailer-1;content_url=http:\/\/www.indiedb.com\/games\/king-machine\/videos\/king-machine-trailer-1;media_id=1522983;title=king+machine+trailer+1;device=__DEVICE__;model=__MODEL__;os=Windows+OS;osversion=__OSVERSION__;ua=__UA__;ip=109.171.17.81;uniqueid=1522983;tags=__TAGS__;number=58cac25928151;time=1489683033"},"width":620,"height":349}).once("play", function(event) {
159 videoAnalytics("play");
160}).once("complete", function(event) {
161 videoAnalytics("completed");
162});
163</script>
164 ''', 'dummy'),
165 {
166 'title': 'king machine trailer 1',
167 'thumbnail': 'http://media.indiedb.com/cache/images/games/1/50/49678/thumb_620x2000/king-machine-trailer.mp4.jpg',
168 'formats': [{
169 'url': 'http://cdn.dbolical.com/cache/videos/games/1/50/49678/encode_mp4/king-machine-trailer.mp4',
170 'height': 360,
171 'ext': 'mp4'
172 }, {
173 'url': 'http://cdn.dbolical.com/cache/videos/games/1/50/49678/encode720p_mp4/king-machine-trailer.mp4',
174 'height': 720,
175 'ext': 'mp4'
176 }]
177 })
178
cb252080
S
179 def test_parse_m3u8_formats(self):
180 _TEST_CASES = [
181 (
182 # https://github.com/rg3/youtube-dl/issues/11507
183 # http://pluzz.francetv.fr/videos/le_ministere.html
184 'pluzz_francetv_11507',
185 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/master.m3u8?caption=2017%2F16%2F156589847-1492488987.m3u8%3Afra%3AFrancais&audiotrack=0%3Afra%3AFrancais',
186 [{
187 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/master.m3u8?caption=2017%2F16%2F156589847-1492488987.m3u8%3Afra%3AFrancais&audiotrack=0%3Afra%3AFrancais',
188 'ext': 'mp4',
189 'format_id': 'meta',
190 'format_note': 'Quality selection URL',
191 'protocol': 'm3u8',
192 'preference': -100,
193 'resolution': 'multiple'
194 }, {
195 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_0_av.m3u8?null=0',
196 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_0_av.m3u8?null=0',
197 'ext': 'mp4',
198 'format_id': '180',
199 'protocol': 'm3u8',
200 'acodec': 'mp4a.40.2',
201 'vcodec': 'avc1.66.30',
202 'tbr': 180,
203 'width': 256,
204 'height': 144,
205 }, {
206 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_1_av.m3u8?null=0',
207 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_1_av.m3u8?null=0',
208 'ext': 'mp4',
209 'format_id': '303',
210 'protocol': 'm3u8',
211 'acodec': 'mp4a.40.2',
212 'vcodec': 'avc1.66.30',
213 'tbr': 303,
214 'width': 320,
215 'height': 180,
216 }, {
217 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_2_av.m3u8?null=0',
218 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_2_av.m3u8?null=0',
219 'ext': 'mp4',
220 'format_id': '575',
221 'protocol': 'm3u8',
222 'acodec': 'mp4a.40.2',
223 'vcodec': 'avc1.66.30',
224 'tbr': 575,
225 'width': 512,
226 'height': 288,
227 }, {
228 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_3_av.m3u8?null=0',
229 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_3_av.m3u8?null=0',
230 'ext': 'mp4',
231 'format_id': '831',
232 'protocol': 'm3u8',
233 'acodec': 'mp4a.40.2',
234 'vcodec': 'avc1.77.30',
235 'tbr': 831,
236 'width': 704,
237 'height': 396,
238 }, {
239 'url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_4_av.m3u8?null=0',
240 'manifest_url': 'http://replayftv-vh.akamaihd.net/i/streaming-adaptatif_france-dom-tom/2017/S16/J2/156589847-58f59130c1f52-,standard1,standard2,standard3,standard4,standard5,.mp4.csmil/index_4_av.m3u8?null=0',
241 'ext': 'mp4',
242 'protocol': 'm3u8',
243 'format_id': '1467',
244 'acodec': 'mp4a.40.2',
245 'vcodec': 'avc1.77.30',
246 'tbr': 1467,
247 'width': 1024,
248 'height': 576,
249 }]
250 ),
251 (
252 # https://github.com/rg3/youtube-dl/issues/11995
253 # http://teamcoco.com/video/clueless-gamer-super-bowl-for-honor
254 'teamcoco_11995',
255 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
256 [{
257 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
258 'ext': 'mp4',
259 'format_id': 'meta',
260 'format_note': 'Quality selection URL',
261 'protocol': 'm3u8',
262 'preference': -100,
263 'resolution': 'multiple',
264 }, {
265 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-160k_v4.m3u8',
266 'ext': 'mp4',
267 'format_id': 'audio-0-Default',
268 'protocol': 'm3u8',
269 'vcodec': 'none',
270 }, {
271 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-64k_v4.m3u8',
272 'ext': 'mp4',
273 'format_id': 'audio-1-Default',
274 'protocol': 'm3u8',
275 'vcodec': 'none',
276 }, {
277 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-64k_v4.m3u8',
278 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-64k_v4.m3u8',
279 'ext': 'mp4',
280 'format_id': '71',
281 'protocol': 'm3u8',
282 'acodec': 'mp4a.40.5',
283 'vcodec': 'none',
284 'tbr': 71,
285 }, {
286 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
287 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
288 'ext': 'mp4',
289 'format_id': '413',
290 'protocol': 'm3u8',
291 'acodec': 'none',
292 'vcodec': 'avc1.42001e',
293 'tbr': 413,
294 'width': 400,
295 'height': 224,
296 }, {
297 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
298 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
299 'ext': 'mp4',
300 'format_id': '522',
301 'protocol': 'm3u8',
302 'acodec': 'none',
303 'vcodec': 'avc1.42001e',
304 'tbr': 522,
305 'width': 400,
306 'height': 224,
307 }, {
308 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-1m_v4.m3u8',
309 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-1m_v4.m3u8',
310 'ext': 'mp4',
311 'format_id': '1205',
312 'protocol': 'm3u8',
313 'acodec': 'none',
314 'vcodec': 'avc1.4d001e',
315 'tbr': 1205,
316 'width': 640,
317 'height': 360,
318 }, {
319 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-2m_v4.m3u8',
320 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-2m_v4.m3u8',
321 'ext': 'mp4',
322 'format_id': '2374',
323 'protocol': 'm3u8',
324 'acodec': 'none',
325 'vcodec': 'avc1.4d001f',
326 'tbr': 2374,
327 'width': 1024,
328 'height': 576,
329 }]
330 ),
331 (
332 # https://github.com/rg3/youtube-dl/issues/12211
333 # http://video.toggle.sg/en/series/whoopie-s-world/ep3/478601
334 'toggle_mobile_12211',
335 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
336 [{
337 'url': 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
338 'ext': 'mp4',
339 'format_id': 'meta',
340 'format_note': 'Quality selection URL',
341 'protocol': 'm3u8',
342 'preference': -100,
343 'resolution': 'multiple'
344 }, {
345 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_sa2ntrdg/name/a.mp4/index.m3u8',
346 'ext': 'mp4',
347 'format_id': 'audio-English',
348 'protocol': 'm3u8',
349 'language': 'eng',
350 'vcodec': 'none',
351 }, {
352 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_r7y0nitg/name/a.mp4/index.m3u8',
353 'ext': 'mp4',
354 'format_id': 'audio-Undefined',
355 'protocol': 'm3u8',
356 'language': 'und',
357 'vcodec': 'none',
358 }, {
359 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_qlk9hlzr/name/a.mp4/index.m3u8',
360 'manifest_url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_qlk9hlzr/name/a.mp4/index.m3u8',
361 'ext': 'mp4',
362 'format_id': '155',
363 'protocol': 'm3u8',
364 'tbr': 155,
365 'width': 320,
366 'height': 180,
367 }, {
368 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_oefackmi/name/a.mp4/index.m3u8',
369 'manifest_url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/2/pv/1/flavorId/0_oefackmi/name/a.mp4/index.m3u8',
370 'ext': 'mp4',
371 'format_id': '502',
372 'protocol': 'm3u8',
373 'tbr': 502,
374 'width': 480,
375 'height': 270,
376 }, {
377 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/12/pv/1/flavorId/0_vyg9pj7k/name/a.mp4/index.m3u8',
378 'manifest_url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/12/pv/1/flavorId/0_vyg9pj7k/name/a.mp4/index.m3u8',
379 'ext': 'mp4',
380 'format_id': '827',
381 'protocol': 'm3u8',
382 'tbr': 827,
383 'width': 640,
384 'height': 360,
385 }, {
386 'url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/12/pv/1/flavorId/0_50n4psvx/name/a.mp4/index.m3u8',
387 'manifest_url': 'http://k.toggle.sg/fhls/p/2082311/sp/208231100/serveFlavor/entryId/0_89q6e8ku/v/12/pv/1/flavorId/0_50n4psvx/name/a.mp4/index.m3u8',
388 'ext': 'mp4',
389 'format_id': '1396',
390 'protocol': 'm3u8',
391 'tbr': 1396,
392 'width': 854,
393 'height': 480,
394 }]
395 ),
396 (
397 # http://www.twitch.tv/riotgames/v/6528877
398 'twitch_vod',
399 'https://usher.ttvnw.net/vod/6528877?allow_source=true&allow_audio_only=true&allow_spectre=true&player=twitchweb&nauth=%7B%22user_id%22%3Anull%2C%22vod_id%22%3A6528877%2C%22expires%22%3A1492887874%2C%22chansub%22%3A%7B%22restricted_bitrates%22%3A%5B%5D%7D%2C%22privileged%22%3Afalse%2C%22https_required%22%3Afalse%7D&nauthsig=3e29296a6824a0f48f9e731383f77a614fc79bee',
400 [{
401 'url': 'https://usher.ttvnw.net/vod/6528877?allow_source=true&allow_audio_only=true&allow_spectre=true&player=twitchweb&nauth=%7B%22user_id%22%3Anull%2C%22vod_id%22%3A6528877%2C%22expires%22%3A1492887874%2C%22chansub%22%3A%7B%22restricted_bitrates%22%3A%5B%5D%7D%2C%22privileged%22%3Afalse%2C%22https_required%22%3Afalse%7D&nauthsig=3e29296a6824a0f48f9e731383f77a614fc79bee',
402 'ext': 'mp4',
403 'format_id': 'meta',
404 'format_note': 'Quality selection URL',
405 'protocol': 'm3u8',
406 'preference': -100,
407 'resolution': 'multiple'
408 }, {
409 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/audio_only/index-muted-HM49I092CC.m3u8',
410 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/audio_only/index-muted-HM49I092CC.m3u8',
411 'ext': 'mp4',
412 'format_id': 'Audio Only',
413 'protocol': 'm3u8',
414 'acodec': 'mp4a.40.2',
415 'vcodec': 'none',
416 'tbr': 182,
417 }, {
418 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/mobile/index-muted-HM49I092CC.m3u8',
419 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/mobile/index-muted-HM49I092CC.m3u8',
420 'ext': 'mp4',
421 'format_id': 'Mobile',
422 'protocol': 'm3u8',
423 'acodec': 'mp4a.40.2',
424 'vcodec': 'avc1.42C00D',
425 'tbr': 280,
426 'width': 400,
427 'height': 226,
428 }, {
429 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/low/index-muted-HM49I092CC.m3u8',
430 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/low/index-muted-HM49I092CC.m3u8',
431 'ext': 'mp4',
432 'format_id': 'Low',
433 'protocol': 'm3u8',
434 'acodec': 'mp4a.40.2',
435 'vcodec': 'avc1.42C01E',
436 'tbr': 628,
437 'width': 640,
438 'height': 360,
439 }, {
440 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/medium/index-muted-HM49I092CC.m3u8',
441 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/medium/index-muted-HM49I092CC.m3u8',
442 'ext': 'mp4',
443 'format_id': 'Medium',
444 'protocol': 'm3u8',
445 'acodec': 'mp4a.40.2',
446 'vcodec': 'avc1.42C01E',
447 'tbr': 893,
448 'width': 852,
449 'height': 480,
450 }, {
451 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/high/index-muted-HM49I092CC.m3u8',
452 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/high/index-muted-HM49I092CC.m3u8',
453 'ext': 'mp4',
454 'format_id': 'High',
455 'protocol': 'm3u8',
456 'acodec': 'mp4a.40.2',
457 'vcodec': 'avc1.42C01F',
458 'tbr': 1603,
459 'width': 1280,
460 'height': 720,
461 }, {
462 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/chunked/index-muted-HM49I092CC.m3u8',
463 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/chunked/index-muted-HM49I092CC.m3u8',
464 'ext': 'mp4',
465 'format_id': 'Source',
466 'protocol': 'm3u8',
467 'acodec': 'mp4a.40.2',
468 'vcodec': 'avc1.100.31',
469 'tbr': 3214,
470 'width': 1280,
471 'height': 720,
472 }]
473 )
474 ]
475
476 for m3u8_file, m3u8_url, expected_formats in _TEST_CASES:
477 with io.open('./test/testdata/m3u8/%s.m3u8' % m3u8_file,
478 mode='r', encoding='utf-8') as f:
479 formats = self.ie._parse_m3u8_formats(
480 f.read(), m3u8_url, ext='mp4')
481 self.ie._sort_formats(formats)
482 expect_value(self, formats, expected_formats, None)
483
582be358 484
14719565
JMF
485if __name__ == '__main__':
486 unittest.main()