]> jfr.im git - yt-dlp.git/blob - test/test_InfoExtractor.py
Don't list master m3u8 playlists in format list (closes #12832)
[yt-dlp.git] / test / test_InfoExtractor.py
1 #!/usr/bin/env python
2
3 from __future__ import unicode_literals
4
5 # Allow direct execution
6 import io
7 import os
8 import sys
9 import unittest
10 sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
11
12 from test.helper import FakeYDL, expect_dict, expect_value
13 from youtube_dl.extractor.common import InfoExtractor
14 from youtube_dl.extractor import YoutubeIE, get_info_extractor
15 from youtube_dl.utils import encode_data_uri, strip_jsonp, ExtractorError, RegexNotFoundError
16
17
18 class TestIE(InfoExtractor):
19 pass
20
21
22 class 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'/>
40 <meta content='application/x-shockwave-flash' property='og:video:type'>
41 <meta content='Foo' property=og:foobar>
42 <meta name="og:test1" content='foo > < bar'/>
43 <meta name="og:test2" content="foo >//< bar"/>
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')
48 self.assertEqual(ie._og_search_video_url(html, default=None), None)
49 self.assertEqual(ie._og_search_property('foobar', html), 'Foo')
50 self.assertEqual(ie._og_search_property('test1', html), 'foo > < bar')
51 self.assertEqual(ie._og_search_property('test2', html), 'foo >//< bar')
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)
55
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')
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)
78
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
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>
158 jwplayer("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
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/index_0_av.m3u8?null=0',
188 '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',
189 'ext': 'mp4',
190 'format_id': '180',
191 'protocol': 'm3u8',
192 'acodec': 'mp4a.40.2',
193 'vcodec': 'avc1.66.30',
194 'tbr': 180,
195 'width': 256,
196 'height': 144,
197 }, {
198 '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',
199 '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',
200 'ext': 'mp4',
201 'format_id': '303',
202 'protocol': 'm3u8',
203 'acodec': 'mp4a.40.2',
204 'vcodec': 'avc1.66.30',
205 'tbr': 303,
206 'width': 320,
207 'height': 180,
208 }, {
209 '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',
210 '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',
211 'ext': 'mp4',
212 'format_id': '575',
213 'protocol': 'm3u8',
214 'acodec': 'mp4a.40.2',
215 'vcodec': 'avc1.66.30',
216 'tbr': 575,
217 'width': 512,
218 'height': 288,
219 }, {
220 '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',
221 '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',
222 'ext': 'mp4',
223 'format_id': '831',
224 'protocol': 'm3u8',
225 'acodec': 'mp4a.40.2',
226 'vcodec': 'avc1.77.30',
227 'tbr': 831,
228 'width': 704,
229 'height': 396,
230 }, {
231 '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',
232 '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',
233 'ext': 'mp4',
234 'protocol': 'm3u8',
235 'format_id': '1467',
236 'acodec': 'mp4a.40.2',
237 'vcodec': 'avc1.77.30',
238 'tbr': 1467,
239 'width': 1024,
240 'height': 576,
241 }]
242 ),
243 (
244 # https://github.com/rg3/youtube-dl/issues/11995
245 # http://teamcoco.com/video/clueless-gamer-super-bowl-for-honor
246 'teamcoco_11995',
247 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/main.m3u8',
248 [{
249 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-160k_v4.m3u8',
250 'ext': 'mp4',
251 'format_id': 'audio-0-Default',
252 'protocol': 'm3u8',
253 'vcodec': 'none',
254 }, {
255 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-64k_v4.m3u8',
256 'ext': 'mp4',
257 'format_id': 'audio-1-Default',
258 'protocol': 'm3u8',
259 'vcodec': 'none',
260 }, {
261 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-64k_v4.m3u8',
262 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-audio-64k_v4.m3u8',
263 'ext': 'mp4',
264 'format_id': '71',
265 'protocol': 'm3u8',
266 'acodec': 'mp4a.40.5',
267 'vcodec': 'none',
268 'tbr': 71,
269 }, {
270 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
271 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
272 'ext': 'mp4',
273 'format_id': '413',
274 'protocol': 'm3u8',
275 'acodec': 'none',
276 'vcodec': 'avc1.42001e',
277 'tbr': 413,
278 'width': 400,
279 'height': 224,
280 }, {
281 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
282 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-400k_v4.m3u8',
283 'ext': 'mp4',
284 'format_id': '522',
285 'protocol': 'm3u8',
286 'acodec': 'none',
287 'vcodec': 'avc1.42001e',
288 'tbr': 522,
289 'width': 400,
290 'height': 224,
291 }, {
292 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-1m_v4.m3u8',
293 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-1m_v4.m3u8',
294 'ext': 'mp4',
295 'format_id': '1205',
296 'protocol': 'm3u8',
297 'acodec': 'none',
298 'vcodec': 'avc1.4d001e',
299 'tbr': 1205,
300 'width': 640,
301 'height': 360,
302 }, {
303 'url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-2m_v4.m3u8',
304 'manifest_url': 'http://ak.storage-w.teamcococdn.com/cdn/2017-02/98599/ed8f/hls/CONAN_020217_Highlight_show-2m_v4.m3u8',
305 'ext': 'mp4',
306 'format_id': '2374',
307 'protocol': 'm3u8',
308 'acodec': 'none',
309 'vcodec': 'avc1.4d001f',
310 'tbr': 2374,
311 'width': 1024,
312 'height': 576,
313 }]
314 ),
315 (
316 # https://github.com/rg3/youtube-dl/issues/12211
317 # http://video.toggle.sg/en/series/whoopie-s-world/ep3/478601
318 'toggle_mobile_12211',
319 'http://cdnapi.kaltura.com/p/2082311/sp/208231100/playManifest/protocol/http/entryId/0_89q6e8ku/format/applehttp/tags/mobile_sd/f/a.m3u8',
320 [{
321 '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',
322 'ext': 'mp4',
323 'format_id': 'audio-English',
324 'protocol': 'm3u8',
325 'language': 'eng',
326 'vcodec': 'none',
327 }, {
328 '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',
329 'ext': 'mp4',
330 'format_id': 'audio-Undefined',
331 'protocol': 'm3u8',
332 'language': 'und',
333 'vcodec': 'none',
334 }, {
335 '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',
336 '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',
337 'ext': 'mp4',
338 'format_id': '155',
339 'protocol': 'm3u8',
340 'tbr': 155.648,
341 'width': 320,
342 'height': 180,
343 }, {
344 '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',
345 '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',
346 'ext': 'mp4',
347 'format_id': '502',
348 'protocol': 'm3u8',
349 'tbr': 502.784,
350 'width': 480,
351 'height': 270,
352 }, {
353 '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',
354 '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',
355 'ext': 'mp4',
356 'format_id': '827',
357 'protocol': 'm3u8',
358 'tbr': 827.392,
359 'width': 640,
360 'height': 360,
361 }, {
362 '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',
363 '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',
364 'ext': 'mp4',
365 'format_id': '1396',
366 'protocol': 'm3u8',
367 'tbr': 1396.736,
368 'width': 854,
369 'height': 480,
370 }]
371 ),
372 (
373 # http://www.twitch.tv/riotgames/v/6528877
374 'twitch_vod',
375 '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',
376 [{
377 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/audio_only/index-muted-HM49I092CC.m3u8',
378 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/audio_only/index-muted-HM49I092CC.m3u8',
379 'ext': 'mp4',
380 'format_id': 'Audio Only',
381 'protocol': 'm3u8',
382 'acodec': 'mp4a.40.2',
383 'vcodec': 'none',
384 'tbr': 182.725,
385 }, {
386 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/mobile/index-muted-HM49I092CC.m3u8',
387 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/mobile/index-muted-HM49I092CC.m3u8',
388 'ext': 'mp4',
389 'format_id': 'Mobile',
390 'protocol': 'm3u8',
391 'acodec': 'mp4a.40.2',
392 'vcodec': 'avc1.42C00D',
393 'tbr': 280.474,
394 'width': 400,
395 'height': 226,
396 }, {
397 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/low/index-muted-HM49I092CC.m3u8',
398 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/low/index-muted-HM49I092CC.m3u8',
399 'ext': 'mp4',
400 'format_id': 'Low',
401 'protocol': 'm3u8',
402 'acodec': 'mp4a.40.2',
403 'vcodec': 'avc1.42C01E',
404 'tbr': 628.347,
405 'width': 640,
406 'height': 360,
407 }, {
408 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/medium/index-muted-HM49I092CC.m3u8',
409 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/medium/index-muted-HM49I092CC.m3u8',
410 'ext': 'mp4',
411 'format_id': 'Medium',
412 'protocol': 'm3u8',
413 'acodec': 'mp4a.40.2',
414 'vcodec': 'avc1.42C01E',
415 'tbr': 893.387,
416 'width': 852,
417 'height': 480,
418 }, {
419 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/high/index-muted-HM49I092CC.m3u8',
420 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/high/index-muted-HM49I092CC.m3u8',
421 'ext': 'mp4',
422 'format_id': 'High',
423 'protocol': 'm3u8',
424 'acodec': 'mp4a.40.2',
425 'vcodec': 'avc1.42C01F',
426 'tbr': 1603.789,
427 'width': 1280,
428 'height': 720,
429 }, {
430 'url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/chunked/index-muted-HM49I092CC.m3u8',
431 'manifest_url': 'https://vod.edgecast.hls.ttvnw.net/e5da31ab49_riotgames_15001215120_261543898/chunked/index-muted-HM49I092CC.m3u8',
432 'ext': 'mp4',
433 'format_id': 'Source',
434 'protocol': 'm3u8',
435 'acodec': 'mp4a.40.2',
436 'vcodec': 'avc1.100.31',
437 'tbr': 3214.134,
438 'width': 1280,
439 'height': 720,
440 }]
441 ),
442 (
443 # http://www.vidio.com/watch/165683-dj_ambred-booyah-live-2015
444 # EXT-X-STREAM-INF tag with NAME attribute that is not defined
445 # in HLS specification
446 'vidio',
447 'https://www.vidio.com/videos/165683/playlist.m3u8',
448 [{
449 'url': 'https://cdn1-a.production.vidio.static6.com/uploads/165683/dj_ambred-4383-b300.mp4.m3u8',
450 'manifest_url': 'https://cdn1-a.production.vidio.static6.com/uploads/165683/dj_ambred-4383-b300.mp4.m3u8',
451 'ext': 'mp4',
452 'format_id': '270p 3G',
453 'protocol': 'm3u8',
454 'tbr': 300,
455 'width': 480,
456 'height': 270,
457 }, {
458 'url': 'https://cdn1-a.production.vidio.static6.com/uploads/165683/dj_ambred-4383-b600.mp4.m3u8',
459 'manifest_url': 'https://cdn1-a.production.vidio.static6.com/uploads/165683/dj_ambred-4383-b600.mp4.m3u8',
460 'ext': 'mp4',
461 'format_id': '360p SD',
462 'protocol': 'm3u8',
463 'tbr': 600,
464 'width': 640,
465 'height': 360,
466 }, {
467 'url': 'https://cdn1-a.production.vidio.static6.com/uploads/165683/dj_ambred-4383-b1200.mp4.m3u8',
468 'manifest_url': 'https://cdn1-a.production.vidio.static6.com/uploads/165683/dj_ambred-4383-b1200.mp4.m3u8',
469 'ext': 'mp4',
470 'format_id': '720p HD',
471 'protocol': 'm3u8',
472 'tbr': 1200,
473 'width': 1280,
474 'height': 720,
475 }]
476 )
477 ]
478
479 for m3u8_file, m3u8_url, expected_formats in _TEST_CASES:
480 with io.open('./test/testdata/m3u8/%s.m3u8' % m3u8_file,
481 mode='r', encoding='utf-8') as f:
482 formats = self.ie._parse_m3u8_formats(
483 f.read(), m3u8_url, ext='mp4')
484 self.ie._sort_formats(formats)
485 expect_value(self, formats, expected_formats, None)
486
487
488 if __name__ == '__main__':
489 unittest.main()