]> jfr.im git - yt-dlp.git/blob - yt_dlp/utils.py
Option `--wait-for-video` to wait for scheduled streams
[yt-dlp.git] / yt_dlp / utils.py
1 #!/usr/bin/env python3
2 # coding: utf-8
3
4 from __future__ import unicode_literals
5
6 import base64
7 import binascii
8 import calendar
9 import codecs
10 import collections
11 import contextlib
12 import ctypes
13 import datetime
14 import email.utils
15 import email.header
16 import errno
17 import functools
18 import gzip
19 import hashlib
20 import hmac
21 import importlib.util
22 import io
23 import itertools
24 import json
25 import locale
26 import math
27 import operator
28 import os
29 import platform
30 import random
31 import re
32 import socket
33 import ssl
34 import subprocess
35 import sys
36 import tempfile
37 import time
38 import traceback
39 import xml.etree.ElementTree
40 import zlib
41
42 from .compat import (
43 compat_HTMLParseError,
44 compat_HTMLParser,
45 compat_HTTPError,
46 compat_basestring,
47 compat_chr,
48 compat_cookiejar,
49 compat_ctypes_WINFUNCTYPE,
50 compat_etree_fromstring,
51 compat_expanduser,
52 compat_html_entities,
53 compat_html_entities_html5,
54 compat_http_client,
55 compat_integer_types,
56 compat_numeric_types,
57 compat_kwargs,
58 compat_os_name,
59 compat_parse_qs,
60 compat_shlex_quote,
61 compat_str,
62 compat_struct_pack,
63 compat_struct_unpack,
64 compat_urllib_error,
65 compat_urllib_parse,
66 compat_urllib_parse_urlencode,
67 compat_urllib_parse_urlparse,
68 compat_urllib_parse_urlunparse,
69 compat_urllib_parse_quote,
70 compat_urllib_parse_quote_plus,
71 compat_urllib_parse_unquote_plus,
72 compat_urllib_request,
73 compat_urlparse,
74 compat_xpath,
75 )
76
77 from .socks import (
78 ProxyType,
79 sockssocket,
80 )
81
82
83 def register_socks_protocols():
84 # "Register" SOCKS protocols
85 # In Python < 2.6.5, urlsplit() suffers from bug https://bugs.python.org/issue7904
86 # URLs with protocols not in urlparse.uses_netloc are not handled correctly
87 for scheme in ('socks', 'socks4', 'socks4a', 'socks5'):
88 if scheme not in compat_urlparse.uses_netloc:
89 compat_urlparse.uses_netloc.append(scheme)
90
91
92 # This is not clearly defined otherwise
93 compiled_regex_type = type(re.compile(''))
94
95
96 def random_user_agent():
97 _USER_AGENT_TPL = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/%s Safari/537.36'
98 _CHROME_VERSIONS = (
99 '74.0.3729.129',
100 '76.0.3780.3',
101 '76.0.3780.2',
102 '74.0.3729.128',
103 '76.0.3780.1',
104 '76.0.3780.0',
105 '75.0.3770.15',
106 '74.0.3729.127',
107 '74.0.3729.126',
108 '76.0.3779.1',
109 '76.0.3779.0',
110 '75.0.3770.14',
111 '74.0.3729.125',
112 '76.0.3778.1',
113 '76.0.3778.0',
114 '75.0.3770.13',
115 '74.0.3729.124',
116 '74.0.3729.123',
117 '73.0.3683.121',
118 '76.0.3777.1',
119 '76.0.3777.0',
120 '75.0.3770.12',
121 '74.0.3729.122',
122 '76.0.3776.4',
123 '75.0.3770.11',
124 '74.0.3729.121',
125 '76.0.3776.3',
126 '76.0.3776.2',
127 '73.0.3683.120',
128 '74.0.3729.120',
129 '74.0.3729.119',
130 '74.0.3729.118',
131 '76.0.3776.1',
132 '76.0.3776.0',
133 '76.0.3775.5',
134 '75.0.3770.10',
135 '74.0.3729.117',
136 '76.0.3775.4',
137 '76.0.3775.3',
138 '74.0.3729.116',
139 '75.0.3770.9',
140 '76.0.3775.2',
141 '76.0.3775.1',
142 '76.0.3775.0',
143 '75.0.3770.8',
144 '74.0.3729.115',
145 '74.0.3729.114',
146 '76.0.3774.1',
147 '76.0.3774.0',
148 '75.0.3770.7',
149 '74.0.3729.113',
150 '74.0.3729.112',
151 '74.0.3729.111',
152 '76.0.3773.1',
153 '76.0.3773.0',
154 '75.0.3770.6',
155 '74.0.3729.110',
156 '74.0.3729.109',
157 '76.0.3772.1',
158 '76.0.3772.0',
159 '75.0.3770.5',
160 '74.0.3729.108',
161 '74.0.3729.107',
162 '76.0.3771.1',
163 '76.0.3771.0',
164 '75.0.3770.4',
165 '74.0.3729.106',
166 '74.0.3729.105',
167 '75.0.3770.3',
168 '74.0.3729.104',
169 '74.0.3729.103',
170 '74.0.3729.102',
171 '75.0.3770.2',
172 '74.0.3729.101',
173 '75.0.3770.1',
174 '75.0.3770.0',
175 '74.0.3729.100',
176 '75.0.3769.5',
177 '75.0.3769.4',
178 '74.0.3729.99',
179 '75.0.3769.3',
180 '75.0.3769.2',
181 '75.0.3768.6',
182 '74.0.3729.98',
183 '75.0.3769.1',
184 '75.0.3769.0',
185 '74.0.3729.97',
186 '73.0.3683.119',
187 '73.0.3683.118',
188 '74.0.3729.96',
189 '75.0.3768.5',
190 '75.0.3768.4',
191 '75.0.3768.3',
192 '75.0.3768.2',
193 '74.0.3729.95',
194 '74.0.3729.94',
195 '75.0.3768.1',
196 '75.0.3768.0',
197 '74.0.3729.93',
198 '74.0.3729.92',
199 '73.0.3683.117',
200 '74.0.3729.91',
201 '75.0.3766.3',
202 '74.0.3729.90',
203 '75.0.3767.2',
204 '75.0.3767.1',
205 '75.0.3767.0',
206 '74.0.3729.89',
207 '73.0.3683.116',
208 '75.0.3766.2',
209 '74.0.3729.88',
210 '75.0.3766.1',
211 '75.0.3766.0',
212 '74.0.3729.87',
213 '73.0.3683.115',
214 '74.0.3729.86',
215 '75.0.3765.1',
216 '75.0.3765.0',
217 '74.0.3729.85',
218 '73.0.3683.114',
219 '74.0.3729.84',
220 '75.0.3764.1',
221 '75.0.3764.0',
222 '74.0.3729.83',
223 '73.0.3683.113',
224 '75.0.3763.2',
225 '75.0.3761.4',
226 '74.0.3729.82',
227 '75.0.3763.1',
228 '75.0.3763.0',
229 '74.0.3729.81',
230 '73.0.3683.112',
231 '75.0.3762.1',
232 '75.0.3762.0',
233 '74.0.3729.80',
234 '75.0.3761.3',
235 '74.0.3729.79',
236 '73.0.3683.111',
237 '75.0.3761.2',
238 '74.0.3729.78',
239 '74.0.3729.77',
240 '75.0.3761.1',
241 '75.0.3761.0',
242 '73.0.3683.110',
243 '74.0.3729.76',
244 '74.0.3729.75',
245 '75.0.3760.0',
246 '74.0.3729.74',
247 '75.0.3759.8',
248 '75.0.3759.7',
249 '75.0.3759.6',
250 '74.0.3729.73',
251 '75.0.3759.5',
252 '74.0.3729.72',
253 '73.0.3683.109',
254 '75.0.3759.4',
255 '75.0.3759.3',
256 '74.0.3729.71',
257 '75.0.3759.2',
258 '74.0.3729.70',
259 '73.0.3683.108',
260 '74.0.3729.69',
261 '75.0.3759.1',
262 '75.0.3759.0',
263 '74.0.3729.68',
264 '73.0.3683.107',
265 '74.0.3729.67',
266 '75.0.3758.1',
267 '75.0.3758.0',
268 '74.0.3729.66',
269 '73.0.3683.106',
270 '74.0.3729.65',
271 '75.0.3757.1',
272 '75.0.3757.0',
273 '74.0.3729.64',
274 '73.0.3683.105',
275 '74.0.3729.63',
276 '75.0.3756.1',
277 '75.0.3756.0',
278 '74.0.3729.62',
279 '73.0.3683.104',
280 '75.0.3755.3',
281 '75.0.3755.2',
282 '73.0.3683.103',
283 '75.0.3755.1',
284 '75.0.3755.0',
285 '74.0.3729.61',
286 '73.0.3683.102',
287 '74.0.3729.60',
288 '75.0.3754.2',
289 '74.0.3729.59',
290 '75.0.3753.4',
291 '74.0.3729.58',
292 '75.0.3754.1',
293 '75.0.3754.0',
294 '74.0.3729.57',
295 '73.0.3683.101',
296 '75.0.3753.3',
297 '75.0.3752.2',
298 '75.0.3753.2',
299 '74.0.3729.56',
300 '75.0.3753.1',
301 '75.0.3753.0',
302 '74.0.3729.55',
303 '73.0.3683.100',
304 '74.0.3729.54',
305 '75.0.3752.1',
306 '75.0.3752.0',
307 '74.0.3729.53',
308 '73.0.3683.99',
309 '74.0.3729.52',
310 '75.0.3751.1',
311 '75.0.3751.0',
312 '74.0.3729.51',
313 '73.0.3683.98',
314 '74.0.3729.50',
315 '75.0.3750.0',
316 '74.0.3729.49',
317 '74.0.3729.48',
318 '74.0.3729.47',
319 '75.0.3749.3',
320 '74.0.3729.46',
321 '73.0.3683.97',
322 '75.0.3749.2',
323 '74.0.3729.45',
324 '75.0.3749.1',
325 '75.0.3749.0',
326 '74.0.3729.44',
327 '73.0.3683.96',
328 '74.0.3729.43',
329 '74.0.3729.42',
330 '75.0.3748.1',
331 '75.0.3748.0',
332 '74.0.3729.41',
333 '75.0.3747.1',
334 '73.0.3683.95',
335 '75.0.3746.4',
336 '74.0.3729.40',
337 '74.0.3729.39',
338 '75.0.3747.0',
339 '75.0.3746.3',
340 '75.0.3746.2',
341 '74.0.3729.38',
342 '75.0.3746.1',
343 '75.0.3746.0',
344 '74.0.3729.37',
345 '73.0.3683.94',
346 '75.0.3745.5',
347 '75.0.3745.4',
348 '75.0.3745.3',
349 '75.0.3745.2',
350 '74.0.3729.36',
351 '75.0.3745.1',
352 '75.0.3745.0',
353 '75.0.3744.2',
354 '74.0.3729.35',
355 '73.0.3683.93',
356 '74.0.3729.34',
357 '75.0.3744.1',
358 '75.0.3744.0',
359 '74.0.3729.33',
360 '73.0.3683.92',
361 '74.0.3729.32',
362 '74.0.3729.31',
363 '73.0.3683.91',
364 '75.0.3741.2',
365 '75.0.3740.5',
366 '74.0.3729.30',
367 '75.0.3741.1',
368 '75.0.3741.0',
369 '74.0.3729.29',
370 '75.0.3740.4',
371 '73.0.3683.90',
372 '74.0.3729.28',
373 '75.0.3740.3',
374 '73.0.3683.89',
375 '75.0.3740.2',
376 '74.0.3729.27',
377 '75.0.3740.1',
378 '75.0.3740.0',
379 '74.0.3729.26',
380 '73.0.3683.88',
381 '73.0.3683.87',
382 '74.0.3729.25',
383 '75.0.3739.1',
384 '75.0.3739.0',
385 '73.0.3683.86',
386 '74.0.3729.24',
387 '73.0.3683.85',
388 '75.0.3738.4',
389 '75.0.3738.3',
390 '75.0.3738.2',
391 '75.0.3738.1',
392 '75.0.3738.0',
393 '74.0.3729.23',
394 '73.0.3683.84',
395 '74.0.3729.22',
396 '74.0.3729.21',
397 '75.0.3737.1',
398 '75.0.3737.0',
399 '74.0.3729.20',
400 '73.0.3683.83',
401 '74.0.3729.19',
402 '75.0.3736.1',
403 '75.0.3736.0',
404 '74.0.3729.18',
405 '73.0.3683.82',
406 '74.0.3729.17',
407 '75.0.3735.1',
408 '75.0.3735.0',
409 '74.0.3729.16',
410 '73.0.3683.81',
411 '75.0.3734.1',
412 '75.0.3734.0',
413 '74.0.3729.15',
414 '73.0.3683.80',
415 '74.0.3729.14',
416 '75.0.3733.1',
417 '75.0.3733.0',
418 '75.0.3732.1',
419 '74.0.3729.13',
420 '74.0.3729.12',
421 '73.0.3683.79',
422 '74.0.3729.11',
423 '75.0.3732.0',
424 '74.0.3729.10',
425 '73.0.3683.78',
426 '74.0.3729.9',
427 '74.0.3729.8',
428 '74.0.3729.7',
429 '75.0.3731.3',
430 '75.0.3731.2',
431 '75.0.3731.0',
432 '74.0.3729.6',
433 '73.0.3683.77',
434 '73.0.3683.76',
435 '75.0.3730.5',
436 '75.0.3730.4',
437 '73.0.3683.75',
438 '74.0.3729.5',
439 '73.0.3683.74',
440 '75.0.3730.3',
441 '75.0.3730.2',
442 '74.0.3729.4',
443 '73.0.3683.73',
444 '73.0.3683.72',
445 '75.0.3730.1',
446 '75.0.3730.0',
447 '74.0.3729.3',
448 '73.0.3683.71',
449 '74.0.3729.2',
450 '73.0.3683.70',
451 '74.0.3729.1',
452 '74.0.3729.0',
453 '74.0.3726.4',
454 '73.0.3683.69',
455 '74.0.3726.3',
456 '74.0.3728.0',
457 '74.0.3726.2',
458 '73.0.3683.68',
459 '74.0.3726.1',
460 '74.0.3726.0',
461 '74.0.3725.4',
462 '73.0.3683.67',
463 '73.0.3683.66',
464 '74.0.3725.3',
465 '74.0.3725.2',
466 '74.0.3725.1',
467 '74.0.3724.8',
468 '74.0.3725.0',
469 '73.0.3683.65',
470 '74.0.3724.7',
471 '74.0.3724.6',
472 '74.0.3724.5',
473 '74.0.3724.4',
474 '74.0.3724.3',
475 '74.0.3724.2',
476 '74.0.3724.1',
477 '74.0.3724.0',
478 '73.0.3683.64',
479 '74.0.3723.1',
480 '74.0.3723.0',
481 '73.0.3683.63',
482 '74.0.3722.1',
483 '74.0.3722.0',
484 '73.0.3683.62',
485 '74.0.3718.9',
486 '74.0.3702.3',
487 '74.0.3721.3',
488 '74.0.3721.2',
489 '74.0.3721.1',
490 '74.0.3721.0',
491 '74.0.3720.6',
492 '73.0.3683.61',
493 '72.0.3626.122',
494 '73.0.3683.60',
495 '74.0.3720.5',
496 '72.0.3626.121',
497 '74.0.3718.8',
498 '74.0.3720.4',
499 '74.0.3720.3',
500 '74.0.3718.7',
501 '74.0.3720.2',
502 '74.0.3720.1',
503 '74.0.3720.0',
504 '74.0.3718.6',
505 '74.0.3719.5',
506 '73.0.3683.59',
507 '74.0.3718.5',
508 '74.0.3718.4',
509 '74.0.3719.4',
510 '74.0.3719.3',
511 '74.0.3719.2',
512 '74.0.3719.1',
513 '73.0.3683.58',
514 '74.0.3719.0',
515 '73.0.3683.57',
516 '73.0.3683.56',
517 '74.0.3718.3',
518 '73.0.3683.55',
519 '74.0.3718.2',
520 '74.0.3718.1',
521 '74.0.3718.0',
522 '73.0.3683.54',
523 '74.0.3717.2',
524 '73.0.3683.53',
525 '74.0.3717.1',
526 '74.0.3717.0',
527 '73.0.3683.52',
528 '74.0.3716.1',
529 '74.0.3716.0',
530 '73.0.3683.51',
531 '74.0.3715.1',
532 '74.0.3715.0',
533 '73.0.3683.50',
534 '74.0.3711.2',
535 '74.0.3714.2',
536 '74.0.3713.3',
537 '74.0.3714.1',
538 '74.0.3714.0',
539 '73.0.3683.49',
540 '74.0.3713.1',
541 '74.0.3713.0',
542 '72.0.3626.120',
543 '73.0.3683.48',
544 '74.0.3712.2',
545 '74.0.3712.1',
546 '74.0.3712.0',
547 '73.0.3683.47',
548 '72.0.3626.119',
549 '73.0.3683.46',
550 '74.0.3710.2',
551 '72.0.3626.118',
552 '74.0.3711.1',
553 '74.0.3711.0',
554 '73.0.3683.45',
555 '72.0.3626.117',
556 '74.0.3710.1',
557 '74.0.3710.0',
558 '73.0.3683.44',
559 '72.0.3626.116',
560 '74.0.3709.1',
561 '74.0.3709.0',
562 '74.0.3704.9',
563 '73.0.3683.43',
564 '72.0.3626.115',
565 '74.0.3704.8',
566 '74.0.3704.7',
567 '74.0.3708.0',
568 '74.0.3706.7',
569 '74.0.3704.6',
570 '73.0.3683.42',
571 '72.0.3626.114',
572 '74.0.3706.6',
573 '72.0.3626.113',
574 '74.0.3704.5',
575 '74.0.3706.5',
576 '74.0.3706.4',
577 '74.0.3706.3',
578 '74.0.3706.2',
579 '74.0.3706.1',
580 '74.0.3706.0',
581 '73.0.3683.41',
582 '72.0.3626.112',
583 '74.0.3705.1',
584 '74.0.3705.0',
585 '73.0.3683.40',
586 '72.0.3626.111',
587 '73.0.3683.39',
588 '74.0.3704.4',
589 '73.0.3683.38',
590 '74.0.3704.3',
591 '74.0.3704.2',
592 '74.0.3704.1',
593 '74.0.3704.0',
594 '73.0.3683.37',
595 '72.0.3626.110',
596 '72.0.3626.109',
597 '74.0.3703.3',
598 '74.0.3703.2',
599 '73.0.3683.36',
600 '74.0.3703.1',
601 '74.0.3703.0',
602 '73.0.3683.35',
603 '72.0.3626.108',
604 '74.0.3702.2',
605 '74.0.3699.3',
606 '74.0.3702.1',
607 '74.0.3702.0',
608 '73.0.3683.34',
609 '72.0.3626.107',
610 '73.0.3683.33',
611 '74.0.3701.1',
612 '74.0.3701.0',
613 '73.0.3683.32',
614 '73.0.3683.31',
615 '72.0.3626.105',
616 '74.0.3700.1',
617 '74.0.3700.0',
618 '73.0.3683.29',
619 '72.0.3626.103',
620 '74.0.3699.2',
621 '74.0.3699.1',
622 '74.0.3699.0',
623 '73.0.3683.28',
624 '72.0.3626.102',
625 '73.0.3683.27',
626 '73.0.3683.26',
627 '74.0.3698.0',
628 '74.0.3696.2',
629 '72.0.3626.101',
630 '73.0.3683.25',
631 '74.0.3696.1',
632 '74.0.3696.0',
633 '74.0.3694.8',
634 '72.0.3626.100',
635 '74.0.3694.7',
636 '74.0.3694.6',
637 '74.0.3694.5',
638 '74.0.3694.4',
639 '72.0.3626.99',
640 '72.0.3626.98',
641 '74.0.3694.3',
642 '73.0.3683.24',
643 '72.0.3626.97',
644 '72.0.3626.96',
645 '72.0.3626.95',
646 '73.0.3683.23',
647 '72.0.3626.94',
648 '73.0.3683.22',
649 '73.0.3683.21',
650 '72.0.3626.93',
651 '74.0.3694.2',
652 '72.0.3626.92',
653 '74.0.3694.1',
654 '74.0.3694.0',
655 '74.0.3693.6',
656 '73.0.3683.20',
657 '72.0.3626.91',
658 '74.0.3693.5',
659 '74.0.3693.4',
660 '74.0.3693.3',
661 '74.0.3693.2',
662 '73.0.3683.19',
663 '74.0.3693.1',
664 '74.0.3693.0',
665 '73.0.3683.18',
666 '72.0.3626.90',
667 '74.0.3692.1',
668 '74.0.3692.0',
669 '73.0.3683.17',
670 '72.0.3626.89',
671 '74.0.3687.3',
672 '74.0.3691.1',
673 '74.0.3691.0',
674 '73.0.3683.16',
675 '72.0.3626.88',
676 '72.0.3626.87',
677 '73.0.3683.15',
678 '74.0.3690.1',
679 '74.0.3690.0',
680 '73.0.3683.14',
681 '72.0.3626.86',
682 '73.0.3683.13',
683 '73.0.3683.12',
684 '74.0.3689.1',
685 '74.0.3689.0',
686 '73.0.3683.11',
687 '72.0.3626.85',
688 '73.0.3683.10',
689 '72.0.3626.84',
690 '73.0.3683.9',
691 '74.0.3688.1',
692 '74.0.3688.0',
693 '73.0.3683.8',
694 '72.0.3626.83',
695 '74.0.3687.2',
696 '74.0.3687.1',
697 '74.0.3687.0',
698 '73.0.3683.7',
699 '72.0.3626.82',
700 '74.0.3686.4',
701 '72.0.3626.81',
702 '74.0.3686.3',
703 '74.0.3686.2',
704 '74.0.3686.1',
705 '74.0.3686.0',
706 '73.0.3683.6',
707 '72.0.3626.80',
708 '74.0.3685.1',
709 '74.0.3685.0',
710 '73.0.3683.5',
711 '72.0.3626.79',
712 '74.0.3684.1',
713 '74.0.3684.0',
714 '73.0.3683.4',
715 '72.0.3626.78',
716 '72.0.3626.77',
717 '73.0.3683.3',
718 '73.0.3683.2',
719 '72.0.3626.76',
720 '73.0.3683.1',
721 '73.0.3683.0',
722 '72.0.3626.75',
723 '71.0.3578.141',
724 '73.0.3682.1',
725 '73.0.3682.0',
726 '72.0.3626.74',
727 '71.0.3578.140',
728 '73.0.3681.4',
729 '73.0.3681.3',
730 '73.0.3681.2',
731 '73.0.3681.1',
732 '73.0.3681.0',
733 '72.0.3626.73',
734 '71.0.3578.139',
735 '72.0.3626.72',
736 '72.0.3626.71',
737 '73.0.3680.1',
738 '73.0.3680.0',
739 '72.0.3626.70',
740 '71.0.3578.138',
741 '73.0.3678.2',
742 '73.0.3679.1',
743 '73.0.3679.0',
744 '72.0.3626.69',
745 '71.0.3578.137',
746 '73.0.3678.1',
747 '73.0.3678.0',
748 '71.0.3578.136',
749 '73.0.3677.1',
750 '73.0.3677.0',
751 '72.0.3626.68',
752 '72.0.3626.67',
753 '71.0.3578.135',
754 '73.0.3676.1',
755 '73.0.3676.0',
756 '73.0.3674.2',
757 '72.0.3626.66',
758 '71.0.3578.134',
759 '73.0.3674.1',
760 '73.0.3674.0',
761 '72.0.3626.65',
762 '71.0.3578.133',
763 '73.0.3673.2',
764 '73.0.3673.1',
765 '73.0.3673.0',
766 '72.0.3626.64',
767 '71.0.3578.132',
768 '72.0.3626.63',
769 '72.0.3626.62',
770 '72.0.3626.61',
771 '72.0.3626.60',
772 '73.0.3672.1',
773 '73.0.3672.0',
774 '72.0.3626.59',
775 '71.0.3578.131',
776 '73.0.3671.3',
777 '73.0.3671.2',
778 '73.0.3671.1',
779 '73.0.3671.0',
780 '72.0.3626.58',
781 '71.0.3578.130',
782 '73.0.3670.1',
783 '73.0.3670.0',
784 '72.0.3626.57',
785 '71.0.3578.129',
786 '73.0.3669.1',
787 '73.0.3669.0',
788 '72.0.3626.56',
789 '71.0.3578.128',
790 '73.0.3668.2',
791 '73.0.3668.1',
792 '73.0.3668.0',
793 '72.0.3626.55',
794 '71.0.3578.127',
795 '73.0.3667.2',
796 '73.0.3667.1',
797 '73.0.3667.0',
798 '72.0.3626.54',
799 '71.0.3578.126',
800 '73.0.3666.1',
801 '73.0.3666.0',
802 '72.0.3626.53',
803 '71.0.3578.125',
804 '73.0.3665.4',
805 '73.0.3665.3',
806 '72.0.3626.52',
807 '73.0.3665.2',
808 '73.0.3664.4',
809 '73.0.3665.1',
810 '73.0.3665.0',
811 '72.0.3626.51',
812 '71.0.3578.124',
813 '72.0.3626.50',
814 '73.0.3664.3',
815 '73.0.3664.2',
816 '73.0.3664.1',
817 '73.0.3664.0',
818 '73.0.3663.2',
819 '72.0.3626.49',
820 '71.0.3578.123',
821 '73.0.3663.1',
822 '73.0.3663.0',
823 '72.0.3626.48',
824 '71.0.3578.122',
825 '73.0.3662.1',
826 '73.0.3662.0',
827 '72.0.3626.47',
828 '71.0.3578.121',
829 '73.0.3661.1',
830 '72.0.3626.46',
831 '73.0.3661.0',
832 '72.0.3626.45',
833 '71.0.3578.120',
834 '73.0.3660.2',
835 '73.0.3660.1',
836 '73.0.3660.0',
837 '72.0.3626.44',
838 '71.0.3578.119',
839 '73.0.3659.1',
840 '73.0.3659.0',
841 '72.0.3626.43',
842 '71.0.3578.118',
843 '73.0.3658.1',
844 '73.0.3658.0',
845 '72.0.3626.42',
846 '71.0.3578.117',
847 '73.0.3657.1',
848 '73.0.3657.0',
849 '72.0.3626.41',
850 '71.0.3578.116',
851 '73.0.3656.1',
852 '73.0.3656.0',
853 '72.0.3626.40',
854 '71.0.3578.115',
855 '73.0.3655.1',
856 '73.0.3655.0',
857 '72.0.3626.39',
858 '71.0.3578.114',
859 '73.0.3654.1',
860 '73.0.3654.0',
861 '72.0.3626.38',
862 '71.0.3578.113',
863 '73.0.3653.1',
864 '73.0.3653.0',
865 '72.0.3626.37',
866 '71.0.3578.112',
867 '73.0.3652.1',
868 '73.0.3652.0',
869 '72.0.3626.36',
870 '71.0.3578.111',
871 '73.0.3651.1',
872 '73.0.3651.0',
873 '72.0.3626.35',
874 '71.0.3578.110',
875 '73.0.3650.1',
876 '73.0.3650.0',
877 '72.0.3626.34',
878 '71.0.3578.109',
879 '73.0.3649.1',
880 '73.0.3649.0',
881 '72.0.3626.33',
882 '71.0.3578.108',
883 '73.0.3648.2',
884 '73.0.3648.1',
885 '73.0.3648.0',
886 '72.0.3626.32',
887 '71.0.3578.107',
888 '73.0.3647.2',
889 '73.0.3647.1',
890 '73.0.3647.0',
891 '72.0.3626.31',
892 '71.0.3578.106',
893 '73.0.3635.3',
894 '73.0.3646.2',
895 '73.0.3646.1',
896 '73.0.3646.0',
897 '72.0.3626.30',
898 '71.0.3578.105',
899 '72.0.3626.29',
900 '73.0.3645.2',
901 '73.0.3645.1',
902 '73.0.3645.0',
903 '72.0.3626.28',
904 '71.0.3578.104',
905 '72.0.3626.27',
906 '72.0.3626.26',
907 '72.0.3626.25',
908 '72.0.3626.24',
909 '73.0.3644.0',
910 '73.0.3643.2',
911 '72.0.3626.23',
912 '71.0.3578.103',
913 '73.0.3643.1',
914 '73.0.3643.0',
915 '72.0.3626.22',
916 '71.0.3578.102',
917 '73.0.3642.1',
918 '73.0.3642.0',
919 '72.0.3626.21',
920 '71.0.3578.101',
921 '73.0.3641.1',
922 '73.0.3641.0',
923 '72.0.3626.20',
924 '71.0.3578.100',
925 '72.0.3626.19',
926 '73.0.3640.1',
927 '73.0.3640.0',
928 '72.0.3626.18',
929 '73.0.3639.1',
930 '71.0.3578.99',
931 '73.0.3639.0',
932 '72.0.3626.17',
933 '73.0.3638.2',
934 '72.0.3626.16',
935 '73.0.3638.1',
936 '73.0.3638.0',
937 '72.0.3626.15',
938 '71.0.3578.98',
939 '73.0.3635.2',
940 '71.0.3578.97',
941 '73.0.3637.1',
942 '73.0.3637.0',
943 '72.0.3626.14',
944 '71.0.3578.96',
945 '71.0.3578.95',
946 '72.0.3626.13',
947 '71.0.3578.94',
948 '73.0.3636.2',
949 '71.0.3578.93',
950 '73.0.3636.1',
951 '73.0.3636.0',
952 '72.0.3626.12',
953 '71.0.3578.92',
954 '73.0.3635.1',
955 '73.0.3635.0',
956 '72.0.3626.11',
957 '71.0.3578.91',
958 '73.0.3634.2',
959 '73.0.3634.1',
960 '73.0.3634.0',
961 '72.0.3626.10',
962 '71.0.3578.90',
963 '71.0.3578.89',
964 '73.0.3633.2',
965 '73.0.3633.1',
966 '73.0.3633.0',
967 '72.0.3610.4',
968 '72.0.3626.9',
969 '71.0.3578.88',
970 '73.0.3632.5',
971 '73.0.3632.4',
972 '73.0.3632.3',
973 '73.0.3632.2',
974 '73.0.3632.1',
975 '73.0.3632.0',
976 '72.0.3626.8',
977 '71.0.3578.87',
978 '73.0.3631.2',
979 '73.0.3631.1',
980 '73.0.3631.0',
981 '72.0.3626.7',
982 '71.0.3578.86',
983 '72.0.3626.6',
984 '73.0.3630.1',
985 '73.0.3630.0',
986 '72.0.3626.5',
987 '71.0.3578.85',
988 '72.0.3626.4',
989 '73.0.3628.3',
990 '73.0.3628.2',
991 '73.0.3629.1',
992 '73.0.3629.0',
993 '72.0.3626.3',
994 '71.0.3578.84',
995 '73.0.3628.1',
996 '73.0.3628.0',
997 '71.0.3578.83',
998 '73.0.3627.1',
999 '73.0.3627.0',
1000 '72.0.3626.2',
1001 '71.0.3578.82',
1002 '71.0.3578.81',
1003 '71.0.3578.80',
1004 '72.0.3626.1',
1005 '72.0.3626.0',
1006 '71.0.3578.79',
1007 '70.0.3538.124',
1008 '71.0.3578.78',
1009 '72.0.3623.4',
1010 '72.0.3625.2',
1011 '72.0.3625.1',
1012 '72.0.3625.0',
1013 '71.0.3578.77',
1014 '70.0.3538.123',
1015 '72.0.3624.4',
1016 '72.0.3624.3',
1017 '72.0.3624.2',
1018 '71.0.3578.76',
1019 '72.0.3624.1',
1020 '72.0.3624.0',
1021 '72.0.3623.3',
1022 '71.0.3578.75',
1023 '70.0.3538.122',
1024 '71.0.3578.74',
1025 '72.0.3623.2',
1026 '72.0.3610.3',
1027 '72.0.3623.1',
1028 '72.0.3623.0',
1029 '72.0.3622.3',
1030 '72.0.3622.2',
1031 '71.0.3578.73',
1032 '70.0.3538.121',
1033 '72.0.3622.1',
1034 '72.0.3622.0',
1035 '71.0.3578.72',
1036 '70.0.3538.120',
1037 '72.0.3621.1',
1038 '72.0.3621.0',
1039 '71.0.3578.71',
1040 '70.0.3538.119',
1041 '72.0.3620.1',
1042 '72.0.3620.0',
1043 '71.0.3578.70',
1044 '70.0.3538.118',
1045 '71.0.3578.69',
1046 '72.0.3619.1',
1047 '72.0.3619.0',
1048 '71.0.3578.68',
1049 '70.0.3538.117',
1050 '71.0.3578.67',
1051 '72.0.3618.1',
1052 '72.0.3618.0',
1053 '71.0.3578.66',
1054 '70.0.3538.116',
1055 '72.0.3617.1',
1056 '72.0.3617.0',
1057 '71.0.3578.65',
1058 '70.0.3538.115',
1059 '72.0.3602.3',
1060 '71.0.3578.64',
1061 '72.0.3616.1',
1062 '72.0.3616.0',
1063 '71.0.3578.63',
1064 '70.0.3538.114',
1065 '71.0.3578.62',
1066 '72.0.3615.1',
1067 '72.0.3615.0',
1068 '71.0.3578.61',
1069 '70.0.3538.113',
1070 '72.0.3614.1',
1071 '72.0.3614.0',
1072 '71.0.3578.60',
1073 '70.0.3538.112',
1074 '72.0.3613.1',
1075 '72.0.3613.0',
1076 '71.0.3578.59',
1077 '70.0.3538.111',
1078 '72.0.3612.2',
1079 '72.0.3612.1',
1080 '72.0.3612.0',
1081 '70.0.3538.110',
1082 '71.0.3578.58',
1083 '70.0.3538.109',
1084 '72.0.3611.2',
1085 '72.0.3611.1',
1086 '72.0.3611.0',
1087 '71.0.3578.57',
1088 '70.0.3538.108',
1089 '72.0.3610.2',
1090 '71.0.3578.56',
1091 '71.0.3578.55',
1092 '72.0.3610.1',
1093 '72.0.3610.0',
1094 '71.0.3578.54',
1095 '70.0.3538.107',
1096 '71.0.3578.53',
1097 '72.0.3609.3',
1098 '71.0.3578.52',
1099 '72.0.3609.2',
1100 '71.0.3578.51',
1101 '72.0.3608.5',
1102 '72.0.3609.1',
1103 '72.0.3609.0',
1104 '71.0.3578.50',
1105 '70.0.3538.106',
1106 '72.0.3608.4',
1107 '72.0.3608.3',
1108 '72.0.3608.2',
1109 '71.0.3578.49',
1110 '72.0.3608.1',
1111 '72.0.3608.0',
1112 '70.0.3538.105',
1113 '71.0.3578.48',
1114 '72.0.3607.1',
1115 '72.0.3607.0',
1116 '71.0.3578.47',
1117 '70.0.3538.104',
1118 '72.0.3606.2',
1119 '72.0.3606.1',
1120 '72.0.3606.0',
1121 '71.0.3578.46',
1122 '70.0.3538.103',
1123 '70.0.3538.102',
1124 '72.0.3605.3',
1125 '72.0.3605.2',
1126 '72.0.3605.1',
1127 '72.0.3605.0',
1128 '71.0.3578.45',
1129 '70.0.3538.101',
1130 '71.0.3578.44',
1131 '71.0.3578.43',
1132 '70.0.3538.100',
1133 '70.0.3538.99',
1134 '71.0.3578.42',
1135 '72.0.3604.1',
1136 '72.0.3604.0',
1137 '71.0.3578.41',
1138 '70.0.3538.98',
1139 '71.0.3578.40',
1140 '72.0.3603.2',
1141 '72.0.3603.1',
1142 '72.0.3603.0',
1143 '71.0.3578.39',
1144 '70.0.3538.97',
1145 '72.0.3602.2',
1146 '71.0.3578.38',
1147 '71.0.3578.37',
1148 '72.0.3602.1',
1149 '72.0.3602.0',
1150 '71.0.3578.36',
1151 '70.0.3538.96',
1152 '72.0.3601.1',
1153 '72.0.3601.0',
1154 '71.0.3578.35',
1155 '70.0.3538.95',
1156 '72.0.3600.1',
1157 '72.0.3600.0',
1158 '71.0.3578.34',
1159 '70.0.3538.94',
1160 '72.0.3599.3',
1161 '72.0.3599.2',
1162 '72.0.3599.1',
1163 '72.0.3599.0',
1164 '71.0.3578.33',
1165 '70.0.3538.93',
1166 '72.0.3598.1',
1167 '72.0.3598.0',
1168 '71.0.3578.32',
1169 '70.0.3538.87',
1170 '72.0.3597.1',
1171 '72.0.3597.0',
1172 '72.0.3596.2',
1173 '71.0.3578.31',
1174 '70.0.3538.86',
1175 '71.0.3578.30',
1176 '71.0.3578.29',
1177 '72.0.3596.1',
1178 '72.0.3596.0',
1179 '71.0.3578.28',
1180 '70.0.3538.85',
1181 '72.0.3595.2',
1182 '72.0.3591.3',
1183 '72.0.3595.1',
1184 '72.0.3595.0',
1185 '71.0.3578.27',
1186 '70.0.3538.84',
1187 '72.0.3594.1',
1188 '72.0.3594.0',
1189 '71.0.3578.26',
1190 '70.0.3538.83',
1191 '72.0.3593.2',
1192 '72.0.3593.1',
1193 '72.0.3593.0',
1194 '71.0.3578.25',
1195 '70.0.3538.82',
1196 '72.0.3589.3',
1197 '72.0.3592.2',
1198 '72.0.3592.1',
1199 '72.0.3592.0',
1200 '71.0.3578.24',
1201 '72.0.3589.2',
1202 '70.0.3538.81',
1203 '70.0.3538.80',
1204 '72.0.3591.2',
1205 '72.0.3591.1',
1206 '72.0.3591.0',
1207 '71.0.3578.23',
1208 '70.0.3538.79',
1209 '71.0.3578.22',
1210 '72.0.3590.1',
1211 '72.0.3590.0',
1212 '71.0.3578.21',
1213 '70.0.3538.78',
1214 '70.0.3538.77',
1215 '72.0.3589.1',
1216 '72.0.3589.0',
1217 '71.0.3578.20',
1218 '70.0.3538.76',
1219 '71.0.3578.19',
1220 '70.0.3538.75',
1221 '72.0.3588.1',
1222 '72.0.3588.0',
1223 '71.0.3578.18',
1224 '70.0.3538.74',
1225 '72.0.3586.2',
1226 '72.0.3587.0',
1227 '71.0.3578.17',
1228 '70.0.3538.73',
1229 '72.0.3586.1',
1230 '72.0.3586.0',
1231 '71.0.3578.16',
1232 '70.0.3538.72',
1233 '72.0.3585.1',
1234 '72.0.3585.0',
1235 '71.0.3578.15',
1236 '70.0.3538.71',
1237 '71.0.3578.14',
1238 '72.0.3584.1',
1239 '72.0.3584.0',
1240 '71.0.3578.13',
1241 '70.0.3538.70',
1242 '72.0.3583.2',
1243 '71.0.3578.12',
1244 '72.0.3583.1',
1245 '72.0.3583.0',
1246 '71.0.3578.11',
1247 '70.0.3538.69',
1248 '71.0.3578.10',
1249 '72.0.3582.0',
1250 '72.0.3581.4',
1251 '71.0.3578.9',
1252 '70.0.3538.67',
1253 '72.0.3581.3',
1254 '72.0.3581.2',
1255 '72.0.3581.1',
1256 '72.0.3581.0',
1257 '71.0.3578.8',
1258 '70.0.3538.66',
1259 '72.0.3580.1',
1260 '72.0.3580.0',
1261 '71.0.3578.7',
1262 '70.0.3538.65',
1263 '71.0.3578.6',
1264 '72.0.3579.1',
1265 '72.0.3579.0',
1266 '71.0.3578.5',
1267 '70.0.3538.64',
1268 '71.0.3578.4',
1269 '71.0.3578.3',
1270 '71.0.3578.2',
1271 '71.0.3578.1',
1272 '71.0.3578.0',
1273 '70.0.3538.63',
1274 '69.0.3497.128',
1275 '70.0.3538.62',
1276 '70.0.3538.61',
1277 '70.0.3538.60',
1278 '70.0.3538.59',
1279 '71.0.3577.1',
1280 '71.0.3577.0',
1281 '70.0.3538.58',
1282 '69.0.3497.127',
1283 '71.0.3576.2',
1284 '71.0.3576.1',
1285 '71.0.3576.0',
1286 '70.0.3538.57',
1287 '70.0.3538.56',
1288 '71.0.3575.2',
1289 '70.0.3538.55',
1290 '69.0.3497.126',
1291 '70.0.3538.54',
1292 '71.0.3575.1',
1293 '71.0.3575.0',
1294 '71.0.3574.1',
1295 '71.0.3574.0',
1296 '70.0.3538.53',
1297 '69.0.3497.125',
1298 '70.0.3538.52',
1299 '71.0.3573.1',
1300 '71.0.3573.0',
1301 '70.0.3538.51',
1302 '69.0.3497.124',
1303 '71.0.3572.1',
1304 '71.0.3572.0',
1305 '70.0.3538.50',
1306 '69.0.3497.123',
1307 '71.0.3571.2',
1308 '70.0.3538.49',
1309 '69.0.3497.122',
1310 '71.0.3571.1',
1311 '71.0.3571.0',
1312 '70.0.3538.48',
1313 '69.0.3497.121',
1314 '71.0.3570.1',
1315 '71.0.3570.0',
1316 '70.0.3538.47',
1317 '69.0.3497.120',
1318 '71.0.3568.2',
1319 '71.0.3569.1',
1320 '71.0.3569.0',
1321 '70.0.3538.46',
1322 '69.0.3497.119',
1323 '70.0.3538.45',
1324 '71.0.3568.1',
1325 '71.0.3568.0',
1326 '70.0.3538.44',
1327 '69.0.3497.118',
1328 '70.0.3538.43',
1329 '70.0.3538.42',
1330 '71.0.3567.1',
1331 '71.0.3567.0',
1332 '70.0.3538.41',
1333 '69.0.3497.117',
1334 '71.0.3566.1',
1335 '71.0.3566.0',
1336 '70.0.3538.40',
1337 '69.0.3497.116',
1338 '71.0.3565.1',
1339 '71.0.3565.0',
1340 '70.0.3538.39',
1341 '69.0.3497.115',
1342 '71.0.3564.1',
1343 '71.0.3564.0',
1344 '70.0.3538.38',
1345 '69.0.3497.114',
1346 '71.0.3563.0',
1347 '71.0.3562.2',
1348 '70.0.3538.37',
1349 '69.0.3497.113',
1350 '70.0.3538.36',
1351 '70.0.3538.35',
1352 '71.0.3562.1',
1353 '71.0.3562.0',
1354 '70.0.3538.34',
1355 '69.0.3497.112',
1356 '70.0.3538.33',
1357 '71.0.3561.1',
1358 '71.0.3561.0',
1359 '70.0.3538.32',
1360 '69.0.3497.111',
1361 '71.0.3559.6',
1362 '71.0.3560.1',
1363 '71.0.3560.0',
1364 '71.0.3559.5',
1365 '71.0.3559.4',
1366 '70.0.3538.31',
1367 '69.0.3497.110',
1368 '71.0.3559.3',
1369 '70.0.3538.30',
1370 '69.0.3497.109',
1371 '71.0.3559.2',
1372 '71.0.3559.1',
1373 '71.0.3559.0',
1374 '70.0.3538.29',
1375 '69.0.3497.108',
1376 '71.0.3558.2',
1377 '71.0.3558.1',
1378 '71.0.3558.0',
1379 '70.0.3538.28',
1380 '69.0.3497.107',
1381 '71.0.3557.2',
1382 '71.0.3557.1',
1383 '71.0.3557.0',
1384 '70.0.3538.27',
1385 '69.0.3497.106',
1386 '71.0.3554.4',
1387 '70.0.3538.26',
1388 '71.0.3556.1',
1389 '71.0.3556.0',
1390 '70.0.3538.25',
1391 '71.0.3554.3',
1392 '69.0.3497.105',
1393 '71.0.3554.2',
1394 '70.0.3538.24',
1395 '69.0.3497.104',
1396 '71.0.3555.2',
1397 '70.0.3538.23',
1398 '71.0.3555.1',
1399 '71.0.3555.0',
1400 '70.0.3538.22',
1401 '69.0.3497.103',
1402 '71.0.3554.1',
1403 '71.0.3554.0',
1404 '70.0.3538.21',
1405 '69.0.3497.102',
1406 '71.0.3553.3',
1407 '70.0.3538.20',
1408 '69.0.3497.101',
1409 '71.0.3553.2',
1410 '69.0.3497.100',
1411 '71.0.3553.1',
1412 '71.0.3553.0',
1413 '70.0.3538.19',
1414 '69.0.3497.99',
1415 '69.0.3497.98',
1416 '69.0.3497.97',
1417 '71.0.3552.6',
1418 '71.0.3552.5',
1419 '71.0.3552.4',
1420 '71.0.3552.3',
1421 '71.0.3552.2',
1422 '71.0.3552.1',
1423 '71.0.3552.0',
1424 '70.0.3538.18',
1425 '69.0.3497.96',
1426 '71.0.3551.3',
1427 '71.0.3551.2',
1428 '71.0.3551.1',
1429 '71.0.3551.0',
1430 '70.0.3538.17',
1431 '69.0.3497.95',
1432 '71.0.3550.3',
1433 '71.0.3550.2',
1434 '71.0.3550.1',
1435 '71.0.3550.0',
1436 '70.0.3538.16',
1437 '69.0.3497.94',
1438 '71.0.3549.1',
1439 '71.0.3549.0',
1440 '70.0.3538.15',
1441 '69.0.3497.93',
1442 '69.0.3497.92',
1443 '71.0.3548.1',
1444 '71.0.3548.0',
1445 '70.0.3538.14',
1446 '69.0.3497.91',
1447 '71.0.3547.1',
1448 '71.0.3547.0',
1449 '70.0.3538.13',
1450 '69.0.3497.90',
1451 '71.0.3546.2',
1452 '69.0.3497.89',
1453 '71.0.3546.1',
1454 '71.0.3546.0',
1455 '70.0.3538.12',
1456 '69.0.3497.88',
1457 '71.0.3545.4',
1458 '71.0.3545.3',
1459 '71.0.3545.2',
1460 '71.0.3545.1',
1461 '71.0.3545.0',
1462 '70.0.3538.11',
1463 '69.0.3497.87',
1464 '71.0.3544.5',
1465 '71.0.3544.4',
1466 '71.0.3544.3',
1467 '71.0.3544.2',
1468 '71.0.3544.1',
1469 '71.0.3544.0',
1470 '69.0.3497.86',
1471 '70.0.3538.10',
1472 '69.0.3497.85',
1473 '70.0.3538.9',
1474 '69.0.3497.84',
1475 '71.0.3543.4',
1476 '70.0.3538.8',
1477 '71.0.3543.3',
1478 '71.0.3543.2',
1479 '71.0.3543.1',
1480 '71.0.3543.0',
1481 '70.0.3538.7',
1482 '69.0.3497.83',
1483 '71.0.3542.2',
1484 '71.0.3542.1',
1485 '71.0.3542.0',
1486 '70.0.3538.6',
1487 '69.0.3497.82',
1488 '69.0.3497.81',
1489 '71.0.3541.1',
1490 '71.0.3541.0',
1491 '70.0.3538.5',
1492 '69.0.3497.80',
1493 '71.0.3540.1',
1494 '71.0.3540.0',
1495 '70.0.3538.4',
1496 '69.0.3497.79',
1497 '70.0.3538.3',
1498 '71.0.3539.1',
1499 '71.0.3539.0',
1500 '69.0.3497.78',
1501 '68.0.3440.134',
1502 '69.0.3497.77',
1503 '70.0.3538.2',
1504 '70.0.3538.1',
1505 '70.0.3538.0',
1506 '69.0.3497.76',
1507 '68.0.3440.133',
1508 '69.0.3497.75',
1509 '70.0.3537.2',
1510 '70.0.3537.1',
1511 '70.0.3537.0',
1512 '69.0.3497.74',
1513 '68.0.3440.132',
1514 '70.0.3536.0',
1515 '70.0.3535.5',
1516 '70.0.3535.4',
1517 '70.0.3535.3',
1518 '69.0.3497.73',
1519 '68.0.3440.131',
1520 '70.0.3532.8',
1521 '70.0.3532.7',
1522 '69.0.3497.72',
1523 '69.0.3497.71',
1524 '70.0.3535.2',
1525 '70.0.3535.1',
1526 '70.0.3535.0',
1527 '69.0.3497.70',
1528 '68.0.3440.130',
1529 '69.0.3497.69',
1530 '68.0.3440.129',
1531 '70.0.3534.4',
1532 '70.0.3534.3',
1533 '70.0.3534.2',
1534 '70.0.3534.1',
1535 '70.0.3534.0',
1536 '69.0.3497.68',
1537 '68.0.3440.128',
1538 '70.0.3533.2',
1539 '70.0.3533.1',
1540 '70.0.3533.0',
1541 '69.0.3497.67',
1542 '68.0.3440.127',
1543 '70.0.3532.6',
1544 '70.0.3532.5',
1545 '70.0.3532.4',
1546 '69.0.3497.66',
1547 '68.0.3440.126',
1548 '70.0.3532.3',
1549 '70.0.3532.2',
1550 '70.0.3532.1',
1551 '69.0.3497.60',
1552 '69.0.3497.65',
1553 '69.0.3497.64',
1554 '70.0.3532.0',
1555 '70.0.3531.0',
1556 '70.0.3530.4',
1557 '70.0.3530.3',
1558 '70.0.3530.2',
1559 '69.0.3497.58',
1560 '68.0.3440.125',
1561 '69.0.3497.57',
1562 '69.0.3497.56',
1563 '69.0.3497.55',
1564 '69.0.3497.54',
1565 '70.0.3530.1',
1566 '70.0.3530.0',
1567 '69.0.3497.53',
1568 '68.0.3440.124',
1569 '69.0.3497.52',
1570 '70.0.3529.3',
1571 '70.0.3529.2',
1572 '70.0.3529.1',
1573 '70.0.3529.0',
1574 '69.0.3497.51',
1575 '70.0.3528.4',
1576 '68.0.3440.123',
1577 '70.0.3528.3',
1578 '70.0.3528.2',
1579 '70.0.3528.1',
1580 '70.0.3528.0',
1581 '69.0.3497.50',
1582 '68.0.3440.122',
1583 '70.0.3527.1',
1584 '70.0.3527.0',
1585 '69.0.3497.49',
1586 '68.0.3440.121',
1587 '70.0.3526.1',
1588 '70.0.3526.0',
1589 '68.0.3440.120',
1590 '69.0.3497.48',
1591 '69.0.3497.47',
1592 '68.0.3440.119',
1593 '68.0.3440.118',
1594 '70.0.3525.5',
1595 '70.0.3525.4',
1596 '70.0.3525.3',
1597 '68.0.3440.117',
1598 '69.0.3497.46',
1599 '70.0.3525.2',
1600 '70.0.3525.1',
1601 '70.0.3525.0',
1602 '69.0.3497.45',
1603 '68.0.3440.116',
1604 '70.0.3524.4',
1605 '70.0.3524.3',
1606 '69.0.3497.44',
1607 '70.0.3524.2',
1608 '70.0.3524.1',
1609 '70.0.3524.0',
1610 '70.0.3523.2',
1611 '69.0.3497.43',
1612 '68.0.3440.115',
1613 '70.0.3505.9',
1614 '69.0.3497.42',
1615 '70.0.3505.8',
1616 '70.0.3523.1',
1617 '70.0.3523.0',
1618 '69.0.3497.41',
1619 '68.0.3440.114',
1620 '70.0.3505.7',
1621 '69.0.3497.40',
1622 '70.0.3522.1',
1623 '70.0.3522.0',
1624 '70.0.3521.2',
1625 '69.0.3497.39',
1626 '68.0.3440.113',
1627 '70.0.3505.6',
1628 '70.0.3521.1',
1629 '70.0.3521.0',
1630 '69.0.3497.38',
1631 '68.0.3440.112',
1632 '70.0.3520.1',
1633 '70.0.3520.0',
1634 '69.0.3497.37',
1635 '68.0.3440.111',
1636 '70.0.3519.3',
1637 '70.0.3519.2',
1638 '70.0.3519.1',
1639 '70.0.3519.0',
1640 '69.0.3497.36',
1641 '68.0.3440.110',
1642 '70.0.3518.1',
1643 '70.0.3518.0',
1644 '69.0.3497.35',
1645 '69.0.3497.34',
1646 '68.0.3440.109',
1647 '70.0.3517.1',
1648 '70.0.3517.0',
1649 '69.0.3497.33',
1650 '68.0.3440.108',
1651 '69.0.3497.32',
1652 '70.0.3516.3',
1653 '70.0.3516.2',
1654 '70.0.3516.1',
1655 '70.0.3516.0',
1656 '69.0.3497.31',
1657 '68.0.3440.107',
1658 '70.0.3515.4',
1659 '68.0.3440.106',
1660 '70.0.3515.3',
1661 '70.0.3515.2',
1662 '70.0.3515.1',
1663 '70.0.3515.0',
1664 '69.0.3497.30',
1665 '68.0.3440.105',
1666 '68.0.3440.104',
1667 '70.0.3514.2',
1668 '70.0.3514.1',
1669 '70.0.3514.0',
1670 '69.0.3497.29',
1671 '68.0.3440.103',
1672 '70.0.3513.1',
1673 '70.0.3513.0',
1674 '69.0.3497.28',
1675 )
1676 return _USER_AGENT_TPL % random.choice(_CHROME_VERSIONS)
1677
1678
1679 std_headers = {
1680 'User-Agent': random_user_agent(),
1681 'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
1682 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
1683 'Accept-Encoding': 'gzip, deflate',
1684 'Accept-Language': 'en-us,en;q=0.5',
1685 }
1686
1687
1688 USER_AGENTS = {
1689 'Safari': 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27',
1690 }
1691
1692
1693 NO_DEFAULT = object()
1694
1695 ENGLISH_MONTH_NAMES = [
1696 'January', 'February', 'March', 'April', 'May', 'June',
1697 'July', 'August', 'September', 'October', 'November', 'December']
1698
1699 MONTH_NAMES = {
1700 'en': ENGLISH_MONTH_NAMES,
1701 'fr': [
1702 'janvier', 'février', 'mars', 'avril', 'mai', 'juin',
1703 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
1704 }
1705
1706 KNOWN_EXTENSIONS = (
1707 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v', 'aac',
1708 'flv', 'f4v', 'f4a', 'f4b',
1709 'webm', 'ogg', 'ogv', 'oga', 'ogx', 'spx', 'opus',
1710 'mkv', 'mka', 'mk3d',
1711 'avi', 'divx',
1712 'mov',
1713 'asf', 'wmv', 'wma',
1714 '3gp', '3g2',
1715 'mp3',
1716 'flac',
1717 'ape',
1718 'wav',
1719 'f4f', 'f4m', 'm3u8', 'smil')
1720
1721 # needed for sanitizing filenames in restricted mode
1722 ACCENT_CHARS = dict(zip('ÂÃÄÀÁÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖŐØŒÙÚÛÜŰÝÞßàáâãäåæçèéêëìíîïðñòóôõöőøœùúûüűýþÿ',
1723 itertools.chain('AAAAAA', ['AE'], 'CEEEEIIIIDNOOOOOOO', ['OE'], 'UUUUUY', ['TH', 'ss'],
1724 'aaaaaa', ['ae'], 'ceeeeiiiionooooooo', ['oe'], 'uuuuuy', ['th'], 'y')))
1725
1726 DATE_FORMATS = (
1727 '%d %B %Y',
1728 '%d %b %Y',
1729 '%B %d %Y',
1730 '%B %dst %Y',
1731 '%B %dnd %Y',
1732 '%B %drd %Y',
1733 '%B %dth %Y',
1734 '%b %d %Y',
1735 '%b %dst %Y',
1736 '%b %dnd %Y',
1737 '%b %drd %Y',
1738 '%b %dth %Y',
1739 '%b %dst %Y %I:%M',
1740 '%b %dnd %Y %I:%M',
1741 '%b %drd %Y %I:%M',
1742 '%b %dth %Y %I:%M',
1743 '%Y %m %d',
1744 '%Y-%m-%d',
1745 '%Y.%m.%d.',
1746 '%Y/%m/%d',
1747 '%Y/%m/%d %H:%M',
1748 '%Y/%m/%d %H:%M:%S',
1749 '%Y%m%d%H%M',
1750 '%Y%m%d%H%M%S',
1751 '%Y-%m-%d %H:%M',
1752 '%Y-%m-%d %H:%M:%S',
1753 '%Y-%m-%d %H:%M:%S.%f',
1754 '%Y-%m-%d %H:%M:%S:%f',
1755 '%d.%m.%Y %H:%M',
1756 '%d.%m.%Y %H.%M',
1757 '%Y-%m-%dT%H:%M:%SZ',
1758 '%Y-%m-%dT%H:%M:%S.%fZ',
1759 '%Y-%m-%dT%H:%M:%S.%f0Z',
1760 '%Y-%m-%dT%H:%M:%S',
1761 '%Y-%m-%dT%H:%M:%S.%f',
1762 '%Y-%m-%dT%H:%M',
1763 '%b %d %Y at %H:%M',
1764 '%b %d %Y at %H:%M:%S',
1765 '%B %d %Y at %H:%M',
1766 '%B %d %Y at %H:%M:%S',
1767 '%H:%M %d-%b-%Y',
1768 )
1769
1770 DATE_FORMATS_DAY_FIRST = list(DATE_FORMATS)
1771 DATE_FORMATS_DAY_FIRST.extend([
1772 '%d-%m-%Y',
1773 '%d.%m.%Y',
1774 '%d.%m.%y',
1775 '%d/%m/%Y',
1776 '%d/%m/%y',
1777 '%d/%m/%Y %H:%M:%S',
1778 ])
1779
1780 DATE_FORMATS_MONTH_FIRST = list(DATE_FORMATS)
1781 DATE_FORMATS_MONTH_FIRST.extend([
1782 '%m-%d-%Y',
1783 '%m.%d.%Y',
1784 '%m/%d/%Y',
1785 '%m/%d/%y',
1786 '%m/%d/%Y %H:%M:%S',
1787 ])
1788
1789 PACKED_CODES_RE = r"}\('(.+)',(\d+),(\d+),'([^']+)'\.split\('\|'\)"
1790 JSON_LD_RE = r'(?is)<script[^>]+type=(["\']?)application/ld\+json\1[^>]*>(?P<json_ld>.+?)</script>'
1791
1792
1793 def preferredencoding():
1794 """Get preferred encoding.
1795
1796 Returns the best encoding scheme for the system, based on
1797 locale.getpreferredencoding() and some further tweaks.
1798 """
1799 try:
1800 pref = locale.getpreferredencoding()
1801 'TEST'.encode(pref)
1802 except Exception:
1803 pref = 'UTF-8'
1804
1805 return pref
1806
1807
1808 def write_json_file(obj, fn):
1809 """ Encode obj as JSON and write it to fn, atomically if possible """
1810
1811 fn = encodeFilename(fn)
1812 if sys.version_info < (3, 0) and sys.platform != 'win32':
1813 encoding = get_filesystem_encoding()
1814 # os.path.basename returns a bytes object, but NamedTemporaryFile
1815 # will fail if the filename contains non ascii characters unless we
1816 # use a unicode object
1817 path_basename = lambda f: os.path.basename(fn).decode(encoding)
1818 # the same for os.path.dirname
1819 path_dirname = lambda f: os.path.dirname(fn).decode(encoding)
1820 else:
1821 path_basename = os.path.basename
1822 path_dirname = os.path.dirname
1823
1824 args = {
1825 'suffix': '.tmp',
1826 'prefix': path_basename(fn) + '.',
1827 'dir': path_dirname(fn),
1828 'delete': False,
1829 }
1830
1831 # In Python 2.x, json.dump expects a bytestream.
1832 # In Python 3.x, it writes to a character stream
1833 if sys.version_info < (3, 0):
1834 args['mode'] = 'wb'
1835 else:
1836 args.update({
1837 'mode': 'w',
1838 'encoding': 'utf-8',
1839 })
1840
1841 tf = tempfile.NamedTemporaryFile(**compat_kwargs(args))
1842
1843 try:
1844 with tf:
1845 json.dump(obj, tf)
1846 if sys.platform == 'win32':
1847 # Need to remove existing file on Windows, else os.rename raises
1848 # WindowsError or FileExistsError.
1849 try:
1850 os.unlink(fn)
1851 except OSError:
1852 pass
1853 try:
1854 mask = os.umask(0)
1855 os.umask(mask)
1856 os.chmod(tf.name, 0o666 & ~mask)
1857 except OSError:
1858 pass
1859 os.rename(tf.name, fn)
1860 except Exception:
1861 try:
1862 os.remove(tf.name)
1863 except OSError:
1864 pass
1865 raise
1866
1867
1868 if sys.version_info >= (2, 7):
1869 def find_xpath_attr(node, xpath, key, val=None):
1870 """ Find the xpath xpath[@key=val] """
1871 assert re.match(r'^[a-zA-Z_-]+$', key)
1872 expr = xpath + ('[@%s]' % key if val is None else "[@%s='%s']" % (key, val))
1873 return node.find(expr)
1874 else:
1875 def find_xpath_attr(node, xpath, key, val=None):
1876 for f in node.findall(compat_xpath(xpath)):
1877 if key not in f.attrib:
1878 continue
1879 if val is None or f.attrib.get(key) == val:
1880 return f
1881 return None
1882
1883 # On python2.6 the xml.etree.ElementTree.Element methods don't support
1884 # the namespace parameter
1885
1886
1887 def xpath_with_ns(path, ns_map):
1888 components = [c.split(':') for c in path.split('/')]
1889 replaced = []
1890 for c in components:
1891 if len(c) == 1:
1892 replaced.append(c[0])
1893 else:
1894 ns, tag = c
1895 replaced.append('{%s}%s' % (ns_map[ns], tag))
1896 return '/'.join(replaced)
1897
1898
1899 def xpath_element(node, xpath, name=None, fatal=False, default=NO_DEFAULT):
1900 def _find_xpath(xpath):
1901 return node.find(compat_xpath(xpath))
1902
1903 if isinstance(xpath, (str, compat_str)):
1904 n = _find_xpath(xpath)
1905 else:
1906 for xp in xpath:
1907 n = _find_xpath(xp)
1908 if n is not None:
1909 break
1910
1911 if n is None:
1912 if default is not NO_DEFAULT:
1913 return default
1914 elif fatal:
1915 name = xpath if name is None else name
1916 raise ExtractorError('Could not find XML element %s' % name)
1917 else:
1918 return None
1919 return n
1920
1921
1922 def xpath_text(node, xpath, name=None, fatal=False, default=NO_DEFAULT):
1923 n = xpath_element(node, xpath, name, fatal=fatal, default=default)
1924 if n is None or n == default:
1925 return n
1926 if n.text is None:
1927 if default is not NO_DEFAULT:
1928 return default
1929 elif fatal:
1930 name = xpath if name is None else name
1931 raise ExtractorError('Could not find XML element\'s text %s' % name)
1932 else:
1933 return None
1934 return n.text
1935
1936
1937 def xpath_attr(node, xpath, key, name=None, fatal=False, default=NO_DEFAULT):
1938 n = find_xpath_attr(node, xpath, key)
1939 if n is None:
1940 if default is not NO_DEFAULT:
1941 return default
1942 elif fatal:
1943 name = '%s[@%s]' % (xpath, key) if name is None else name
1944 raise ExtractorError('Could not find XML attribute %s' % name)
1945 else:
1946 return None
1947 return n.attrib[key]
1948
1949
1950 def get_element_by_id(id, html):
1951 """Return the content of the tag with the specified ID in the passed HTML document"""
1952 return get_element_by_attribute('id', id, html)
1953
1954
1955 def get_element_by_class(class_name, html):
1956 """Return the content of the first tag with the specified class in the passed HTML document"""
1957 retval = get_elements_by_class(class_name, html)
1958 return retval[0] if retval else None
1959
1960
1961 def get_element_by_attribute(attribute, value, html, escape_value=True):
1962 retval = get_elements_by_attribute(attribute, value, html, escape_value)
1963 return retval[0] if retval else None
1964
1965
1966 def get_elements_by_class(class_name, html):
1967 """Return the content of all tags with the specified class in the passed HTML document as a list"""
1968 return get_elements_by_attribute(
1969 'class', r'[^\'"]*\b%s\b[^\'"]*' % re.escape(class_name),
1970 html, escape_value=False)
1971
1972
1973 def get_elements_by_attribute(attribute, value, html, escape_value=True):
1974 """Return the content of the tag with the specified attribute in the passed HTML document"""
1975
1976 value = re.escape(value) if escape_value else value
1977
1978 retlist = []
1979 for m in re.finditer(r'''(?xs)
1980 <([a-zA-Z0-9:._-]+)
1981 (?:\s+[a-zA-Z0-9:._-]+(?:=[a-zA-Z0-9:._-]*|="[^"]*"|='[^']*'|))*?
1982 \s+%s=['"]?%s['"]?
1983 (?:\s+[a-zA-Z0-9:._-]+(?:=[a-zA-Z0-9:._-]*|="[^"]*"|='[^']*'|))*?
1984 \s*>
1985 (?P<content>.*?)
1986 </\1>
1987 ''' % (re.escape(attribute), value), html):
1988 res = m.group('content')
1989
1990 if res.startswith('"') or res.startswith("'"):
1991 res = res[1:-1]
1992
1993 retlist.append(unescapeHTML(res))
1994
1995 return retlist
1996
1997
1998 class HTMLAttributeParser(compat_HTMLParser):
1999 """Trivial HTML parser to gather the attributes for a single element"""
2000
2001 def __init__(self):
2002 self.attrs = {}
2003 compat_HTMLParser.__init__(self)
2004
2005 def handle_starttag(self, tag, attrs):
2006 self.attrs = dict(attrs)
2007
2008
2009 class HTMLListAttrsParser(compat_HTMLParser):
2010 """HTML parser to gather the attributes for the elements of a list"""
2011
2012 def __init__(self):
2013 compat_HTMLParser.__init__(self)
2014 self.items = []
2015 self._level = 0
2016
2017 def handle_starttag(self, tag, attrs):
2018 if tag == 'li' and self._level == 0:
2019 self.items.append(dict(attrs))
2020 self._level += 1
2021
2022 def handle_endtag(self, tag):
2023 self._level -= 1
2024
2025
2026 def extract_attributes(html_element):
2027 """Given a string for an HTML element such as
2028 <el
2029 a="foo" B="bar" c="&98;az" d=boz
2030 empty= noval entity="&amp;"
2031 sq='"' dq="'"
2032 >
2033 Decode and return a dictionary of attributes.
2034 {
2035 'a': 'foo', 'b': 'bar', c: 'baz', d: 'boz',
2036 'empty': '', 'noval': None, 'entity': '&',
2037 'sq': '"', 'dq': '\''
2038 }.
2039 NB HTMLParser is stricter in Python 2.6 & 3.2 than in later versions,
2040 but the cases in the unit test will work for all of 2.6, 2.7, 3.2-3.5.
2041 """
2042 parser = HTMLAttributeParser()
2043 try:
2044 parser.feed(html_element)
2045 parser.close()
2046 # Older Python may throw HTMLParseError in case of malformed HTML
2047 except compat_HTMLParseError:
2048 pass
2049 return parser.attrs
2050
2051
2052 def parse_list(webpage):
2053 """Given a string for an series of HTML <li> elements,
2054 return a dictionary of their attributes"""
2055 parser = HTMLListAttrsParser()
2056 parser.feed(webpage)
2057 parser.close()
2058 return parser.items
2059
2060
2061 def clean_html(html):
2062 """Clean an HTML snippet into a readable string"""
2063
2064 if html is None: # Convenience for sanitizing descriptions etc.
2065 return html
2066
2067 # Newline vs <br />
2068 html = html.replace('\n', ' ')
2069 html = re.sub(r'(?u)\s*<\s*br\s*/?\s*>\s*', '\n', html)
2070 html = re.sub(r'(?u)<\s*/\s*p\s*>\s*<\s*p[^>]*>', '\n', html)
2071 # Strip html tags
2072 html = re.sub('<.*?>', '', html)
2073 # Replace html entities
2074 html = unescapeHTML(html)
2075 return html.strip()
2076
2077
2078 def sanitize_open(filename, open_mode):
2079 """Try to open the given filename, and slightly tweak it if this fails.
2080
2081 Attempts to open the given filename. If this fails, it tries to change
2082 the filename slightly, step by step, until it's either able to open it
2083 or it fails and raises a final exception, like the standard open()
2084 function.
2085
2086 It returns the tuple (stream, definitive_file_name).
2087 """
2088 try:
2089 if filename == '-':
2090 if sys.platform == 'win32':
2091 import msvcrt
2092 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
2093 return (sys.stdout.buffer if hasattr(sys.stdout, 'buffer') else sys.stdout, filename)
2094 stream = open(encodeFilename(filename), open_mode)
2095 return (stream, filename)
2096 except (IOError, OSError) as err:
2097 if err.errno in (errno.EACCES,):
2098 raise
2099
2100 # In case of error, try to remove win32 forbidden chars
2101 alt_filename = sanitize_path(filename)
2102 if alt_filename == filename:
2103 raise
2104 else:
2105 # An exception here should be caught in the caller
2106 stream = open(encodeFilename(alt_filename), open_mode)
2107 return (stream, alt_filename)
2108
2109
2110 def timeconvert(timestr):
2111 """Convert RFC 2822 defined time string into system timestamp"""
2112 timestamp = None
2113 timetuple = email.utils.parsedate_tz(timestr)
2114 if timetuple is not None:
2115 timestamp = email.utils.mktime_tz(timetuple)
2116 return timestamp
2117
2118
2119 def sanitize_filename(s, restricted=False, is_id=False):
2120 """Sanitizes a string so it could be used as part of a filename.
2121 If restricted is set, use a stricter subset of allowed characters.
2122 Set is_id if this is not an arbitrary string, but an ID that should be kept
2123 if possible.
2124 """
2125 def replace_insane(char):
2126 if restricted and char in ACCENT_CHARS:
2127 return ACCENT_CHARS[char]
2128 elif not restricted and char == '\n':
2129 return ' '
2130 elif char == '?' or ord(char) < 32 or ord(char) == 127:
2131 return ''
2132 elif char == '"':
2133 return '' if restricted else '\''
2134 elif char == ':':
2135 return '_-' if restricted else ' -'
2136 elif char in '\\/|*<>':
2137 return '_'
2138 if restricted and (char in '!&\'()[]{}$;`^,#' or char.isspace()):
2139 return '_'
2140 if restricted and ord(char) > 127:
2141 return '_'
2142 return char
2143
2144 if s == '':
2145 return ''
2146 # Handle timestamps
2147 s = re.sub(r'[0-9]+(?::[0-9]+)+', lambda m: m.group(0).replace(':', '_'), s)
2148 result = ''.join(map(replace_insane, s))
2149 if not is_id:
2150 while '__' in result:
2151 result = result.replace('__', '_')
2152 result = result.strip('_')
2153 # Common case of "Foreign band name - English song title"
2154 if restricted and result.startswith('-_'):
2155 result = result[2:]
2156 if result.startswith('-'):
2157 result = '_' + result[len('-'):]
2158 result = result.lstrip('.')
2159 if not result:
2160 result = '_'
2161 return result
2162
2163
2164 def sanitize_path(s, force=False):
2165 """Sanitizes and normalizes path on Windows"""
2166 if sys.platform == 'win32':
2167 force = False
2168 drive_or_unc, _ = os.path.splitdrive(s)
2169 if sys.version_info < (2, 7) and not drive_or_unc:
2170 drive_or_unc, _ = os.path.splitunc(s)
2171 elif force:
2172 drive_or_unc = ''
2173 else:
2174 return s
2175
2176 norm_path = os.path.normpath(remove_start(s, drive_or_unc)).split(os.path.sep)
2177 if drive_or_unc:
2178 norm_path.pop(0)
2179 sanitized_path = [
2180 path_part if path_part in ['.', '..'] else re.sub(r'(?:[/<>:"\|\\?\*]|[\s.]$)', '#', path_part)
2181 for path_part in norm_path]
2182 if drive_or_unc:
2183 sanitized_path.insert(0, drive_or_unc + os.path.sep)
2184 elif force and s[0] == os.path.sep:
2185 sanitized_path.insert(0, os.path.sep)
2186 return os.path.join(*sanitized_path)
2187
2188
2189 def sanitize_url(url):
2190 # Prepend protocol-less URLs with `http:` scheme in order to mitigate
2191 # the number of unwanted failures due to missing protocol
2192 if url.startswith('//'):
2193 return 'http:%s' % url
2194 # Fix some common typos seen so far
2195 COMMON_TYPOS = (
2196 # https://github.com/ytdl-org/youtube-dl/issues/15649
2197 (r'^httpss://', r'https://'),
2198 # https://bx1.be/lives/direct-tv/
2199 (r'^rmtp([es]?)://', r'rtmp\1://'),
2200 )
2201 for mistake, fixup in COMMON_TYPOS:
2202 if re.match(mistake, url):
2203 return re.sub(mistake, fixup, url)
2204 return url
2205
2206
2207 def extract_basic_auth(url):
2208 parts = compat_urlparse.urlsplit(url)
2209 if parts.username is None:
2210 return url, None
2211 url = compat_urlparse.urlunsplit(parts._replace(netloc=(
2212 parts.hostname if parts.port is None
2213 else '%s:%d' % (parts.hostname, parts.port))))
2214 auth_payload = base64.b64encode(
2215 ('%s:%s' % (parts.username, parts.password or '')).encode('utf-8'))
2216 return url, 'Basic ' + auth_payload.decode('utf-8')
2217
2218
2219 def sanitized_Request(url, *args, **kwargs):
2220 url, auth_header = extract_basic_auth(escape_url(sanitize_url(url)))
2221 if auth_header is not None:
2222 headers = args[1] if len(args) >= 2 else kwargs.setdefault('headers', {})
2223 headers['Authorization'] = auth_header
2224 return compat_urllib_request.Request(url, *args, **kwargs)
2225
2226
2227 def expand_path(s):
2228 """Expand shell variables and ~"""
2229 return os.path.expandvars(compat_expanduser(s))
2230
2231
2232 def orderedSet(iterable):
2233 """ Remove all duplicates from the input iterable """
2234 res = []
2235 for el in iterable:
2236 if el not in res:
2237 res.append(el)
2238 return res
2239
2240
2241 def _htmlentity_transform(entity_with_semicolon):
2242 """Transforms an HTML entity to a character."""
2243 entity = entity_with_semicolon[:-1]
2244
2245 # Known non-numeric HTML entity
2246 if entity in compat_html_entities.name2codepoint:
2247 return compat_chr(compat_html_entities.name2codepoint[entity])
2248
2249 # TODO: HTML5 allows entities without a semicolon. For example,
2250 # '&Eacuteric' should be decoded as 'Éric'.
2251 if entity_with_semicolon in compat_html_entities_html5:
2252 return compat_html_entities_html5[entity_with_semicolon]
2253
2254 mobj = re.match(r'#(x[0-9a-fA-F]+|[0-9]+)', entity)
2255 if mobj is not None:
2256 numstr = mobj.group(1)
2257 if numstr.startswith('x'):
2258 base = 16
2259 numstr = '0%s' % numstr
2260 else:
2261 base = 10
2262 # See https://github.com/ytdl-org/youtube-dl/issues/7518
2263 try:
2264 return compat_chr(int(numstr, base))
2265 except ValueError:
2266 pass
2267
2268 # Unknown entity in name, return its literal representation
2269 return '&%s;' % entity
2270
2271
2272 def unescapeHTML(s):
2273 if s is None:
2274 return None
2275 assert type(s) == compat_str
2276
2277 return re.sub(
2278 r'&([^&;]+;)', lambda m: _htmlentity_transform(m.group(1)), s)
2279
2280
2281 def escapeHTML(text):
2282 return (
2283 text
2284 .replace('&', '&amp;')
2285 .replace('<', '&lt;')
2286 .replace('>', '&gt;')
2287 .replace('"', '&quot;')
2288 .replace("'", '&#39;')
2289 )
2290
2291
2292 def process_communicate_or_kill(p, *args, **kwargs):
2293 try:
2294 return p.communicate(*args, **kwargs)
2295 except BaseException: # Including KeyboardInterrupt
2296 p.kill()
2297 p.wait()
2298 raise
2299
2300
2301 class Popen(subprocess.Popen):
2302 if sys.platform == 'win32':
2303 _startupinfo = subprocess.STARTUPINFO()
2304 _startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
2305 else:
2306 _startupinfo = None
2307
2308 def __init__(self, *args, **kwargs):
2309 super(Popen, self).__init__(*args, **kwargs, startupinfo=self._startupinfo)
2310
2311 def communicate_or_kill(self, *args, **kwargs):
2312 return process_communicate_or_kill(self, *args, **kwargs)
2313
2314
2315 def get_subprocess_encoding():
2316 if sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
2317 # For subprocess calls, encode with locale encoding
2318 # Refer to http://stackoverflow.com/a/9951851/35070
2319 encoding = preferredencoding()
2320 else:
2321 encoding = sys.getfilesystemencoding()
2322 if encoding is None:
2323 encoding = 'utf-8'
2324 return encoding
2325
2326
2327 def encodeFilename(s, for_subprocess=False):
2328 """
2329 @param s The name of the file
2330 """
2331
2332 assert type(s) == compat_str
2333
2334 # Python 3 has a Unicode API
2335 if sys.version_info >= (3, 0):
2336 return s
2337
2338 # Pass '' directly to use Unicode APIs on Windows 2000 and up
2339 # (Detecting Windows NT 4 is tricky because 'major >= 4' would
2340 # match Windows 9x series as well. Besides, NT 4 is obsolete.)
2341 if not for_subprocess and sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
2342 return s
2343
2344 # Jython assumes filenames are Unicode strings though reported as Python 2.x compatible
2345 if sys.platform.startswith('java'):
2346 return s
2347
2348 return s.encode(get_subprocess_encoding(), 'ignore')
2349
2350
2351 def decodeFilename(b, for_subprocess=False):
2352
2353 if sys.version_info >= (3, 0):
2354 return b
2355
2356 if not isinstance(b, bytes):
2357 return b
2358
2359 return b.decode(get_subprocess_encoding(), 'ignore')
2360
2361
2362 def encodeArgument(s):
2363 if not isinstance(s, compat_str):
2364 # Legacy code that uses byte strings
2365 # Uncomment the following line after fixing all post processors
2366 # assert False, 'Internal error: %r should be of type %r, is %r' % (s, compat_str, type(s))
2367 s = s.decode('ascii')
2368 return encodeFilename(s, True)
2369
2370
2371 def decodeArgument(b):
2372 return decodeFilename(b, True)
2373
2374
2375 def decodeOption(optval):
2376 if optval is None:
2377 return optval
2378 if isinstance(optval, bytes):
2379 optval = optval.decode(preferredencoding())
2380
2381 assert isinstance(optval, compat_str)
2382 return optval
2383
2384
2385 _timetuple = collections.namedtuple('Time', ('hours', 'minutes', 'seconds', 'milliseconds'))
2386
2387
2388 def timetuple_from_msec(msec):
2389 secs, msec = divmod(msec, 1000)
2390 mins, secs = divmod(secs, 60)
2391 hrs, mins = divmod(mins, 60)
2392 return _timetuple(hrs, mins, secs, msec)
2393
2394
2395 def formatSeconds(secs, delim=':', msec=False):
2396 time = timetuple_from_msec(secs * 1000)
2397 if time.hours:
2398 ret = '%d%s%02d%s%02d' % (time.hours, delim, time.minutes, delim, time.seconds)
2399 elif time.minutes:
2400 ret = '%d%s%02d' % (time.minutes, delim, time.seconds)
2401 else:
2402 ret = '%d' % time.seconds
2403 return '%s.%03d' % (ret, time.milliseconds) if msec else ret
2404
2405
2406 def _ssl_load_windows_store_certs(ssl_context, storename):
2407 # Code adapted from _load_windows_store_certs in https://github.com/python/cpython/blob/main/Lib/ssl.py
2408 try:
2409 certs = [cert for cert, encoding, trust in ssl.enum_certificates(storename)
2410 if encoding == 'x509_asn' and (
2411 trust is True or ssl.Purpose.SERVER_AUTH.oid in trust)]
2412 except PermissionError:
2413 return
2414 for cert in certs:
2415 try:
2416 ssl_context.load_verify_locations(cadata=cert)
2417 except ssl.SSLError:
2418 pass
2419
2420
2421 def make_HTTPS_handler(params, **kwargs):
2422 opts_check_certificate = not params.get('nocheckcertificate')
2423 context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
2424 context.check_hostname = opts_check_certificate
2425 context.verify_mode = ssl.CERT_REQUIRED if opts_check_certificate else ssl.CERT_NONE
2426 if opts_check_certificate:
2427 try:
2428 context.load_default_certs()
2429 # Work around the issue in load_default_certs when there are bad certificates. See:
2430 # https://github.com/yt-dlp/yt-dlp/issues/1060,
2431 # https://bugs.python.org/issue35665, https://bugs.python.org/issue45312
2432 except ssl.SSLError:
2433 # enum_certificates is not present in mingw python. See https://github.com/yt-dlp/yt-dlp/issues/1151
2434 if sys.platform == 'win32' and hasattr(ssl, 'enum_certificates'):
2435 # Create a new context to discard any certificates that were already loaded
2436 context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
2437 context.check_hostname, context.verify_mode = True, ssl.CERT_REQUIRED
2438 for storename in ('CA', 'ROOT'):
2439 _ssl_load_windows_store_certs(context, storename)
2440 context.set_default_verify_paths()
2441 return YoutubeDLHTTPSHandler(params, context=context, **kwargs)
2442
2443
2444 def bug_reports_message(before=';'):
2445 if ytdl_is_updateable():
2446 update_cmd = 'type yt-dlp -U to update'
2447 else:
2448 update_cmd = 'see https://github.com/yt-dlp/yt-dlp on how to update'
2449 msg = 'please report this issue on https://github.com/yt-dlp/yt-dlp .'
2450 msg += ' Make sure you are using the latest version; %s.' % update_cmd
2451 msg += ' Be sure to call yt-dlp with the --verbose flag and include its complete output.'
2452
2453 before = before.rstrip()
2454 if not before or before.endswith(('.', '!', '?')):
2455 msg = msg[0].title() + msg[1:]
2456
2457 return (before + ' ' if before else '') + msg
2458
2459
2460 class YoutubeDLError(Exception):
2461 """Base exception for YoutubeDL errors."""
2462 msg = None
2463
2464 def __init__(self, msg=None):
2465 if msg is not None:
2466 self.msg = msg
2467 elif self.msg is None:
2468 self.msg = type(self).__name__
2469 super().__init__(self.msg)
2470
2471
2472 network_exceptions = [compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error]
2473 if hasattr(ssl, 'CertificateError'):
2474 network_exceptions.append(ssl.CertificateError)
2475 network_exceptions = tuple(network_exceptions)
2476
2477
2478 class ExtractorError(YoutubeDLError):
2479 """Error during info extraction."""
2480
2481 def __init__(self, msg, tb=None, expected=False, cause=None, video_id=None, ie=None):
2482 """ tb, if given, is the original traceback (so that it can be printed out).
2483 If expected is set, this is a normal error message and most likely not a bug in yt-dlp.
2484 """
2485 if sys.exc_info()[0] in network_exceptions:
2486 expected = True
2487
2488 self.msg = str(msg)
2489 self.traceback = tb
2490 self.expected = expected
2491 self.cause = cause
2492 self.video_id = video_id
2493 self.ie = ie
2494 self.exc_info = sys.exc_info() # preserve original exception
2495
2496 super(ExtractorError, self).__init__(''.join((
2497 format_field(ie, template='[%s] '),
2498 format_field(video_id, template='%s: '),
2499 self.msg,
2500 format_field(cause, template=' (caused by %r)'),
2501 '' if expected else bug_reports_message())))
2502
2503 def format_traceback(self):
2504 if self.traceback is None:
2505 return None
2506 return ''.join(traceback.format_tb(self.traceback))
2507
2508
2509 class UnsupportedError(ExtractorError):
2510 def __init__(self, url):
2511 super(UnsupportedError, self).__init__(
2512 'Unsupported URL: %s' % url, expected=True)
2513 self.url = url
2514
2515
2516 class RegexNotFoundError(ExtractorError):
2517 """Error when a regex didn't match"""
2518 pass
2519
2520
2521 class GeoRestrictedError(ExtractorError):
2522 """Geographic restriction Error exception.
2523
2524 This exception may be thrown when a video is not available from your
2525 geographic location due to geographic restrictions imposed by a website.
2526 """
2527
2528 def __init__(self, msg, countries=None, **kwargs):
2529 kwargs['expected'] = True
2530 super(GeoRestrictedError, self).__init__(msg, **kwargs)
2531 self.countries = countries
2532
2533
2534 class DownloadError(YoutubeDLError):
2535 """Download Error exception.
2536
2537 This exception may be thrown by FileDownloader objects if they are not
2538 configured to continue on errors. They will contain the appropriate
2539 error message.
2540 """
2541
2542 def __init__(self, msg, exc_info=None):
2543 """ exc_info, if given, is the original exception that caused the trouble (as returned by sys.exc_info()). """
2544 super(DownloadError, self).__init__(msg)
2545 self.exc_info = exc_info
2546
2547
2548 class EntryNotInPlaylist(YoutubeDLError):
2549 """Entry not in playlist exception.
2550
2551 This exception will be thrown by YoutubeDL when a requested entry
2552 is not found in the playlist info_dict
2553 """
2554 msg = 'Entry not found in info'
2555
2556
2557 class SameFileError(YoutubeDLError):
2558 """Same File exception.
2559
2560 This exception will be thrown by FileDownloader objects if they detect
2561 multiple files would have to be downloaded to the same file on disk.
2562 """
2563 msg = 'Fixed output name but more than one file to download'
2564
2565 def __init__(self, filename=None):
2566 if filename is not None:
2567 self.msg += f': {filename}'
2568 super().__init__(self.msg)
2569
2570
2571 class PostProcessingError(YoutubeDLError):
2572 """Post Processing exception.
2573
2574 This exception may be raised by PostProcessor's .run() method to
2575 indicate an error in the postprocessing task.
2576 """
2577
2578 def __init__(self, msg):
2579 super(PostProcessingError, self).__init__(msg)
2580 self.msg = msg
2581
2582
2583 class DownloadCancelled(YoutubeDLError):
2584 """ Exception raised when the download queue should be interrupted """
2585 msg = 'The download was cancelled'
2586
2587
2588 class ExistingVideoReached(DownloadCancelled):
2589 """ --break-on-existing triggered """
2590 msg = 'Encountered a video that is already in the archive, stopping due to --break-on-existing'
2591
2592
2593 class RejectedVideoReached(DownloadCancelled):
2594 """ --break-on-reject triggered """
2595 msg = 'Encountered a video that did not match filter, stopping due to --break-on-reject'
2596
2597
2598 class MaxDownloadsReached(DownloadCancelled):
2599 """ --max-downloads limit has been reached. """
2600 msg = 'Maximum number of downloads reached, stopping due to --max-downloads'
2601
2602
2603 class ReExtractInfo(YoutubeDLError):
2604 """ Video info needs to be re-extracted. """
2605
2606 def __init__(self, msg, expected=False):
2607 super().__init__(msg)
2608 self.expected = expected
2609
2610
2611 class ThrottledDownload(ReExtractInfo):
2612 """ Download speed below --throttled-rate. """
2613 msg = 'The download speed is below throttle limit'
2614
2615 def __init__(self, msg):
2616 super().__init__(msg, expected=False)
2617
2618
2619 class UnavailableVideoError(YoutubeDLError):
2620 """Unavailable Format exception.
2621
2622 This exception will be thrown when a video is requested
2623 in a format that is not available for that video.
2624 """
2625 msg = 'Unable to download video'
2626
2627 def __init__(self, err=None):
2628 if err is not None:
2629 self.msg += f': {err}'
2630 super().__init__(self.msg)
2631
2632
2633 class ContentTooShortError(YoutubeDLError):
2634 """Content Too Short exception.
2635
2636 This exception may be raised by FileDownloader objects when a file they
2637 download is too small for what the server announced first, indicating
2638 the connection was probably interrupted.
2639 """
2640
2641 def __init__(self, downloaded, expected):
2642 super(ContentTooShortError, self).__init__(
2643 'Downloaded {0} bytes, expected {1} bytes'.format(downloaded, expected)
2644 )
2645 # Both in bytes
2646 self.downloaded = downloaded
2647 self.expected = expected
2648
2649
2650 class XAttrMetadataError(YoutubeDLError):
2651 def __init__(self, code=None, msg='Unknown error'):
2652 super(XAttrMetadataError, self).__init__(msg)
2653 self.code = code
2654 self.msg = msg
2655
2656 # Parsing code and msg
2657 if (self.code in (errno.ENOSPC, errno.EDQUOT)
2658 or 'No space left' in self.msg or 'Disk quota exceeded' in self.msg):
2659 self.reason = 'NO_SPACE'
2660 elif self.code == errno.E2BIG or 'Argument list too long' in self.msg:
2661 self.reason = 'VALUE_TOO_LONG'
2662 else:
2663 self.reason = 'NOT_SUPPORTED'
2664
2665
2666 class XAttrUnavailableError(YoutubeDLError):
2667 pass
2668
2669
2670 def _create_http_connection(ydl_handler, http_class, is_https, *args, **kwargs):
2671 # Working around python 2 bug (see http://bugs.python.org/issue17849) by limiting
2672 # expected HTTP responses to meet HTTP/1.0 or later (see also
2673 # https://github.com/ytdl-org/youtube-dl/issues/6727)
2674 if sys.version_info < (3, 0):
2675 kwargs['strict'] = True
2676 hc = http_class(*args, **compat_kwargs(kwargs))
2677 source_address = ydl_handler._params.get('source_address')
2678
2679 if source_address is not None:
2680 # This is to workaround _create_connection() from socket where it will try all
2681 # address data from getaddrinfo() including IPv6. This filters the result from
2682 # getaddrinfo() based on the source_address value.
2683 # This is based on the cpython socket.create_connection() function.
2684 # https://github.com/python/cpython/blob/master/Lib/socket.py#L691
2685 def _create_connection(address, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, source_address=None):
2686 host, port = address
2687 err = None
2688 addrs = socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM)
2689 af = socket.AF_INET if '.' in source_address[0] else socket.AF_INET6
2690 ip_addrs = [addr for addr in addrs if addr[0] == af]
2691 if addrs and not ip_addrs:
2692 ip_version = 'v4' if af == socket.AF_INET else 'v6'
2693 raise socket.error(
2694 "No remote IP%s addresses available for connect, can't use '%s' as source address"
2695 % (ip_version, source_address[0]))
2696 for res in ip_addrs:
2697 af, socktype, proto, canonname, sa = res
2698 sock = None
2699 try:
2700 sock = socket.socket(af, socktype, proto)
2701 if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT:
2702 sock.settimeout(timeout)
2703 sock.bind(source_address)
2704 sock.connect(sa)
2705 err = None # Explicitly break reference cycle
2706 return sock
2707 except socket.error as _:
2708 err = _
2709 if sock is not None:
2710 sock.close()
2711 if err is not None:
2712 raise err
2713 else:
2714 raise socket.error('getaddrinfo returns an empty list')
2715 if hasattr(hc, '_create_connection'):
2716 hc._create_connection = _create_connection
2717 sa = (source_address, 0)
2718 if hasattr(hc, 'source_address'): # Python 2.7+
2719 hc.source_address = sa
2720 else: # Python 2.6
2721 def _hc_connect(self, *args, **kwargs):
2722 sock = _create_connection(
2723 (self.host, self.port), self.timeout, sa)
2724 if is_https:
2725 self.sock = ssl.wrap_socket(
2726 sock, self.key_file, self.cert_file,
2727 ssl_version=ssl.PROTOCOL_TLSv1)
2728 else:
2729 self.sock = sock
2730 hc.connect = functools.partial(_hc_connect, hc)
2731
2732 return hc
2733
2734
2735 def handle_youtubedl_headers(headers):
2736 filtered_headers = headers
2737
2738 if 'Youtubedl-no-compression' in filtered_headers:
2739 filtered_headers = dict((k, v) for k, v in filtered_headers.items() if k.lower() != 'accept-encoding')
2740 del filtered_headers['Youtubedl-no-compression']
2741
2742 return filtered_headers
2743
2744
2745 class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
2746 """Handler for HTTP requests and responses.
2747
2748 This class, when installed with an OpenerDirector, automatically adds
2749 the standard headers to every HTTP request and handles gzipped and
2750 deflated responses from web servers. If compression is to be avoided in
2751 a particular request, the original request in the program code only has
2752 to include the HTTP header "Youtubedl-no-compression", which will be
2753 removed before making the real request.
2754
2755 Part of this code was copied from:
2756
2757 http://techknack.net/python-urllib2-handlers/
2758
2759 Andrew Rowls, the author of that code, agreed to release it to the
2760 public domain.
2761 """
2762
2763 def __init__(self, params, *args, **kwargs):
2764 compat_urllib_request.HTTPHandler.__init__(self, *args, **kwargs)
2765 self._params = params
2766
2767 def http_open(self, req):
2768 conn_class = compat_http_client.HTTPConnection
2769
2770 socks_proxy = req.headers.get('Ytdl-socks-proxy')
2771 if socks_proxy:
2772 conn_class = make_socks_conn_class(conn_class, socks_proxy)
2773 del req.headers['Ytdl-socks-proxy']
2774
2775 return self.do_open(functools.partial(
2776 _create_http_connection, self, conn_class, False),
2777 req)
2778
2779 @staticmethod
2780 def deflate(data):
2781 if not data:
2782 return data
2783 try:
2784 return zlib.decompress(data, -zlib.MAX_WBITS)
2785 except zlib.error:
2786 return zlib.decompress(data)
2787
2788 def http_request(self, req):
2789 # According to RFC 3986, URLs can not contain non-ASCII characters, however this is not
2790 # always respected by websites, some tend to give out URLs with non percent-encoded
2791 # non-ASCII characters (see telemb.py, ard.py [#3412])
2792 # urllib chokes on URLs with non-ASCII characters (see http://bugs.python.org/issue3991)
2793 # To work around aforementioned issue we will replace request's original URL with
2794 # percent-encoded one
2795 # Since redirects are also affected (e.g. http://www.southpark.de/alle-episoden/s18e09)
2796 # the code of this workaround has been moved here from YoutubeDL.urlopen()
2797 url = req.get_full_url()
2798 url_escaped = escape_url(url)
2799
2800 # Substitute URL if any change after escaping
2801 if url != url_escaped:
2802 req = update_Request(req, url=url_escaped)
2803
2804 for h, v in std_headers.items():
2805 # Capitalize is needed because of Python bug 2275: http://bugs.python.org/issue2275
2806 # The dict keys are capitalized because of this bug by urllib
2807 if h.capitalize() not in req.headers:
2808 req.add_header(h, v)
2809
2810 req.headers = handle_youtubedl_headers(req.headers)
2811
2812 if sys.version_info < (2, 7) and '#' in req.get_full_url():
2813 # Python 2.6 is brain-dead when it comes to fragments
2814 req._Request__original = req._Request__original.partition('#')[0]
2815 req._Request__r_type = req._Request__r_type.partition('#')[0]
2816
2817 return req
2818
2819 def http_response(self, req, resp):
2820 old_resp = resp
2821 # gzip
2822 if resp.headers.get('Content-encoding', '') == 'gzip':
2823 content = resp.read()
2824 gz = gzip.GzipFile(fileobj=io.BytesIO(content), mode='rb')
2825 try:
2826 uncompressed = io.BytesIO(gz.read())
2827 except IOError as original_ioerror:
2828 # There may be junk add the end of the file
2829 # See http://stackoverflow.com/q/4928560/35070 for details
2830 for i in range(1, 1024):
2831 try:
2832 gz = gzip.GzipFile(fileobj=io.BytesIO(content[:-i]), mode='rb')
2833 uncompressed = io.BytesIO(gz.read())
2834 except IOError:
2835 continue
2836 break
2837 else:
2838 raise original_ioerror
2839 resp = compat_urllib_request.addinfourl(uncompressed, old_resp.headers, old_resp.url, old_resp.code)
2840 resp.msg = old_resp.msg
2841 del resp.headers['Content-encoding']
2842 # deflate
2843 if resp.headers.get('Content-encoding', '') == 'deflate':
2844 gz = io.BytesIO(self.deflate(resp.read()))
2845 resp = compat_urllib_request.addinfourl(gz, old_resp.headers, old_resp.url, old_resp.code)
2846 resp.msg = old_resp.msg
2847 del resp.headers['Content-encoding']
2848 # Percent-encode redirect URL of Location HTTP header to satisfy RFC 3986 (see
2849 # https://github.com/ytdl-org/youtube-dl/issues/6457).
2850 if 300 <= resp.code < 400:
2851 location = resp.headers.get('Location')
2852 if location:
2853 # As of RFC 2616 default charset is iso-8859-1 that is respected by python 3
2854 if sys.version_info >= (3, 0):
2855 location = location.encode('iso-8859-1').decode('utf-8')
2856 else:
2857 location = location.decode('utf-8')
2858 location_escaped = escape_url(location)
2859 if location != location_escaped:
2860 del resp.headers['Location']
2861 if sys.version_info < (3, 0):
2862 location_escaped = location_escaped.encode('utf-8')
2863 resp.headers['Location'] = location_escaped
2864 return resp
2865
2866 https_request = http_request
2867 https_response = http_response
2868
2869
2870 def make_socks_conn_class(base_class, socks_proxy):
2871 assert issubclass(base_class, (
2872 compat_http_client.HTTPConnection, compat_http_client.HTTPSConnection))
2873
2874 url_components = compat_urlparse.urlparse(socks_proxy)
2875 if url_components.scheme.lower() == 'socks5':
2876 socks_type = ProxyType.SOCKS5
2877 elif url_components.scheme.lower() in ('socks', 'socks4'):
2878 socks_type = ProxyType.SOCKS4
2879 elif url_components.scheme.lower() == 'socks4a':
2880 socks_type = ProxyType.SOCKS4A
2881
2882 def unquote_if_non_empty(s):
2883 if not s:
2884 return s
2885 return compat_urllib_parse_unquote_plus(s)
2886
2887 proxy_args = (
2888 socks_type,
2889 url_components.hostname, url_components.port or 1080,
2890 True, # Remote DNS
2891 unquote_if_non_empty(url_components.username),
2892 unquote_if_non_empty(url_components.password),
2893 )
2894
2895 class SocksConnection(base_class):
2896 def connect(self):
2897 self.sock = sockssocket()
2898 self.sock.setproxy(*proxy_args)
2899 if type(self.timeout) in (int, float):
2900 self.sock.settimeout(self.timeout)
2901 self.sock.connect((self.host, self.port))
2902
2903 if isinstance(self, compat_http_client.HTTPSConnection):
2904 if hasattr(self, '_context'): # Python > 2.6
2905 self.sock = self._context.wrap_socket(
2906 self.sock, server_hostname=self.host)
2907 else:
2908 self.sock = ssl.wrap_socket(self.sock)
2909
2910 return SocksConnection
2911
2912
2913 class YoutubeDLHTTPSHandler(compat_urllib_request.HTTPSHandler):
2914 def __init__(self, params, https_conn_class=None, *args, **kwargs):
2915 compat_urllib_request.HTTPSHandler.__init__(self, *args, **kwargs)
2916 self._https_conn_class = https_conn_class or compat_http_client.HTTPSConnection
2917 self._params = params
2918
2919 def https_open(self, req):
2920 kwargs = {}
2921 conn_class = self._https_conn_class
2922
2923 if hasattr(self, '_context'): # python > 2.6
2924 kwargs['context'] = self._context
2925 if hasattr(self, '_check_hostname'): # python 3.x
2926 kwargs['check_hostname'] = self._check_hostname
2927
2928 socks_proxy = req.headers.get('Ytdl-socks-proxy')
2929 if socks_proxy:
2930 conn_class = make_socks_conn_class(conn_class, socks_proxy)
2931 del req.headers['Ytdl-socks-proxy']
2932
2933 return self.do_open(functools.partial(
2934 _create_http_connection, self, conn_class, True),
2935 req, **kwargs)
2936
2937
2938 class YoutubeDLCookieJar(compat_cookiejar.MozillaCookieJar):
2939 """
2940 See [1] for cookie file format.
2941
2942 1. https://curl.haxx.se/docs/http-cookies.html
2943 """
2944 _HTTPONLY_PREFIX = '#HttpOnly_'
2945 _ENTRY_LEN = 7
2946 _HEADER = '''# Netscape HTTP Cookie File
2947 # This file is generated by yt-dlp. Do not edit.
2948
2949 '''
2950 _CookieFileEntry = collections.namedtuple(
2951 'CookieFileEntry',
2952 ('domain_name', 'include_subdomains', 'path', 'https_only', 'expires_at', 'name', 'value'))
2953
2954 def save(self, filename=None, ignore_discard=False, ignore_expires=False):
2955 """
2956 Save cookies to a file.
2957
2958 Most of the code is taken from CPython 3.8 and slightly adapted
2959 to support cookie files with UTF-8 in both python 2 and 3.
2960 """
2961 if filename is None:
2962 if self.filename is not None:
2963 filename = self.filename
2964 else:
2965 raise ValueError(compat_cookiejar.MISSING_FILENAME_TEXT)
2966
2967 # Store session cookies with `expires` set to 0 instead of an empty
2968 # string
2969 for cookie in self:
2970 if cookie.expires is None:
2971 cookie.expires = 0
2972
2973 with io.open(filename, 'w', encoding='utf-8') as f:
2974 f.write(self._HEADER)
2975 now = time.time()
2976 for cookie in self:
2977 if not ignore_discard and cookie.discard:
2978 continue
2979 if not ignore_expires and cookie.is_expired(now):
2980 continue
2981 if cookie.secure:
2982 secure = 'TRUE'
2983 else:
2984 secure = 'FALSE'
2985 if cookie.domain.startswith('.'):
2986 initial_dot = 'TRUE'
2987 else:
2988 initial_dot = 'FALSE'
2989 if cookie.expires is not None:
2990 expires = compat_str(cookie.expires)
2991 else:
2992 expires = ''
2993 if cookie.value is None:
2994 # cookies.txt regards 'Set-Cookie: foo' as a cookie
2995 # with no name, whereas http.cookiejar regards it as a
2996 # cookie with no value.
2997 name = ''
2998 value = cookie.name
2999 else:
3000 name = cookie.name
3001 value = cookie.value
3002 f.write(
3003 '\t'.join([cookie.domain, initial_dot, cookie.path,
3004 secure, expires, name, value]) + '\n')
3005
3006 def load(self, filename=None, ignore_discard=False, ignore_expires=False):
3007 """Load cookies from a file."""
3008 if filename is None:
3009 if self.filename is not None:
3010 filename = self.filename
3011 else:
3012 raise ValueError(compat_cookiejar.MISSING_FILENAME_TEXT)
3013
3014 def prepare_line(line):
3015 if line.startswith(self._HTTPONLY_PREFIX):
3016 line = line[len(self._HTTPONLY_PREFIX):]
3017 # comments and empty lines are fine
3018 if line.startswith('#') or not line.strip():
3019 return line
3020 cookie_list = line.split('\t')
3021 if len(cookie_list) != self._ENTRY_LEN:
3022 raise compat_cookiejar.LoadError('invalid length %d' % len(cookie_list))
3023 cookie = self._CookieFileEntry(*cookie_list)
3024 if cookie.expires_at and not cookie.expires_at.isdigit():
3025 raise compat_cookiejar.LoadError('invalid expires at %s' % cookie.expires_at)
3026 return line
3027
3028 cf = io.StringIO()
3029 with io.open(filename, encoding='utf-8') as f:
3030 for line in f:
3031 try:
3032 cf.write(prepare_line(line))
3033 except compat_cookiejar.LoadError as e:
3034 write_string(
3035 'WARNING: skipping cookie file entry due to %s: %r\n'
3036 % (e, line), sys.stderr)
3037 continue
3038 cf.seek(0)
3039 self._really_load(cf, filename, ignore_discard, ignore_expires)
3040 # Session cookies are denoted by either `expires` field set to
3041 # an empty string or 0. MozillaCookieJar only recognizes the former
3042 # (see [1]). So we need force the latter to be recognized as session
3043 # cookies on our own.
3044 # Session cookies may be important for cookies-based authentication,
3045 # e.g. usually, when user does not check 'Remember me' check box while
3046 # logging in on a site, some important cookies are stored as session
3047 # cookies so that not recognizing them will result in failed login.
3048 # 1. https://bugs.python.org/issue17164
3049 for cookie in self:
3050 # Treat `expires=0` cookies as session cookies
3051 if cookie.expires == 0:
3052 cookie.expires = None
3053 cookie.discard = True
3054
3055
3056 class YoutubeDLCookieProcessor(compat_urllib_request.HTTPCookieProcessor):
3057 def __init__(self, cookiejar=None):
3058 compat_urllib_request.HTTPCookieProcessor.__init__(self, cookiejar)
3059
3060 def http_response(self, request, response):
3061 # Python 2 will choke on next HTTP request in row if there are non-ASCII
3062 # characters in Set-Cookie HTTP header of last response (see
3063 # https://github.com/ytdl-org/youtube-dl/issues/6769).
3064 # In order to at least prevent crashing we will percent encode Set-Cookie
3065 # header before HTTPCookieProcessor starts processing it.
3066 # if sys.version_info < (3, 0) and response.headers:
3067 # for set_cookie_header in ('Set-Cookie', 'Set-Cookie2'):
3068 # set_cookie = response.headers.get(set_cookie_header)
3069 # if set_cookie:
3070 # set_cookie_escaped = compat_urllib_parse.quote(set_cookie, b"%/;:@&=+$,!~*'()?#[] ")
3071 # if set_cookie != set_cookie_escaped:
3072 # del response.headers[set_cookie_header]
3073 # response.headers[set_cookie_header] = set_cookie_escaped
3074 return compat_urllib_request.HTTPCookieProcessor.http_response(self, request, response)
3075
3076 https_request = compat_urllib_request.HTTPCookieProcessor.http_request
3077 https_response = http_response
3078
3079
3080 class YoutubeDLRedirectHandler(compat_urllib_request.HTTPRedirectHandler):
3081 """YoutubeDL redirect handler
3082
3083 The code is based on HTTPRedirectHandler implementation from CPython [1].
3084
3085 This redirect handler solves two issues:
3086 - ensures redirect URL is always unicode under python 2
3087 - introduces support for experimental HTTP response status code
3088 308 Permanent Redirect [2] used by some sites [3]
3089
3090 1. https://github.com/python/cpython/blob/master/Lib/urllib/request.py
3091 2. https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308
3092 3. https://github.com/ytdl-org/youtube-dl/issues/28768
3093 """
3094
3095 http_error_301 = http_error_303 = http_error_307 = http_error_308 = compat_urllib_request.HTTPRedirectHandler.http_error_302
3096
3097 def redirect_request(self, req, fp, code, msg, headers, newurl):
3098 """Return a Request or None in response to a redirect.
3099
3100 This is called by the http_error_30x methods when a
3101 redirection response is received. If a redirection should
3102 take place, return a new Request to allow http_error_30x to
3103 perform the redirect. Otherwise, raise HTTPError if no-one
3104 else should try to handle this url. Return None if you can't
3105 but another Handler might.
3106 """
3107 m = req.get_method()
3108 if (not (code in (301, 302, 303, 307, 308) and m in ("GET", "HEAD")
3109 or code in (301, 302, 303) and m == "POST")):
3110 raise compat_HTTPError(req.full_url, code, msg, headers, fp)
3111 # Strictly (according to RFC 2616), 301 or 302 in response to
3112 # a POST MUST NOT cause a redirection without confirmation
3113 # from the user (of urllib.request, in this case). In practice,
3114 # essentially all clients do redirect in this case, so we do
3115 # the same.
3116
3117 # On python 2 urlh.geturl() may sometimes return redirect URL
3118 # as byte string instead of unicode. This workaround allows
3119 # to force it always return unicode.
3120 if sys.version_info[0] < 3:
3121 newurl = compat_str(newurl)
3122
3123 # Be conciliant with URIs containing a space. This is mainly
3124 # redundant with the more complete encoding done in http_error_302(),
3125 # but it is kept for compatibility with other callers.
3126 newurl = newurl.replace(' ', '%20')
3127
3128 CONTENT_HEADERS = ("content-length", "content-type")
3129 # NB: don't use dict comprehension for python 2.6 compatibility
3130 newheaders = dict((k, v) for k, v in req.headers.items()
3131 if k.lower() not in CONTENT_HEADERS)
3132 return compat_urllib_request.Request(
3133 newurl, headers=newheaders, origin_req_host=req.origin_req_host,
3134 unverifiable=True)
3135
3136
3137 def extract_timezone(date_str):
3138 m = re.search(
3139 r'''(?x)
3140 ^.{8,}? # >=8 char non-TZ prefix, if present
3141 (?P<tz>Z| # just the UTC Z, or
3142 (?:(?<=.\b\d{4}|\b\d{2}:\d\d)| # preceded by 4 digits or hh:mm or
3143 (?<!.\b[a-zA-Z]{3}|[a-zA-Z]{4}|..\b\d\d)) # not preceded by 3 alpha word or >= 4 alpha or 2 digits
3144 [ ]? # optional space
3145 (?P<sign>\+|-) # +/-
3146 (?P<hours>[0-9]{2}):?(?P<minutes>[0-9]{2}) # hh[:]mm
3147 $)
3148 ''', date_str)
3149 if not m:
3150 timezone = datetime.timedelta()
3151 else:
3152 date_str = date_str[:-len(m.group('tz'))]
3153 if not m.group('sign'):
3154 timezone = datetime.timedelta()
3155 else:
3156 sign = 1 if m.group('sign') == '+' else -1
3157 timezone = datetime.timedelta(
3158 hours=sign * int(m.group('hours')),
3159 minutes=sign * int(m.group('minutes')))
3160 return timezone, date_str
3161
3162
3163 def parse_iso8601(date_str, delimiter='T', timezone=None):
3164 """ Return a UNIX timestamp from the given date """
3165
3166 if date_str is None:
3167 return None
3168
3169 date_str = re.sub(r'\.[0-9]+', '', date_str)
3170
3171 if timezone is None:
3172 timezone, date_str = extract_timezone(date_str)
3173
3174 try:
3175 date_format = '%Y-%m-%d{0}%H:%M:%S'.format(delimiter)
3176 dt = datetime.datetime.strptime(date_str, date_format) - timezone
3177 return calendar.timegm(dt.timetuple())
3178 except ValueError:
3179 pass
3180
3181
3182 def date_formats(day_first=True):
3183 return DATE_FORMATS_DAY_FIRST if day_first else DATE_FORMATS_MONTH_FIRST
3184
3185
3186 def unified_strdate(date_str, day_first=True):
3187 """Return a string with the date in the format YYYYMMDD"""
3188
3189 if date_str is None:
3190 return None
3191 upload_date = None
3192 # Replace commas
3193 date_str = date_str.replace(',', ' ')
3194 # Remove AM/PM + timezone
3195 date_str = re.sub(r'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str)
3196 _, date_str = extract_timezone(date_str)
3197
3198 for expression in date_formats(day_first):
3199 try:
3200 upload_date = datetime.datetime.strptime(date_str, expression).strftime('%Y%m%d')
3201 except ValueError:
3202 pass
3203 if upload_date is None:
3204 timetuple = email.utils.parsedate_tz(date_str)
3205 if timetuple:
3206 try:
3207 upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
3208 except ValueError:
3209 pass
3210 if upload_date is not None:
3211 return compat_str(upload_date)
3212
3213
3214 def unified_timestamp(date_str, day_first=True):
3215 if date_str is None:
3216 return None
3217
3218 date_str = re.sub(r'[,|]', '', date_str)
3219
3220 pm_delta = 12 if re.search(r'(?i)PM', date_str) else 0
3221 timezone, date_str = extract_timezone(date_str)
3222
3223 # Remove AM/PM + timezone
3224 date_str = re.sub(r'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str)
3225
3226 # Remove unrecognized timezones from ISO 8601 alike timestamps
3227 m = re.search(r'\d{1,2}:\d{1,2}(?:\.\d+)?(?P<tz>\s*[A-Z]+)$', date_str)
3228 if m:
3229 date_str = date_str[:-len(m.group('tz'))]
3230
3231 # Python only supports microseconds, so remove nanoseconds
3232 m = re.search(r'^([0-9]{4,}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}\.[0-9]{6})[0-9]+$', date_str)
3233 if m:
3234 date_str = m.group(1)
3235
3236 for expression in date_formats(day_first):
3237 try:
3238 dt = datetime.datetime.strptime(date_str, expression) - timezone + datetime.timedelta(hours=pm_delta)
3239 return calendar.timegm(dt.timetuple())
3240 except ValueError:
3241 pass
3242 timetuple = email.utils.parsedate_tz(date_str)
3243 if timetuple:
3244 return calendar.timegm(timetuple) + pm_delta * 3600
3245
3246
3247 def determine_ext(url, default_ext='unknown_video'):
3248 if url is None or '.' not in url:
3249 return default_ext
3250 guess = url.partition('?')[0].rpartition('.')[2]
3251 if re.match(r'^[A-Za-z0-9]+$', guess):
3252 return guess
3253 # Try extract ext from URLs like http://example.com/foo/bar.mp4/?download
3254 elif guess.rstrip('/') in KNOWN_EXTENSIONS:
3255 return guess.rstrip('/')
3256 else:
3257 return default_ext
3258
3259
3260 def subtitles_filename(filename, sub_lang, sub_format, expected_real_ext=None):
3261 return replace_extension(filename, sub_lang + '.' + sub_format, expected_real_ext)
3262
3263
3264 def datetime_from_str(date_str, precision='auto', format='%Y%m%d'):
3265 """
3266 Return a datetime object from a string in the format YYYYMMDD or
3267 (now|today|date)[+-][0-9](microsecond|second|minute|hour|day|week|month|year)(s)?
3268
3269 format: string date format used to return datetime object from
3270 precision: round the time portion of a datetime object.
3271 auto|microsecond|second|minute|hour|day.
3272 auto: round to the unit provided in date_str (if applicable).
3273 """
3274 auto_precision = False
3275 if precision == 'auto':
3276 auto_precision = True
3277 precision = 'microsecond'
3278 today = datetime_round(datetime.datetime.now(), precision)
3279 if date_str in ('now', 'today'):
3280 return today
3281 if date_str == 'yesterday':
3282 return today - datetime.timedelta(days=1)
3283 match = re.match(
3284 r'(?P<start>.+)(?P<sign>[+-])(?P<time>\d+)(?P<unit>microsecond|second|minute|hour|day|week|month|year)(s)?',
3285 date_str)
3286 if match is not None:
3287 start_time = datetime_from_str(match.group('start'), precision, format)
3288 time = int(match.group('time')) * (-1 if match.group('sign') == '-' else 1)
3289 unit = match.group('unit')
3290 if unit == 'month' or unit == 'year':
3291 new_date = datetime_add_months(start_time, time * 12 if unit == 'year' else time)
3292 unit = 'day'
3293 else:
3294 if unit == 'week':
3295 unit = 'day'
3296 time *= 7
3297 delta = datetime.timedelta(**{unit + 's': time})
3298 new_date = start_time + delta
3299 if auto_precision:
3300 return datetime_round(new_date, unit)
3301 return new_date
3302
3303 return datetime_round(datetime.datetime.strptime(date_str, format), precision)
3304
3305
3306 def date_from_str(date_str, format='%Y%m%d'):
3307 """
3308 Return a datetime object from a string in the format YYYYMMDD or
3309 (now|today|date)[+-][0-9](microsecond|second|minute|hour|day|week|month|year)(s)?
3310
3311 format: string date format used to return datetime object from
3312 """
3313 return datetime_from_str(date_str, precision='microsecond', format=format).date()
3314
3315
3316 def datetime_add_months(dt, months):
3317 """Increment/Decrement a datetime object by months."""
3318 month = dt.month + months - 1
3319 year = dt.year + month // 12
3320 month = month % 12 + 1
3321 day = min(dt.day, calendar.monthrange(year, month)[1])
3322 return dt.replace(year, month, day)
3323
3324
3325 def datetime_round(dt, precision='day'):
3326 """
3327 Round a datetime object's time to a specific precision
3328 """
3329 if precision == 'microsecond':
3330 return dt
3331
3332 unit_seconds = {
3333 'day': 86400,
3334 'hour': 3600,
3335 'minute': 60,
3336 'second': 1,
3337 }
3338 roundto = lambda x, n: ((x + n / 2) // n) * n
3339 timestamp = calendar.timegm(dt.timetuple())
3340 return datetime.datetime.utcfromtimestamp(roundto(timestamp, unit_seconds[precision]))
3341
3342
3343 def hyphenate_date(date_str):
3344 """
3345 Convert a date in 'YYYYMMDD' format to 'YYYY-MM-DD' format"""
3346 match = re.match(r'^(\d\d\d\d)(\d\d)(\d\d)$', date_str)
3347 if match is not None:
3348 return '-'.join(match.groups())
3349 else:
3350 return date_str
3351
3352
3353 class DateRange(object):
3354 """Represents a time interval between two dates"""
3355
3356 def __init__(self, start=None, end=None):
3357 """start and end must be strings in the format accepted by date"""
3358 if start is not None:
3359 self.start = date_from_str(start)
3360 else:
3361 self.start = datetime.datetime.min.date()
3362 if end is not None:
3363 self.end = date_from_str(end)
3364 else:
3365 self.end = datetime.datetime.max.date()
3366 if self.start > self.end:
3367 raise ValueError('Date range: "%s" , the start date must be before the end date' % self)
3368
3369 @classmethod
3370 def day(cls, day):
3371 """Returns a range that only contains the given day"""
3372 return cls(day, day)
3373
3374 def __contains__(self, date):
3375 """Check if the date is in the range"""
3376 if not isinstance(date, datetime.date):
3377 date = date_from_str(date)
3378 return self.start <= date <= self.end
3379
3380 def __str__(self):
3381 return '%s - %s' % (self.start.isoformat(), self.end.isoformat())
3382
3383
3384 def platform_name():
3385 """ Returns the platform name as a compat_str """
3386 res = platform.platform()
3387 if isinstance(res, bytes):
3388 res = res.decode(preferredencoding())
3389
3390 assert isinstance(res, compat_str)
3391 return res
3392
3393
3394 def get_windows_version():
3395 ''' Get Windows version. None if it's not running on Windows '''
3396 if compat_os_name == 'nt':
3397 return version_tuple(platform.win32_ver()[1])
3398 else:
3399 return None
3400
3401
3402 def _windows_write_string(s, out):
3403 """ Returns True if the string was written using special methods,
3404 False if it has yet to be written out."""
3405 # Adapted from http://stackoverflow.com/a/3259271/35070
3406
3407 import ctypes
3408 import ctypes.wintypes
3409
3410 WIN_OUTPUT_IDS = {
3411 1: -11,
3412 2: -12,
3413 }
3414
3415 try:
3416 fileno = out.fileno()
3417 except AttributeError:
3418 # If the output stream doesn't have a fileno, it's virtual
3419 return False
3420 except io.UnsupportedOperation:
3421 # Some strange Windows pseudo files?
3422 return False
3423 if fileno not in WIN_OUTPUT_IDS:
3424 return False
3425
3426 GetStdHandle = compat_ctypes_WINFUNCTYPE(
3427 ctypes.wintypes.HANDLE, ctypes.wintypes.DWORD)(
3428 ('GetStdHandle', ctypes.windll.kernel32))
3429 h = GetStdHandle(WIN_OUTPUT_IDS[fileno])
3430
3431 WriteConsoleW = compat_ctypes_WINFUNCTYPE(
3432 ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE, ctypes.wintypes.LPWSTR,
3433 ctypes.wintypes.DWORD, ctypes.POINTER(ctypes.wintypes.DWORD),
3434 ctypes.wintypes.LPVOID)(('WriteConsoleW', ctypes.windll.kernel32))
3435 written = ctypes.wintypes.DWORD(0)
3436
3437 GetFileType = compat_ctypes_WINFUNCTYPE(ctypes.wintypes.DWORD, ctypes.wintypes.DWORD)(('GetFileType', ctypes.windll.kernel32))
3438 FILE_TYPE_CHAR = 0x0002
3439 FILE_TYPE_REMOTE = 0x8000
3440 GetConsoleMode = compat_ctypes_WINFUNCTYPE(
3441 ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE,
3442 ctypes.POINTER(ctypes.wintypes.DWORD))(
3443 ('GetConsoleMode', ctypes.windll.kernel32))
3444 INVALID_HANDLE_VALUE = ctypes.wintypes.DWORD(-1).value
3445
3446 def not_a_console(handle):
3447 if handle == INVALID_HANDLE_VALUE or handle is None:
3448 return True
3449 return ((GetFileType(handle) & ~FILE_TYPE_REMOTE) != FILE_TYPE_CHAR
3450 or GetConsoleMode(handle, ctypes.byref(ctypes.wintypes.DWORD())) == 0)
3451
3452 if not_a_console(h):
3453 return False
3454
3455 def next_nonbmp_pos(s):
3456 try:
3457 return next(i for i, c in enumerate(s) if ord(c) > 0xffff)
3458 except StopIteration:
3459 return len(s)
3460
3461 while s:
3462 count = min(next_nonbmp_pos(s), 1024)
3463
3464 ret = WriteConsoleW(
3465 h, s, count if count else 2, ctypes.byref(written), None)
3466 if ret == 0:
3467 raise OSError('Failed to write string')
3468 if not count: # We just wrote a non-BMP character
3469 assert written.value == 2
3470 s = s[1:]
3471 else:
3472 assert written.value > 0
3473 s = s[written.value:]
3474 return True
3475
3476
3477 def write_string(s, out=None, encoding=None):
3478 if out is None:
3479 out = sys.stderr
3480 assert type(s) == compat_str
3481
3482 if sys.platform == 'win32' and encoding is None and hasattr(out, 'fileno'):
3483 if _windows_write_string(s, out):
3484 return
3485
3486 if ('b' in getattr(out, 'mode', '')
3487 or sys.version_info[0] < 3): # Python 2 lies about mode of sys.stderr
3488 byt = s.encode(encoding or preferredencoding(), 'ignore')
3489 out.write(byt)
3490 elif hasattr(out, 'buffer'):
3491 enc = encoding or getattr(out, 'encoding', None) or preferredencoding()
3492 byt = s.encode(enc, 'ignore')
3493 out.buffer.write(byt)
3494 else:
3495 out.write(s)
3496 out.flush()
3497
3498
3499 def bytes_to_intlist(bs):
3500 if not bs:
3501 return []
3502 if isinstance(bs[0], int): # Python 3
3503 return list(bs)
3504 else:
3505 return [ord(c) for c in bs]
3506
3507
3508 def intlist_to_bytes(xs):
3509 if not xs:
3510 return b''
3511 return compat_struct_pack('%dB' % len(xs), *xs)
3512
3513
3514 # Cross-platform file locking
3515 if sys.platform == 'win32':
3516 import ctypes.wintypes
3517 import msvcrt
3518
3519 class OVERLAPPED(ctypes.Structure):
3520 _fields_ = [
3521 ('Internal', ctypes.wintypes.LPVOID),
3522 ('InternalHigh', ctypes.wintypes.LPVOID),
3523 ('Offset', ctypes.wintypes.DWORD),
3524 ('OffsetHigh', ctypes.wintypes.DWORD),
3525 ('hEvent', ctypes.wintypes.HANDLE),
3526 ]
3527
3528 kernel32 = ctypes.windll.kernel32
3529 LockFileEx = kernel32.LockFileEx
3530 LockFileEx.argtypes = [
3531 ctypes.wintypes.HANDLE, # hFile
3532 ctypes.wintypes.DWORD, # dwFlags
3533 ctypes.wintypes.DWORD, # dwReserved
3534 ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
3535 ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
3536 ctypes.POINTER(OVERLAPPED) # Overlapped
3537 ]
3538 LockFileEx.restype = ctypes.wintypes.BOOL
3539 UnlockFileEx = kernel32.UnlockFileEx
3540 UnlockFileEx.argtypes = [
3541 ctypes.wintypes.HANDLE, # hFile
3542 ctypes.wintypes.DWORD, # dwReserved
3543 ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
3544 ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
3545 ctypes.POINTER(OVERLAPPED) # Overlapped
3546 ]
3547 UnlockFileEx.restype = ctypes.wintypes.BOOL
3548 whole_low = 0xffffffff
3549 whole_high = 0x7fffffff
3550
3551 def _lock_file(f, exclusive):
3552 overlapped = OVERLAPPED()
3553 overlapped.Offset = 0
3554 overlapped.OffsetHigh = 0
3555 overlapped.hEvent = 0
3556 f._lock_file_overlapped_p = ctypes.pointer(overlapped)
3557 handle = msvcrt.get_osfhandle(f.fileno())
3558 if not LockFileEx(handle, 0x2 if exclusive else 0x0, 0,
3559 whole_low, whole_high, f._lock_file_overlapped_p):
3560 raise OSError('Locking file failed: %r' % ctypes.FormatError())
3561
3562 def _unlock_file(f):
3563 assert f._lock_file_overlapped_p
3564 handle = msvcrt.get_osfhandle(f.fileno())
3565 if not UnlockFileEx(handle, 0,
3566 whole_low, whole_high, f._lock_file_overlapped_p):
3567 raise OSError('Unlocking file failed: %r' % ctypes.FormatError())
3568
3569 else:
3570 # Some platforms, such as Jython, is missing fcntl
3571 try:
3572 import fcntl
3573
3574 def _lock_file(f, exclusive):
3575 fcntl.flock(f, fcntl.LOCK_EX if exclusive else fcntl.LOCK_SH)
3576
3577 def _unlock_file(f):
3578 fcntl.flock(f, fcntl.LOCK_UN)
3579 except ImportError:
3580 UNSUPPORTED_MSG = 'file locking is not supported on this platform'
3581
3582 def _lock_file(f, exclusive):
3583 raise IOError(UNSUPPORTED_MSG)
3584
3585 def _unlock_file(f):
3586 raise IOError(UNSUPPORTED_MSG)
3587
3588
3589 class locked_file(object):
3590 def __init__(self, filename, mode, encoding=None):
3591 assert mode in ['r', 'a', 'w']
3592 self.f = io.open(filename, mode, encoding=encoding)
3593 self.mode = mode
3594
3595 def __enter__(self):
3596 exclusive = self.mode != 'r'
3597 try:
3598 _lock_file(self.f, exclusive)
3599 except IOError:
3600 self.f.close()
3601 raise
3602 return self
3603
3604 def __exit__(self, etype, value, traceback):
3605 try:
3606 _unlock_file(self.f)
3607 finally:
3608 self.f.close()
3609
3610 def __iter__(self):
3611 return iter(self.f)
3612
3613 def write(self, *args):
3614 return self.f.write(*args)
3615
3616 def read(self, *args):
3617 return self.f.read(*args)
3618
3619
3620 def get_filesystem_encoding():
3621 encoding = sys.getfilesystemencoding()
3622 return encoding if encoding is not None else 'utf-8'
3623
3624
3625 def shell_quote(args):
3626 quoted_args = []
3627 encoding = get_filesystem_encoding()
3628 for a in args:
3629 if isinstance(a, bytes):
3630 # We may get a filename encoded with 'encodeFilename'
3631 a = a.decode(encoding)
3632 quoted_args.append(compat_shlex_quote(a))
3633 return ' '.join(quoted_args)
3634
3635
3636 def smuggle_url(url, data):
3637 """ Pass additional data in a URL for internal use. """
3638
3639 url, idata = unsmuggle_url(url, {})
3640 data.update(idata)
3641 sdata = compat_urllib_parse_urlencode(
3642 {'__youtubedl_smuggle': json.dumps(data)})
3643 return url + '#' + sdata
3644
3645
3646 def unsmuggle_url(smug_url, default=None):
3647 if '#__youtubedl_smuggle' not in smug_url:
3648 return smug_url, default
3649 url, _, sdata = smug_url.rpartition('#')
3650 jsond = compat_parse_qs(sdata)['__youtubedl_smuggle'][0]
3651 data = json.loads(jsond)
3652 return url, data
3653
3654
3655 def format_bytes(bytes):
3656 if bytes is None:
3657 return 'N/A'
3658 if type(bytes) is str:
3659 bytes = float(bytes)
3660 if bytes == 0.0:
3661 exponent = 0
3662 else:
3663 exponent = int(math.log(bytes, 1024.0))
3664 suffix = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'][exponent]
3665 converted = float(bytes) / float(1024 ** exponent)
3666 return '%.2f%s' % (converted, suffix)
3667
3668
3669 def lookup_unit_table(unit_table, s):
3670 units_re = '|'.join(re.escape(u) for u in unit_table)
3671 m = re.match(
3672 r'(?P<num>[0-9]+(?:[,.][0-9]*)?)\s*(?P<unit>%s)\b' % units_re, s)
3673 if not m:
3674 return None
3675 num_str = m.group('num').replace(',', '.')
3676 mult = unit_table[m.group('unit')]
3677 return int(float(num_str) * mult)
3678
3679
3680 def parse_filesize(s):
3681 if s is None:
3682 return None
3683
3684 # The lower-case forms are of course incorrect and unofficial,
3685 # but we support those too
3686 _UNIT_TABLE = {
3687 'B': 1,
3688 'b': 1,
3689 'bytes': 1,
3690 'KiB': 1024,
3691 'KB': 1000,
3692 'kB': 1024,
3693 'Kb': 1000,
3694 'kb': 1000,
3695 'kilobytes': 1000,
3696 'kibibytes': 1024,
3697 'MiB': 1024 ** 2,
3698 'MB': 1000 ** 2,
3699 'mB': 1024 ** 2,
3700 'Mb': 1000 ** 2,
3701 'mb': 1000 ** 2,
3702 'megabytes': 1000 ** 2,
3703 'mebibytes': 1024 ** 2,
3704 'GiB': 1024 ** 3,
3705 'GB': 1000 ** 3,
3706 'gB': 1024 ** 3,
3707 'Gb': 1000 ** 3,
3708 'gb': 1000 ** 3,
3709 'gigabytes': 1000 ** 3,
3710 'gibibytes': 1024 ** 3,
3711 'TiB': 1024 ** 4,
3712 'TB': 1000 ** 4,
3713 'tB': 1024 ** 4,
3714 'Tb': 1000 ** 4,
3715 'tb': 1000 ** 4,
3716 'terabytes': 1000 ** 4,
3717 'tebibytes': 1024 ** 4,
3718 'PiB': 1024 ** 5,
3719 'PB': 1000 ** 5,
3720 'pB': 1024 ** 5,
3721 'Pb': 1000 ** 5,
3722 'pb': 1000 ** 5,
3723 'petabytes': 1000 ** 5,
3724 'pebibytes': 1024 ** 5,
3725 'EiB': 1024 ** 6,
3726 'EB': 1000 ** 6,
3727 'eB': 1024 ** 6,
3728 'Eb': 1000 ** 6,
3729 'eb': 1000 ** 6,
3730 'exabytes': 1000 ** 6,
3731 'exbibytes': 1024 ** 6,
3732 'ZiB': 1024 ** 7,
3733 'ZB': 1000 ** 7,
3734 'zB': 1024 ** 7,
3735 'Zb': 1000 ** 7,
3736 'zb': 1000 ** 7,
3737 'zettabytes': 1000 ** 7,
3738 'zebibytes': 1024 ** 7,
3739 'YiB': 1024 ** 8,
3740 'YB': 1000 ** 8,
3741 'yB': 1024 ** 8,
3742 'Yb': 1000 ** 8,
3743 'yb': 1000 ** 8,
3744 'yottabytes': 1000 ** 8,
3745 'yobibytes': 1024 ** 8,
3746 }
3747
3748 return lookup_unit_table(_UNIT_TABLE, s)
3749
3750
3751 def parse_count(s):
3752 if s is None:
3753 return None
3754
3755 s = s.strip()
3756
3757 if re.match(r'^[\d,.]+$', s):
3758 return str_to_int(s)
3759
3760 _UNIT_TABLE = {
3761 'k': 1000,
3762 'K': 1000,
3763 'm': 1000 ** 2,
3764 'M': 1000 ** 2,
3765 'kk': 1000 ** 2,
3766 'KK': 1000 ** 2,
3767 }
3768
3769 return lookup_unit_table(_UNIT_TABLE, s)
3770
3771
3772 def parse_resolution(s):
3773 if s is None:
3774 return {}
3775
3776 mobj = re.search(r'(?<![a-zA-Z0-9])(?P<w>\d+)\s*[xX×,]\s*(?P<h>\d+)(?![a-zA-Z0-9])', s)
3777 if mobj:
3778 return {
3779 'width': int(mobj.group('w')),
3780 'height': int(mobj.group('h')),
3781 }
3782
3783 mobj = re.search(r'(?<![a-zA-Z0-9])(\d+)[pPiI](?![a-zA-Z0-9])', s)
3784 if mobj:
3785 return {'height': int(mobj.group(1))}
3786
3787 mobj = re.search(r'\b([48])[kK]\b', s)
3788 if mobj:
3789 return {'height': int(mobj.group(1)) * 540}
3790
3791 return {}
3792
3793
3794 def parse_bitrate(s):
3795 if not isinstance(s, compat_str):
3796 return
3797 mobj = re.search(r'\b(\d+)\s*kbps', s)
3798 if mobj:
3799 return int(mobj.group(1))
3800
3801
3802 def month_by_name(name, lang='en'):
3803 """ Return the number of a month by (locale-independently) English name """
3804
3805 month_names = MONTH_NAMES.get(lang, MONTH_NAMES['en'])
3806
3807 try:
3808 return month_names.index(name) + 1
3809 except ValueError:
3810 return None
3811
3812
3813 def month_by_abbreviation(abbrev):
3814 """ Return the number of a month by (locale-independently) English
3815 abbreviations """
3816
3817 try:
3818 return [s[:3] for s in ENGLISH_MONTH_NAMES].index(abbrev) + 1
3819 except ValueError:
3820 return None
3821
3822
3823 def fix_xml_ampersands(xml_str):
3824 """Replace all the '&' by '&amp;' in XML"""
3825 return re.sub(
3826 r'&(?!amp;|lt;|gt;|apos;|quot;|#x[0-9a-fA-F]{,4};|#[0-9]{,4};)',
3827 '&amp;',
3828 xml_str)
3829
3830
3831 def setproctitle(title):
3832 assert isinstance(title, compat_str)
3833
3834 # ctypes in Jython is not complete
3835 # http://bugs.jython.org/issue2148
3836 if sys.platform.startswith('java'):
3837 return
3838
3839 try:
3840 libc = ctypes.cdll.LoadLibrary('libc.so.6')
3841 except OSError:
3842 return
3843 except TypeError:
3844 # LoadLibrary in Windows Python 2.7.13 only expects
3845 # a bytestring, but since unicode_literals turns
3846 # every string into a unicode string, it fails.
3847 return
3848 title_bytes = title.encode('utf-8')
3849 buf = ctypes.create_string_buffer(len(title_bytes))
3850 buf.value = title_bytes
3851 try:
3852 libc.prctl(15, buf, 0, 0, 0)
3853 except AttributeError:
3854 return # Strange libc, just skip this
3855
3856
3857 def remove_start(s, start):
3858 return s[len(start):] if s is not None and s.startswith(start) else s
3859
3860
3861 def remove_end(s, end):
3862 return s[:-len(end)] if s is not None and s.endswith(end) else s
3863
3864
3865 def remove_quotes(s):
3866 if s is None or len(s) < 2:
3867 return s
3868 for quote in ('"', "'", ):
3869 if s[0] == quote and s[-1] == quote:
3870 return s[1:-1]
3871 return s
3872
3873
3874 def get_domain(url):
3875 domain = re.match(r'(?:https?:\/\/)?(?:www\.)?(?P<domain>[^\n\/]+\.[^\n\/]+)(?:\/(.*))?', url)
3876 return domain.group('domain') if domain else None
3877
3878
3879 def url_basename(url):
3880 path = compat_urlparse.urlparse(url).path
3881 return path.strip('/').split('/')[-1]
3882
3883
3884 def base_url(url):
3885 return re.match(r'https?://[^?#&]+/', url).group()
3886
3887
3888 def urljoin(base, path):
3889 if isinstance(path, bytes):
3890 path = path.decode('utf-8')
3891 if not isinstance(path, compat_str) or not path:
3892 return None
3893 if re.match(r'^(?:[a-zA-Z][a-zA-Z0-9+-.]*:)?//', path):
3894 return path
3895 if isinstance(base, bytes):
3896 base = base.decode('utf-8')
3897 if not isinstance(base, compat_str) or not re.match(
3898 r'^(?:https?:)?//', base):
3899 return None
3900 return compat_urlparse.urljoin(base, path)
3901
3902
3903 class HEADRequest(compat_urllib_request.Request):
3904 def get_method(self):
3905 return 'HEAD'
3906
3907
3908 class PUTRequest(compat_urllib_request.Request):
3909 def get_method(self):
3910 return 'PUT'
3911
3912
3913 def int_or_none(v, scale=1, default=None, get_attr=None, invscale=1):
3914 if get_attr:
3915 if v is not None:
3916 v = getattr(v, get_attr, None)
3917 if v == '':
3918 v = None
3919 if v is None:
3920 return default
3921 try:
3922 return int(v) * invscale // scale
3923 except (ValueError, TypeError, OverflowError):
3924 return default
3925
3926
3927 def str_or_none(v, default=None):
3928 return default if v is None else compat_str(v)
3929
3930
3931 def str_to_int(int_str):
3932 """ A more relaxed version of int_or_none """
3933 if isinstance(int_str, compat_integer_types):
3934 return int_str
3935 elif isinstance(int_str, compat_str):
3936 int_str = re.sub(r'[,\.\+]', '', int_str)
3937 return int_or_none(int_str)
3938
3939
3940 def float_or_none(v, scale=1, invscale=1, default=None):
3941 if v is None:
3942 return default
3943 try:
3944 return float(v) * invscale / scale
3945 except (ValueError, TypeError):
3946 return default
3947
3948
3949 def bool_or_none(v, default=None):
3950 return v if isinstance(v, bool) else default
3951
3952
3953 def strip_or_none(v, default=None):
3954 return v.strip() if isinstance(v, compat_str) else default
3955
3956
3957 def url_or_none(url):
3958 if not url or not isinstance(url, compat_str):
3959 return None
3960 url = url.strip()
3961 return url if re.match(r'^(?:(?:https?|rt(?:m(?:pt?[es]?|fp)|sp[su]?)|mms|ftps?):)?//', url) else None
3962
3963
3964 def strftime_or_none(timestamp, date_format, default=None):
3965 datetime_object = None
3966 try:
3967 if isinstance(timestamp, compat_numeric_types): # unix timestamp
3968 datetime_object = datetime.datetime.utcfromtimestamp(timestamp)
3969 elif isinstance(timestamp, compat_str): # assume YYYYMMDD
3970 datetime_object = datetime.datetime.strptime(timestamp, '%Y%m%d')
3971 return datetime_object.strftime(date_format)
3972 except (ValueError, TypeError, AttributeError):
3973 return default
3974
3975
3976 def parse_duration(s):
3977 if not isinstance(s, compat_basestring):
3978 return None
3979
3980 s = s.strip()
3981
3982 days, hours, mins, secs, ms = [None] * 5
3983 m = re.match(r'(?:(?:(?:(?P<days>[0-9]+):)?(?P<hours>[0-9]+):)?(?P<mins>[0-9]+):)?(?P<secs>[0-9]+)(?P<ms>\.[0-9]+)?Z?$', s)
3984 if m:
3985 days, hours, mins, secs, ms = m.groups()
3986 else:
3987 m = re.match(
3988 r'''(?ix)(?:P?
3989 (?:
3990 [0-9]+\s*y(?:ears?)?\s*
3991 )?
3992 (?:
3993 [0-9]+\s*m(?:onths?)?\s*
3994 )?
3995 (?:
3996 [0-9]+\s*w(?:eeks?)?\s*
3997 )?
3998 (?:
3999 (?P<days>[0-9]+)\s*d(?:ays?)?\s*
4000 )?
4001 T)?
4002 (?:
4003 (?P<hours>[0-9]+)\s*h(?:ours?)?\s*
4004 )?
4005 (?:
4006 (?P<mins>[0-9]+)\s*m(?:in(?:ute)?s?)?\s*
4007 )?
4008 (?:
4009 (?P<secs>[0-9]+)(?P<ms>\.[0-9]+)?\s*s(?:ec(?:ond)?s?)?\s*
4010 )?Z?$''', s)
4011 if m:
4012 days, hours, mins, secs, ms = m.groups()
4013 else:
4014 m = re.match(r'(?i)(?:(?P<hours>[0-9.]+)\s*(?:hours?)|(?P<mins>[0-9.]+)\s*(?:mins?\.?|minutes?)\s*)Z?$', s)
4015 if m:
4016 hours, mins = m.groups()
4017 else:
4018 return None
4019
4020 duration = 0
4021 if secs:
4022 duration += float(secs)
4023 if mins:
4024 duration += float(mins) * 60
4025 if hours:
4026 duration += float(hours) * 60 * 60
4027 if days:
4028 duration += float(days) * 24 * 60 * 60
4029 if ms:
4030 duration += float(ms)
4031 return duration
4032
4033
4034 def prepend_extension(filename, ext, expected_real_ext=None):
4035 name, real_ext = os.path.splitext(filename)
4036 return (
4037 '{0}.{1}{2}'.format(name, ext, real_ext)
4038 if not expected_real_ext or real_ext[1:] == expected_real_ext
4039 else '{0}.{1}'.format(filename, ext))
4040
4041
4042 def replace_extension(filename, ext, expected_real_ext=None):
4043 name, real_ext = os.path.splitext(filename)
4044 return '{0}.{1}'.format(
4045 name if not expected_real_ext or real_ext[1:] == expected_real_ext else filename,
4046 ext)
4047
4048
4049 def check_executable(exe, args=[]):
4050 """ Checks if the given binary is installed somewhere in PATH, and returns its name.
4051 args can be a list of arguments for a short output (like -version) """
4052 try:
4053 Popen([exe] + args, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate_or_kill()
4054 except OSError:
4055 return False
4056 return exe
4057
4058
4059 def _get_exe_version_output(exe, args):
4060 try:
4061 # STDIN should be redirected too. On UNIX-like systems, ffmpeg triggers
4062 # SIGTTOU if yt-dlp is run in the background.
4063 # See https://github.com/ytdl-org/youtube-dl/issues/955#issuecomment-209789656
4064 out, _ = Popen(
4065 [encodeArgument(exe)] + args, stdin=subprocess.PIPE,
4066 stdout=subprocess.PIPE, stderr=subprocess.STDOUT).communicate_or_kill()
4067 except OSError:
4068 return False
4069 if isinstance(out, bytes): # Python 2.x
4070 out = out.decode('ascii', 'ignore')
4071 return out
4072
4073
4074 def detect_exe_version(output, version_re=None, unrecognized='present'):
4075 assert isinstance(output, compat_str)
4076 if version_re is None:
4077 version_re = r'version\s+([-0-9._a-zA-Z]+)'
4078 m = re.search(version_re, output)
4079 if m:
4080 return m.group(1)
4081 else:
4082 return unrecognized
4083
4084
4085 def get_exe_version(exe, args=['--version'],
4086 version_re=None, unrecognized='present'):
4087 """ Returns the version of the specified executable,
4088 or False if the executable is not present """
4089 out = _get_exe_version_output(exe, args)
4090 return detect_exe_version(out, version_re, unrecognized) if out else False
4091
4092
4093 class LazyList(collections.abc.Sequence):
4094 ''' Lazy immutable list from an iterable
4095 Note that slices of a LazyList are lists and not LazyList'''
4096
4097 class IndexError(IndexError):
4098 pass
4099
4100 def __init__(self, iterable, *, reverse=False, _cache=None):
4101 self.__iterable = iter(iterable)
4102 self.__cache = [] if _cache is None else _cache
4103 self.__reversed = reverse
4104
4105 def __iter__(self):
4106 if self.__reversed:
4107 # We need to consume the entire iterable to iterate in reverse
4108 yield from self.exhaust()
4109 return
4110 yield from self.__cache
4111 for item in self.__iterable:
4112 self.__cache.append(item)
4113 yield item
4114
4115 def __exhaust(self):
4116 self.__cache.extend(self.__iterable)
4117 # Discard the emptied iterable to make it pickle-able
4118 self.__iterable = []
4119 return self.__cache
4120
4121 def exhaust(self):
4122 ''' Evaluate the entire iterable '''
4123 return self.__exhaust()[::-1 if self.__reversed else 1]
4124
4125 @staticmethod
4126 def __reverse_index(x):
4127 return None if x is None else -(x + 1)
4128
4129 def __getitem__(self, idx):
4130 if isinstance(idx, slice):
4131 if self.__reversed:
4132 idx = slice(self.__reverse_index(idx.start), self.__reverse_index(idx.stop), -(idx.step or 1))
4133 start, stop, step = idx.start, idx.stop, idx.step or 1
4134 elif isinstance(idx, int):
4135 if self.__reversed:
4136 idx = self.__reverse_index(idx)
4137 start, stop, step = idx, idx, 0
4138 else:
4139 raise TypeError('indices must be integers or slices')
4140 if ((start or 0) < 0 or (stop or 0) < 0
4141 or (start is None and step < 0)
4142 or (stop is None and step > 0)):
4143 # We need to consume the entire iterable to be able to slice from the end
4144 # Obviously, never use this with infinite iterables
4145 self.__exhaust()
4146 try:
4147 return self.__cache[idx]
4148 except IndexError as e:
4149 raise self.IndexError(e) from e
4150 n = max(start or 0, stop or 0) - len(self.__cache) + 1
4151 if n > 0:
4152 self.__cache.extend(itertools.islice(self.__iterable, n))
4153 try:
4154 return self.__cache[idx]
4155 except IndexError as e:
4156 raise self.IndexError(e) from e
4157
4158 def __bool__(self):
4159 try:
4160 self[-1] if self.__reversed else self[0]
4161 except self.IndexError:
4162 return False
4163 return True
4164
4165 def __len__(self):
4166 self.__exhaust()
4167 return len(self.__cache)
4168
4169 def __reversed__(self):
4170 return type(self)(self.__iterable, reverse=not self.__reversed, _cache=self.__cache)
4171
4172 def __copy__(self):
4173 return type(self)(self.__iterable, reverse=self.__reversed, _cache=self.__cache)
4174
4175 def __deepcopy__(self, memo):
4176 # FIXME: This is actually just a shallow copy
4177 id_ = id(self)
4178 memo[id_] = self.__copy__()
4179 return memo[id_]
4180
4181 def __repr__(self):
4182 # repr and str should mimic a list. So we exhaust the iterable
4183 return repr(self.exhaust())
4184
4185 def __str__(self):
4186 return repr(self.exhaust())
4187
4188
4189 class PagedList:
4190
4191 class IndexError(IndexError):
4192 pass
4193
4194 def __len__(self):
4195 # This is only useful for tests
4196 return len(self.getslice())
4197
4198 def __init__(self, pagefunc, pagesize, use_cache=True):
4199 self._pagefunc = pagefunc
4200 self._pagesize = pagesize
4201 self._use_cache = use_cache
4202 self._cache = {}
4203
4204 def getpage(self, pagenum):
4205 page_results = self._cache.get(pagenum)
4206 if page_results is None:
4207 page_results = list(self._pagefunc(pagenum))
4208 if self._use_cache:
4209 self._cache[pagenum] = page_results
4210 return page_results
4211
4212 def getslice(self, start=0, end=None):
4213 return list(self._getslice(start, end))
4214
4215 def _getslice(self, start, end):
4216 raise NotImplementedError('This method must be implemented by subclasses')
4217
4218 def __getitem__(self, idx):
4219 # NOTE: cache must be enabled if this is used
4220 if not isinstance(idx, int) or idx < 0:
4221 raise TypeError('indices must be non-negative integers')
4222 entries = self.getslice(idx, idx + 1)
4223 if not entries:
4224 raise self.IndexError()
4225 return entries[0]
4226
4227
4228 class OnDemandPagedList(PagedList):
4229 def _getslice(self, start, end):
4230 for pagenum in itertools.count(start // self._pagesize):
4231 firstid = pagenum * self._pagesize
4232 nextfirstid = pagenum * self._pagesize + self._pagesize
4233 if start >= nextfirstid:
4234 continue
4235
4236 startv = (
4237 start % self._pagesize
4238 if firstid <= start < nextfirstid
4239 else 0)
4240 endv = (
4241 ((end - 1) % self._pagesize) + 1
4242 if (end is not None and firstid <= end <= nextfirstid)
4243 else None)
4244
4245 page_results = self.getpage(pagenum)
4246 if startv != 0 or endv is not None:
4247 page_results = page_results[startv:endv]
4248 yield from page_results
4249
4250 # A little optimization - if current page is not "full", ie. does
4251 # not contain page_size videos then we can assume that this page
4252 # is the last one - there are no more ids on further pages -
4253 # i.e. no need to query again.
4254 if len(page_results) + startv < self._pagesize:
4255 break
4256
4257 # If we got the whole page, but the next page is not interesting,
4258 # break out early as well
4259 if end == nextfirstid:
4260 break
4261
4262
4263 class InAdvancePagedList(PagedList):
4264 def __init__(self, pagefunc, pagecount, pagesize):
4265 self._pagecount = pagecount
4266 PagedList.__init__(self, pagefunc, pagesize, True)
4267
4268 def _getslice(self, start, end):
4269 start_page = start // self._pagesize
4270 end_page = (
4271 self._pagecount if end is None else (end // self._pagesize + 1))
4272 skip_elems = start - start_page * self._pagesize
4273 only_more = None if end is None else end - start
4274 for pagenum in range(start_page, end_page):
4275 page_results = self.getpage(pagenum)
4276 if skip_elems:
4277 page_results = page_results[skip_elems:]
4278 skip_elems = None
4279 if only_more is not None:
4280 if len(page_results) < only_more:
4281 only_more -= len(page_results)
4282 else:
4283 yield from page_results[:only_more]
4284 break
4285 yield from page_results
4286
4287
4288 def uppercase_escape(s):
4289 unicode_escape = codecs.getdecoder('unicode_escape')
4290 return re.sub(
4291 r'\\U[0-9a-fA-F]{8}',
4292 lambda m: unicode_escape(m.group(0))[0],
4293 s)
4294
4295
4296 def lowercase_escape(s):
4297 unicode_escape = codecs.getdecoder('unicode_escape')
4298 return re.sub(
4299 r'\\u[0-9a-fA-F]{4}',
4300 lambda m: unicode_escape(m.group(0))[0],
4301 s)
4302
4303
4304 def escape_rfc3986(s):
4305 """Escape non-ASCII characters as suggested by RFC 3986"""
4306 if sys.version_info < (3, 0) and isinstance(s, compat_str):
4307 s = s.encode('utf-8')
4308 return compat_urllib_parse.quote(s, b"%/;:@&=+$,!~*'()?#[]")
4309
4310
4311 def escape_url(url):
4312 """Escape URL as suggested by RFC 3986"""
4313 url_parsed = compat_urllib_parse_urlparse(url)
4314 return url_parsed._replace(
4315 netloc=url_parsed.netloc.encode('idna').decode('ascii'),
4316 path=escape_rfc3986(url_parsed.path),
4317 params=escape_rfc3986(url_parsed.params),
4318 query=escape_rfc3986(url_parsed.query),
4319 fragment=escape_rfc3986(url_parsed.fragment)
4320 ).geturl()
4321
4322
4323 def parse_qs(url):
4324 return compat_parse_qs(compat_urllib_parse_urlparse(url).query)
4325
4326
4327 def read_batch_urls(batch_fd):
4328 def fixup(url):
4329 if not isinstance(url, compat_str):
4330 url = url.decode('utf-8', 'replace')
4331 BOM_UTF8 = ('\xef\xbb\xbf', '\ufeff')
4332 for bom in BOM_UTF8:
4333 if url.startswith(bom):
4334 url = url[len(bom):]
4335 url = url.lstrip()
4336 if not url or url.startswith(('#', ';', ']')):
4337 return False
4338 # "#" cannot be stripped out since it is part of the URI
4339 # However, it can be safely stipped out if follwing a whitespace
4340 return re.split(r'\s#', url, 1)[0].rstrip()
4341
4342 with contextlib.closing(batch_fd) as fd:
4343 return [url for url in map(fixup, fd) if url]
4344
4345
4346 def urlencode_postdata(*args, **kargs):
4347 return compat_urllib_parse_urlencode(*args, **kargs).encode('ascii')
4348
4349
4350 def update_url_query(url, query):
4351 if not query:
4352 return url
4353 parsed_url = compat_urlparse.urlparse(url)
4354 qs = compat_parse_qs(parsed_url.query)
4355 qs.update(query)
4356 return compat_urlparse.urlunparse(parsed_url._replace(
4357 query=compat_urllib_parse_urlencode(qs, True)))
4358
4359
4360 def update_Request(req, url=None, data=None, headers={}, query={}):
4361 req_headers = req.headers.copy()
4362 req_headers.update(headers)
4363 req_data = data or req.data
4364 req_url = update_url_query(url or req.get_full_url(), query)
4365 req_get_method = req.get_method()
4366 if req_get_method == 'HEAD':
4367 req_type = HEADRequest
4368 elif req_get_method == 'PUT':
4369 req_type = PUTRequest
4370 else:
4371 req_type = compat_urllib_request.Request
4372 new_req = req_type(
4373 req_url, data=req_data, headers=req_headers,
4374 origin_req_host=req.origin_req_host, unverifiable=req.unverifiable)
4375 if hasattr(req, 'timeout'):
4376 new_req.timeout = req.timeout
4377 return new_req
4378
4379
4380 def _multipart_encode_impl(data, boundary):
4381 content_type = 'multipart/form-data; boundary=%s' % boundary
4382
4383 out = b''
4384 for k, v in data.items():
4385 out += b'--' + boundary.encode('ascii') + b'\r\n'
4386 if isinstance(k, compat_str):
4387 k = k.encode('utf-8')
4388 if isinstance(v, compat_str):
4389 v = v.encode('utf-8')
4390 # RFC 2047 requires non-ASCII field names to be encoded, while RFC 7578
4391 # suggests sending UTF-8 directly. Firefox sends UTF-8, too
4392 content = b'Content-Disposition: form-data; name="' + k + b'"\r\n\r\n' + v + b'\r\n'
4393 if boundary.encode('ascii') in content:
4394 raise ValueError('Boundary overlaps with data')
4395 out += content
4396
4397 out += b'--' + boundary.encode('ascii') + b'--\r\n'
4398
4399 return out, content_type
4400
4401
4402 def multipart_encode(data, boundary=None):
4403 '''
4404 Encode a dict to RFC 7578-compliant form-data
4405
4406 data:
4407 A dict where keys and values can be either Unicode or bytes-like
4408 objects.
4409 boundary:
4410 If specified a Unicode object, it's used as the boundary. Otherwise
4411 a random boundary is generated.
4412
4413 Reference: https://tools.ietf.org/html/rfc7578
4414 '''
4415 has_specified_boundary = boundary is not None
4416
4417 while True:
4418 if boundary is None:
4419 boundary = '---------------' + str(random.randrange(0x0fffffff, 0xffffffff))
4420
4421 try:
4422 out, content_type = _multipart_encode_impl(data, boundary)
4423 break
4424 except ValueError:
4425 if has_specified_boundary:
4426 raise
4427 boundary = None
4428
4429 return out, content_type
4430
4431
4432 def dict_get(d, key_or_keys, default=None, skip_false_values=True):
4433 if isinstance(key_or_keys, (list, tuple)):
4434 for key in key_or_keys:
4435 if key not in d or d[key] is None or skip_false_values and not d[key]:
4436 continue
4437 return d[key]
4438 return default
4439 return d.get(key_or_keys, default)
4440
4441
4442 def try_get(src, getter, expected_type=None):
4443 for get in variadic(getter):
4444 try:
4445 v = get(src)
4446 except (AttributeError, KeyError, TypeError, IndexError):
4447 pass
4448 else:
4449 if expected_type is None or isinstance(v, expected_type):
4450 return v
4451
4452
4453 def merge_dicts(*dicts):
4454 merged = {}
4455 for a_dict in dicts:
4456 for k, v in a_dict.items():
4457 if v is None:
4458 continue
4459 if (k not in merged
4460 or (isinstance(v, compat_str) and v
4461 and isinstance(merged[k], compat_str)
4462 and not merged[k])):
4463 merged[k] = v
4464 return merged
4465
4466
4467 def encode_compat_str(string, encoding=preferredencoding(), errors='strict'):
4468 return string if isinstance(string, compat_str) else compat_str(string, encoding, errors)
4469
4470
4471 US_RATINGS = {
4472 'G': 0,
4473 'PG': 10,
4474 'PG-13': 13,
4475 'R': 16,
4476 'NC': 18,
4477 }
4478
4479
4480 TV_PARENTAL_GUIDELINES = {
4481 'TV-Y': 0,
4482 'TV-Y7': 7,
4483 'TV-G': 0,
4484 'TV-PG': 0,
4485 'TV-14': 14,
4486 'TV-MA': 17,
4487 }
4488
4489
4490 def parse_age_limit(s):
4491 if type(s) == int:
4492 return s if 0 <= s <= 21 else None
4493 if not isinstance(s, compat_basestring):
4494 return None
4495 m = re.match(r'^(?P<age>\d{1,2})\+?$', s)
4496 if m:
4497 return int(m.group('age'))
4498 s = s.upper()
4499 if s in US_RATINGS:
4500 return US_RATINGS[s]
4501 m = re.match(r'^TV[_-]?(%s)$' % '|'.join(k[3:] for k in TV_PARENTAL_GUIDELINES), s)
4502 if m:
4503 return TV_PARENTAL_GUIDELINES['TV-' + m.group(1)]
4504 return None
4505
4506
4507 def strip_jsonp(code):
4508 return re.sub(
4509 r'''(?sx)^
4510 (?:window\.)?(?P<func_name>[a-zA-Z0-9_.$]*)
4511 (?:\s*&&\s*(?P=func_name))?
4512 \s*\(\s*(?P<callback_data>.*)\);?
4513 \s*?(?://[^\n]*)*$''',
4514 r'\g<callback_data>', code)
4515
4516
4517 def js_to_json(code, vars={}):
4518 # vars is a dict of var, val pairs to substitute
4519 COMMENT_RE = r'/\*(?:(?!\*/).)*?\*/|//[^\n]*\n'
4520 SKIP_RE = r'\s*(?:{comment})?\s*'.format(comment=COMMENT_RE)
4521 INTEGER_TABLE = (
4522 (r'(?s)^(0[xX][0-9a-fA-F]+){skip}:?$'.format(skip=SKIP_RE), 16),
4523 (r'(?s)^(0+[0-7]+){skip}:?$'.format(skip=SKIP_RE), 8),
4524 )
4525
4526 def fix_kv(m):
4527 v = m.group(0)
4528 if v in ('true', 'false', 'null'):
4529 return v
4530 elif v in ('undefined', 'void 0'):
4531 return 'null'
4532 elif v.startswith('/*') or v.startswith('//') or v.startswith('!') or v == ',':
4533 return ""
4534
4535 if v[0] in ("'", '"'):
4536 v = re.sub(r'(?s)\\.|"', lambda m: {
4537 '"': '\\"',
4538 "\\'": "'",
4539 '\\\n': '',
4540 '\\x': '\\u00',
4541 }.get(m.group(0), m.group(0)), v[1:-1])
4542 else:
4543 for regex, base in INTEGER_TABLE:
4544 im = re.match(regex, v)
4545 if im:
4546 i = int(im.group(1), base)
4547 return '"%d":' % i if v.endswith(':') else '%d' % i
4548
4549 if v in vars:
4550 return vars[v]
4551
4552 return '"%s"' % v
4553
4554 return re.sub(r'''(?sx)
4555 "(?:[^"\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^"\\]*"|
4556 '(?:[^'\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^'\\]*'|
4557 {comment}|,(?={skip}[\]}}])|
4558 void\s0|(?:(?<![0-9])[eE]|[a-df-zA-DF-Z_$])[.a-zA-Z_$0-9]*|
4559 \b(?:0[xX][0-9a-fA-F]+|0+[0-7]+)(?:{skip}:)?|
4560 [0-9]+(?={skip}:)|
4561 !+
4562 '''.format(comment=COMMENT_RE, skip=SKIP_RE), fix_kv, code)
4563
4564
4565 def qualities(quality_ids):
4566 """ Get a numeric quality value out of a list of possible values """
4567 def q(qid):
4568 try:
4569 return quality_ids.index(qid)
4570 except ValueError:
4571 return -1
4572 return q
4573
4574
4575 DEFAULT_OUTTMPL = {
4576 'default': '%(title)s [%(id)s].%(ext)s',
4577 'chapter': '%(title)s - %(section_number)03d %(section_title)s [%(id)s].%(ext)s',
4578 }
4579 OUTTMPL_TYPES = {
4580 'chapter': None,
4581 'subtitle': None,
4582 'thumbnail': None,
4583 'description': 'description',
4584 'annotation': 'annotations.xml',
4585 'infojson': 'info.json',
4586 'link': None,
4587 'pl_thumbnail': None,
4588 'pl_description': 'description',
4589 'pl_infojson': 'info.json',
4590 }
4591
4592 # As of [1] format syntax is:
4593 # %[mapping_key][conversion_flags][minimum_width][.precision][length_modifier]type
4594 # 1. https://docs.python.org/2/library/stdtypes.html#string-formatting
4595 STR_FORMAT_RE_TMPL = r'''(?x)
4596 (?<!%)(?P<prefix>(?:%%)*)
4597 %
4598 (?P<has_key>\((?P<key>{0})\))?
4599 (?P<format>
4600 (?P<conversion>[#0\-+ ]+)?
4601 (?P<min_width>\d+)?
4602 (?P<precision>\.\d+)?
4603 (?P<len_mod>[hlL])? # unused in python
4604 {1} # conversion type
4605 )
4606 '''
4607
4608
4609 STR_FORMAT_TYPES = 'diouxXeEfFgGcrs'
4610
4611
4612 def limit_length(s, length):
4613 """ Add ellipses to overly long strings """
4614 if s is None:
4615 return None
4616 ELLIPSES = '...'
4617 if len(s) > length:
4618 return s[:length - len(ELLIPSES)] + ELLIPSES
4619 return s
4620
4621
4622 def version_tuple(v):
4623 return tuple(int(e) for e in re.split(r'[-.]', v))
4624
4625
4626 def is_outdated_version(version, limit, assume_new=True):
4627 if not version:
4628 return not assume_new
4629 try:
4630 return version_tuple(version) < version_tuple(limit)
4631 except ValueError:
4632 return not assume_new
4633
4634
4635 def ytdl_is_updateable():
4636 """ Returns if yt-dlp can be updated with -U """
4637
4638 from .update import is_non_updateable
4639
4640 return not is_non_updateable()
4641
4642
4643 def args_to_str(args):
4644 # Get a short string representation for a subprocess command
4645 return ' '.join(compat_shlex_quote(a) for a in args)
4646
4647
4648 def error_to_compat_str(err):
4649 err_str = str(err)
4650 # On python 2 error byte string must be decoded with proper
4651 # encoding rather than ascii
4652 if sys.version_info[0] < 3:
4653 err_str = err_str.decode(preferredencoding())
4654 return err_str
4655
4656
4657 def mimetype2ext(mt):
4658 if mt is None:
4659 return None
4660
4661 mt, _, params = mt.partition(';')
4662 mt = mt.strip()
4663
4664 FULL_MAP = {
4665 'audio/mp4': 'm4a',
4666 # Per RFC 3003, audio/mpeg can be .mp1, .mp2 or .mp3. Here use .mp3 as
4667 # it's the most popular one
4668 'audio/mpeg': 'mp3',
4669 'audio/x-wav': 'wav',
4670 'audio/wav': 'wav',
4671 'audio/wave': 'wav',
4672 }
4673
4674 ext = FULL_MAP.get(mt)
4675 if ext is not None:
4676 return ext
4677
4678 SUBTYPE_MAP = {
4679 '3gpp': '3gp',
4680 'smptett+xml': 'tt',
4681 'ttaf+xml': 'dfxp',
4682 'ttml+xml': 'ttml',
4683 'x-flv': 'flv',
4684 'x-mp4-fragmented': 'mp4',
4685 'x-ms-sami': 'sami',
4686 'x-ms-wmv': 'wmv',
4687 'mpegurl': 'm3u8',
4688 'x-mpegurl': 'm3u8',
4689 'vnd.apple.mpegurl': 'm3u8',
4690 'dash+xml': 'mpd',
4691 'f4m+xml': 'f4m',
4692 'hds+xml': 'f4m',
4693 'vnd.ms-sstr+xml': 'ism',
4694 'quicktime': 'mov',
4695 'mp2t': 'ts',
4696 'x-wav': 'wav',
4697 'filmstrip+json': 'fs',
4698 'svg+xml': 'svg',
4699 }
4700
4701 _, _, subtype = mt.rpartition('/')
4702 ext = SUBTYPE_MAP.get(subtype.lower())
4703 if ext is not None:
4704 return ext
4705
4706 SUFFIX_MAP = {
4707 'json': 'json',
4708 'xml': 'xml',
4709 'zip': 'zip',
4710 'gzip': 'gz',
4711 }
4712
4713 _, _, suffix = subtype.partition('+')
4714 ext = SUFFIX_MAP.get(suffix)
4715 if ext is not None:
4716 return ext
4717
4718 return subtype.replace('+', '.')
4719
4720
4721 def parse_codecs(codecs_str):
4722 # http://tools.ietf.org/html/rfc6381
4723 if not codecs_str:
4724 return {}
4725 split_codecs = list(filter(None, map(
4726 str.strip, codecs_str.strip().strip(',').split(','))))
4727 vcodec, acodec, hdr = None, None, None
4728 for full_codec in split_codecs:
4729 parts = full_codec.split('.')
4730 codec = parts[0].replace('0', '')
4731 if codec in ('avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2',
4732 'h263', 'h264', 'mp4v', 'hvc1', 'av1', 'theora', 'dvh1', 'dvhe'):
4733 if not vcodec:
4734 vcodec = '.'.join(parts[:4]) if codec in ('vp9', 'av1') else full_codec
4735 if codec in ('dvh1', 'dvhe'):
4736 hdr = 'DV'
4737 elif codec == 'av1' and len(parts) > 3 and parts[3] == '10':
4738 hdr = 'HDR10'
4739 elif full_codec.replace('0', '').startswith('vp9.2'):
4740 hdr = 'HDR10'
4741 elif codec in ('mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3', 'ec-3', 'eac3', 'dtsc', 'dtse', 'dtsh', 'dtsl'):
4742 if not acodec:
4743 acodec = full_codec
4744 else:
4745 write_string('WARNING: Unknown codec %s\n' % full_codec, sys.stderr)
4746 if not vcodec and not acodec:
4747 if len(split_codecs) == 2:
4748 return {
4749 'vcodec': split_codecs[0],
4750 'acodec': split_codecs[1],
4751 }
4752 else:
4753 return {
4754 'vcodec': vcodec or 'none',
4755 'acodec': acodec or 'none',
4756 'dynamic_range': hdr,
4757 }
4758 return {}
4759
4760
4761 def urlhandle_detect_ext(url_handle):
4762 getheader = url_handle.headers.get
4763
4764 cd = getheader('Content-Disposition')
4765 if cd:
4766 m = re.match(r'attachment;\s*filename="(?P<filename>[^"]+)"', cd)
4767 if m:
4768 e = determine_ext(m.group('filename'), default_ext=None)
4769 if e:
4770 return e
4771
4772 return mimetype2ext(getheader('Content-Type'))
4773
4774
4775 def encode_data_uri(data, mime_type):
4776 return 'data:%s;base64,%s' % (mime_type, base64.b64encode(data).decode('ascii'))
4777
4778
4779 def age_restricted(content_limit, age_limit):
4780 """ Returns True iff the content should be blocked """
4781
4782 if age_limit is None: # No limit set
4783 return False
4784 if content_limit is None:
4785 return False # Content available for everyone
4786 return age_limit < content_limit
4787
4788
4789 def is_html(first_bytes):
4790 """ Detect whether a file contains HTML by examining its first bytes. """
4791
4792 BOMS = [
4793 (b'\xef\xbb\xbf', 'utf-8'),
4794 (b'\x00\x00\xfe\xff', 'utf-32-be'),
4795 (b'\xff\xfe\x00\x00', 'utf-32-le'),
4796 (b'\xff\xfe', 'utf-16-le'),
4797 (b'\xfe\xff', 'utf-16-be'),
4798 ]
4799 for bom, enc in BOMS:
4800 if first_bytes.startswith(bom):
4801 s = first_bytes[len(bom):].decode(enc, 'replace')
4802 break
4803 else:
4804 s = first_bytes.decode('utf-8', 'replace')
4805
4806 return re.match(r'^\s*<', s)
4807
4808
4809 def determine_protocol(info_dict):
4810 protocol = info_dict.get('protocol')
4811 if protocol is not None:
4812 return protocol
4813
4814 url = sanitize_url(info_dict['url'])
4815 if url.startswith('rtmp'):
4816 return 'rtmp'
4817 elif url.startswith('mms'):
4818 return 'mms'
4819 elif url.startswith('rtsp'):
4820 return 'rtsp'
4821
4822 ext = determine_ext(url)
4823 if ext == 'm3u8':
4824 return 'm3u8'
4825 elif ext == 'f4m':
4826 return 'f4m'
4827
4828 return compat_urllib_parse_urlparse(url).scheme
4829
4830
4831 def render_table(header_row, data, delim=False, extra_gap=0, hide_empty=False):
4832 """ Render a list of rows, each as a list of values.
4833 Text after a \t will be right aligned """
4834 def width(string):
4835 return len(remove_terminal_sequences(string).replace('\t', ''))
4836
4837 def get_max_lens(table):
4838 return [max(width(str(v)) for v in col) for col in zip(*table)]
4839
4840 def filter_using_list(row, filterArray):
4841 return [col for (take, col) in zip(filterArray, row) if take]
4842
4843 if hide_empty:
4844 max_lens = get_max_lens(data)
4845 header_row = filter_using_list(header_row, max_lens)
4846 data = [filter_using_list(row, max_lens) for row in data]
4847
4848 table = [header_row] + data
4849 max_lens = get_max_lens(table)
4850 extra_gap += 1
4851 if delim:
4852 table = [header_row, [delim * (ml + extra_gap) for ml in max_lens]] + data
4853 table[1][-1] = table[1][-1][:-extra_gap] # Remove extra_gap from end of delimiter
4854 for row in table:
4855 for pos, text in enumerate(map(str, row)):
4856 if '\t' in text:
4857 row[pos] = text.replace('\t', ' ' * (max_lens[pos] - width(text))) + ' ' * extra_gap
4858 else:
4859 row[pos] = text + ' ' * (max_lens[pos] - width(text) + extra_gap)
4860 ret = '\n'.join(''.join(row).rstrip() for row in table)
4861 return ret
4862
4863
4864 def _match_one(filter_part, dct, incomplete):
4865 # TODO: Generalize code with YoutubeDL._build_format_filter
4866 STRING_OPERATORS = {
4867 '*=': operator.contains,
4868 '^=': lambda attr, value: attr.startswith(value),
4869 '$=': lambda attr, value: attr.endswith(value),
4870 '~=': lambda attr, value: re.search(value, attr),
4871 }
4872 COMPARISON_OPERATORS = {
4873 **STRING_OPERATORS,
4874 '<=': operator.le, # "<=" must be defined above "<"
4875 '<': operator.lt,
4876 '>=': operator.ge,
4877 '>': operator.gt,
4878 '=': operator.eq,
4879 }
4880
4881 operator_rex = re.compile(r'''(?x)\s*
4882 (?P<key>[a-z_]+)
4883 \s*(?P<negation>!\s*)?(?P<op>%s)(?P<none_inclusive>\s*\?)?\s*
4884 (?:
4885 (?P<quote>["\'])(?P<quotedstrval>.+?)(?P=quote)|
4886 (?P<strval>.+?)
4887 )
4888 \s*$
4889 ''' % '|'.join(map(re.escape, COMPARISON_OPERATORS.keys())))
4890 m = operator_rex.search(filter_part)
4891 if m:
4892 m = m.groupdict()
4893 unnegated_op = COMPARISON_OPERATORS[m['op']]
4894 if m['negation']:
4895 op = lambda attr, value: not unnegated_op(attr, value)
4896 else:
4897 op = unnegated_op
4898 comparison_value = m['quotedstrval'] or m['strval'] or m['intval']
4899 if m['quote']:
4900 comparison_value = comparison_value.replace(r'\%s' % m['quote'], m['quote'])
4901 actual_value = dct.get(m['key'])
4902 numeric_comparison = None
4903 if isinstance(actual_value, compat_numeric_types):
4904 # If the original field is a string and matching comparisonvalue is
4905 # a number we should respect the origin of the original field
4906 # and process comparison value as a string (see
4907 # https://github.com/ytdl-org/youtube-dl/issues/11082)
4908 try:
4909 numeric_comparison = int(comparison_value)
4910 except ValueError:
4911 numeric_comparison = parse_filesize(comparison_value)
4912 if numeric_comparison is None:
4913 numeric_comparison = parse_filesize(f'{comparison_value}B')
4914 if numeric_comparison is None:
4915 numeric_comparison = parse_duration(comparison_value)
4916 if numeric_comparison is not None and m['op'] in STRING_OPERATORS:
4917 raise ValueError('Operator %s only supports string values!' % m['op'])
4918 if actual_value is None:
4919 return incomplete or m['none_inclusive']
4920 return op(actual_value, comparison_value if numeric_comparison is None else numeric_comparison)
4921
4922 UNARY_OPERATORS = {
4923 '': lambda v: (v is True) if isinstance(v, bool) else (v is not None),
4924 '!': lambda v: (v is False) if isinstance(v, bool) else (v is None),
4925 }
4926 operator_rex = re.compile(r'''(?x)\s*
4927 (?P<op>%s)\s*(?P<key>[a-z_]+)
4928 \s*$
4929 ''' % '|'.join(map(re.escape, UNARY_OPERATORS.keys())))
4930 m = operator_rex.search(filter_part)
4931 if m:
4932 op = UNARY_OPERATORS[m.group('op')]
4933 actual_value = dct.get(m.group('key'))
4934 if incomplete and actual_value is None:
4935 return True
4936 return op(actual_value)
4937
4938 raise ValueError('Invalid filter part %r' % filter_part)
4939
4940
4941 def match_str(filter_str, dct, incomplete=False):
4942 """ Filter a dictionary with a simple string syntax. Returns True (=passes filter) or false
4943 When incomplete, all conditions passes on missing fields
4944 """
4945 return all(
4946 _match_one(filter_part.replace(r'\&', '&'), dct, incomplete)
4947 for filter_part in re.split(r'(?<!\\)&', filter_str))
4948
4949
4950 def match_filter_func(filter_str):
4951 def _match_func(info_dict, *args, **kwargs):
4952 if match_str(filter_str, info_dict, *args, **kwargs):
4953 return None
4954 else:
4955 video_title = info_dict.get('title', info_dict.get('id', 'video'))
4956 return '%s does not pass filter %s, skipping ..' % (video_title, filter_str)
4957 return _match_func
4958
4959
4960 def parse_dfxp_time_expr(time_expr):
4961 if not time_expr:
4962 return
4963
4964 mobj = re.match(r'^(?P<time_offset>\d+(?:\.\d+)?)s?$', time_expr)
4965 if mobj:
4966 return float(mobj.group('time_offset'))
4967
4968 mobj = re.match(r'^(\d+):(\d\d):(\d\d(?:(?:\.|:)\d+)?)$', time_expr)
4969 if mobj:
4970 return 3600 * int(mobj.group(1)) + 60 * int(mobj.group(2)) + float(mobj.group(3).replace(':', '.'))
4971
4972
4973 def srt_subtitles_timecode(seconds):
4974 return '%02d:%02d:%02d,%03d' % timetuple_from_msec(seconds * 1000)
4975
4976
4977 def ass_subtitles_timecode(seconds):
4978 time = timetuple_from_msec(seconds * 1000)
4979 return '%01d:%02d:%02d.%02d' % (*time[:-1], time.milliseconds / 10)
4980
4981
4982 def dfxp2srt(dfxp_data):
4983 '''
4984 @param dfxp_data A bytes-like object containing DFXP data
4985 @returns A unicode object containing converted SRT data
4986 '''
4987 LEGACY_NAMESPACES = (
4988 (b'http://www.w3.org/ns/ttml', [
4989 b'http://www.w3.org/2004/11/ttaf1',
4990 b'http://www.w3.org/2006/04/ttaf1',
4991 b'http://www.w3.org/2006/10/ttaf1',
4992 ]),
4993 (b'http://www.w3.org/ns/ttml#styling', [
4994 b'http://www.w3.org/ns/ttml#style',
4995 ]),
4996 )
4997
4998 SUPPORTED_STYLING = [
4999 'color',
5000 'fontFamily',
5001 'fontSize',
5002 'fontStyle',
5003 'fontWeight',
5004 'textDecoration'
5005 ]
5006
5007 _x = functools.partial(xpath_with_ns, ns_map={
5008 'xml': 'http://www.w3.org/XML/1998/namespace',
5009 'ttml': 'http://www.w3.org/ns/ttml',
5010 'tts': 'http://www.w3.org/ns/ttml#styling',
5011 })
5012
5013 styles = {}
5014 default_style = {}
5015
5016 class TTMLPElementParser(object):
5017 _out = ''
5018 _unclosed_elements = []
5019 _applied_styles = []
5020
5021 def start(self, tag, attrib):
5022 if tag in (_x('ttml:br'), 'br'):
5023 self._out += '\n'
5024 else:
5025 unclosed_elements = []
5026 style = {}
5027 element_style_id = attrib.get('style')
5028 if default_style:
5029 style.update(default_style)
5030 if element_style_id:
5031 style.update(styles.get(element_style_id, {}))
5032 for prop in SUPPORTED_STYLING:
5033 prop_val = attrib.get(_x('tts:' + prop))
5034 if prop_val:
5035 style[prop] = prop_val
5036 if style:
5037 font = ''
5038 for k, v in sorted(style.items()):
5039 if self._applied_styles and self._applied_styles[-1].get(k) == v:
5040 continue
5041 if k == 'color':
5042 font += ' color="%s"' % v
5043 elif k == 'fontSize':
5044 font += ' size="%s"' % v
5045 elif k == 'fontFamily':
5046 font += ' face="%s"' % v
5047 elif k == 'fontWeight' and v == 'bold':
5048 self._out += '<b>'
5049 unclosed_elements.append('b')
5050 elif k == 'fontStyle' and v == 'italic':
5051 self._out += '<i>'
5052 unclosed_elements.append('i')
5053 elif k == 'textDecoration' and v == 'underline':
5054 self._out += '<u>'
5055 unclosed_elements.append('u')
5056 if font:
5057 self._out += '<font' + font + '>'
5058 unclosed_elements.append('font')
5059 applied_style = {}
5060 if self._applied_styles:
5061 applied_style.update(self._applied_styles[-1])
5062 applied_style.update(style)
5063 self._applied_styles.append(applied_style)
5064 self._unclosed_elements.append(unclosed_elements)
5065
5066 def end(self, tag):
5067 if tag not in (_x('ttml:br'), 'br'):
5068 unclosed_elements = self._unclosed_elements.pop()
5069 for element in reversed(unclosed_elements):
5070 self._out += '</%s>' % element
5071 if unclosed_elements and self._applied_styles:
5072 self._applied_styles.pop()
5073
5074 def data(self, data):
5075 self._out += data
5076
5077 def close(self):
5078 return self._out.strip()
5079
5080 def parse_node(node):
5081 target = TTMLPElementParser()
5082 parser = xml.etree.ElementTree.XMLParser(target=target)
5083 parser.feed(xml.etree.ElementTree.tostring(node))
5084 return parser.close()
5085
5086 for k, v in LEGACY_NAMESPACES:
5087 for ns in v:
5088 dfxp_data = dfxp_data.replace(ns, k)
5089
5090 dfxp = compat_etree_fromstring(dfxp_data)
5091 out = []
5092 paras = dfxp.findall(_x('.//ttml:p')) or dfxp.findall('.//p')
5093
5094 if not paras:
5095 raise ValueError('Invalid dfxp/TTML subtitle')
5096
5097 repeat = False
5098 while True:
5099 for style in dfxp.findall(_x('.//ttml:style')):
5100 style_id = style.get('id') or style.get(_x('xml:id'))
5101 if not style_id:
5102 continue
5103 parent_style_id = style.get('style')
5104 if parent_style_id:
5105 if parent_style_id not in styles:
5106 repeat = True
5107 continue
5108 styles[style_id] = styles[parent_style_id].copy()
5109 for prop in SUPPORTED_STYLING:
5110 prop_val = style.get(_x('tts:' + prop))
5111 if prop_val:
5112 styles.setdefault(style_id, {})[prop] = prop_val
5113 if repeat:
5114 repeat = False
5115 else:
5116 break
5117
5118 for p in ('body', 'div'):
5119 ele = xpath_element(dfxp, [_x('.//ttml:' + p), './/' + p])
5120 if ele is None:
5121 continue
5122 style = styles.get(ele.get('style'))
5123 if not style:
5124 continue
5125 default_style.update(style)
5126
5127 for para, index in zip(paras, itertools.count(1)):
5128 begin_time = parse_dfxp_time_expr(para.attrib.get('begin'))
5129 end_time = parse_dfxp_time_expr(para.attrib.get('end'))
5130 dur = parse_dfxp_time_expr(para.attrib.get('dur'))
5131 if begin_time is None:
5132 continue
5133 if not end_time:
5134 if not dur:
5135 continue
5136 end_time = begin_time + dur
5137 out.append('%d\n%s --> %s\n%s\n\n' % (
5138 index,
5139 srt_subtitles_timecode(begin_time),
5140 srt_subtitles_timecode(end_time),
5141 parse_node(para)))
5142
5143 return ''.join(out)
5144
5145
5146 def cli_option(params, command_option, param):
5147 param = params.get(param)
5148 if param:
5149 param = compat_str(param)
5150 return [command_option, param] if param is not None else []
5151
5152
5153 def cli_bool_option(params, command_option, param, true_value='true', false_value='false', separator=None):
5154 param = params.get(param)
5155 if param is None:
5156 return []
5157 assert isinstance(param, bool)
5158 if separator:
5159 return [command_option + separator + (true_value if param else false_value)]
5160 return [command_option, true_value if param else false_value]
5161
5162
5163 def cli_valueless_option(params, command_option, param, expected_value=True):
5164 param = params.get(param)
5165 return [command_option] if param == expected_value else []
5166
5167
5168 def cli_configuration_args(argdict, keys, default=[], use_compat=True):
5169 if isinstance(argdict, (list, tuple)): # for backward compatibility
5170 if use_compat:
5171 return argdict
5172 else:
5173 argdict = None
5174 if argdict is None:
5175 return default
5176 assert isinstance(argdict, dict)
5177
5178 assert isinstance(keys, (list, tuple))
5179 for key_list in keys:
5180 arg_list = list(filter(
5181 lambda x: x is not None,
5182 [argdict.get(key.lower()) for key in variadic(key_list)]))
5183 if arg_list:
5184 return [arg for args in arg_list for arg in args]
5185 return default
5186
5187
5188 def _configuration_args(main_key, argdict, exe, keys=None, default=[], use_compat=True):
5189 main_key, exe = main_key.lower(), exe.lower()
5190 root_key = exe if main_key == exe else f'{main_key}+{exe}'
5191 keys = [f'{root_key}{k}' for k in (keys or [''])]
5192 if root_key in keys:
5193 if main_key != exe:
5194 keys.append((main_key, exe))
5195 keys.append('default')
5196 else:
5197 use_compat = False
5198 return cli_configuration_args(argdict, keys, default, use_compat)
5199
5200
5201 class ISO639Utils(object):
5202 # See http://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt
5203 _lang_map = {
5204 'aa': 'aar',
5205 'ab': 'abk',
5206 'ae': 'ave',
5207 'af': 'afr',
5208 'ak': 'aka',
5209 'am': 'amh',
5210 'an': 'arg',
5211 'ar': 'ara',
5212 'as': 'asm',
5213 'av': 'ava',
5214 'ay': 'aym',
5215 'az': 'aze',
5216 'ba': 'bak',
5217 'be': 'bel',
5218 'bg': 'bul',
5219 'bh': 'bih',
5220 'bi': 'bis',
5221 'bm': 'bam',
5222 'bn': 'ben',
5223 'bo': 'bod',
5224 'br': 'bre',
5225 'bs': 'bos',
5226 'ca': 'cat',
5227 'ce': 'che',
5228 'ch': 'cha',
5229 'co': 'cos',
5230 'cr': 'cre',
5231 'cs': 'ces',
5232 'cu': 'chu',
5233 'cv': 'chv',
5234 'cy': 'cym',
5235 'da': 'dan',
5236 'de': 'deu',
5237 'dv': 'div',
5238 'dz': 'dzo',
5239 'ee': 'ewe',
5240 'el': 'ell',
5241 'en': 'eng',
5242 'eo': 'epo',
5243 'es': 'spa',
5244 'et': 'est',
5245 'eu': 'eus',
5246 'fa': 'fas',
5247 'ff': 'ful',
5248 'fi': 'fin',
5249 'fj': 'fij',
5250 'fo': 'fao',
5251 'fr': 'fra',
5252 'fy': 'fry',
5253 'ga': 'gle',
5254 'gd': 'gla',
5255 'gl': 'glg',
5256 'gn': 'grn',
5257 'gu': 'guj',
5258 'gv': 'glv',
5259 'ha': 'hau',
5260 'he': 'heb',
5261 'iw': 'heb', # Replaced by he in 1989 revision
5262 'hi': 'hin',
5263 'ho': 'hmo',
5264 'hr': 'hrv',
5265 'ht': 'hat',
5266 'hu': 'hun',
5267 'hy': 'hye',
5268 'hz': 'her',
5269 'ia': 'ina',
5270 'id': 'ind',
5271 'in': 'ind', # Replaced by id in 1989 revision
5272 'ie': 'ile',
5273 'ig': 'ibo',
5274 'ii': 'iii',
5275 'ik': 'ipk',
5276 'io': 'ido',
5277 'is': 'isl',
5278 'it': 'ita',
5279 'iu': 'iku',
5280 'ja': 'jpn',
5281 'jv': 'jav',
5282 'ka': 'kat',
5283 'kg': 'kon',
5284 'ki': 'kik',
5285 'kj': 'kua',
5286 'kk': 'kaz',
5287 'kl': 'kal',
5288 'km': 'khm',
5289 'kn': 'kan',
5290 'ko': 'kor',
5291 'kr': 'kau',
5292 'ks': 'kas',
5293 'ku': 'kur',
5294 'kv': 'kom',
5295 'kw': 'cor',
5296 'ky': 'kir',
5297 'la': 'lat',
5298 'lb': 'ltz',
5299 'lg': 'lug',
5300 'li': 'lim',
5301 'ln': 'lin',
5302 'lo': 'lao',
5303 'lt': 'lit',
5304 'lu': 'lub',
5305 'lv': 'lav',
5306 'mg': 'mlg',
5307 'mh': 'mah',
5308 'mi': 'mri',
5309 'mk': 'mkd',
5310 'ml': 'mal',
5311 'mn': 'mon',
5312 'mr': 'mar',
5313 'ms': 'msa',
5314 'mt': 'mlt',
5315 'my': 'mya',
5316 'na': 'nau',
5317 'nb': 'nob',
5318 'nd': 'nde',
5319 'ne': 'nep',
5320 'ng': 'ndo',
5321 'nl': 'nld',
5322 'nn': 'nno',
5323 'no': 'nor',
5324 'nr': 'nbl',
5325 'nv': 'nav',
5326 'ny': 'nya',
5327 'oc': 'oci',
5328 'oj': 'oji',
5329 'om': 'orm',
5330 'or': 'ori',
5331 'os': 'oss',
5332 'pa': 'pan',
5333 'pi': 'pli',
5334 'pl': 'pol',
5335 'ps': 'pus',
5336 'pt': 'por',
5337 'qu': 'que',
5338 'rm': 'roh',
5339 'rn': 'run',
5340 'ro': 'ron',
5341 'ru': 'rus',
5342 'rw': 'kin',
5343 'sa': 'san',
5344 'sc': 'srd',
5345 'sd': 'snd',
5346 'se': 'sme',
5347 'sg': 'sag',
5348 'si': 'sin',
5349 'sk': 'slk',
5350 'sl': 'slv',
5351 'sm': 'smo',
5352 'sn': 'sna',
5353 'so': 'som',
5354 'sq': 'sqi',
5355 'sr': 'srp',
5356 'ss': 'ssw',
5357 'st': 'sot',
5358 'su': 'sun',
5359 'sv': 'swe',
5360 'sw': 'swa',
5361 'ta': 'tam',
5362 'te': 'tel',
5363 'tg': 'tgk',
5364 'th': 'tha',
5365 'ti': 'tir',
5366 'tk': 'tuk',
5367 'tl': 'tgl',
5368 'tn': 'tsn',
5369 'to': 'ton',
5370 'tr': 'tur',
5371 'ts': 'tso',
5372 'tt': 'tat',
5373 'tw': 'twi',
5374 'ty': 'tah',
5375 'ug': 'uig',
5376 'uk': 'ukr',
5377 'ur': 'urd',
5378 'uz': 'uzb',
5379 've': 'ven',
5380 'vi': 'vie',
5381 'vo': 'vol',
5382 'wa': 'wln',
5383 'wo': 'wol',
5384 'xh': 'xho',
5385 'yi': 'yid',
5386 'ji': 'yid', # Replaced by yi in 1989 revision
5387 'yo': 'yor',
5388 'za': 'zha',
5389 'zh': 'zho',
5390 'zu': 'zul',
5391 }
5392
5393 @classmethod
5394 def short2long(cls, code):
5395 """Convert language code from ISO 639-1 to ISO 639-2/T"""
5396 return cls._lang_map.get(code[:2])
5397
5398 @classmethod
5399 def long2short(cls, code):
5400 """Convert language code from ISO 639-2/T to ISO 639-1"""
5401 for short_name, long_name in cls._lang_map.items():
5402 if long_name == code:
5403 return short_name
5404
5405
5406 class ISO3166Utils(object):
5407 # From http://data.okfn.org/data/core/country-list
5408 _country_map = {
5409 'AF': 'Afghanistan',
5410 'AX': 'Åland Islands',
5411 'AL': 'Albania',
5412 'DZ': 'Algeria',
5413 'AS': 'American Samoa',
5414 'AD': 'Andorra',
5415 'AO': 'Angola',
5416 'AI': 'Anguilla',
5417 'AQ': 'Antarctica',
5418 'AG': 'Antigua and Barbuda',
5419 'AR': 'Argentina',
5420 'AM': 'Armenia',
5421 'AW': 'Aruba',
5422 'AU': 'Australia',
5423 'AT': 'Austria',
5424 'AZ': 'Azerbaijan',
5425 'BS': 'Bahamas',
5426 'BH': 'Bahrain',
5427 'BD': 'Bangladesh',
5428 'BB': 'Barbados',
5429 'BY': 'Belarus',
5430 'BE': 'Belgium',
5431 'BZ': 'Belize',
5432 'BJ': 'Benin',
5433 'BM': 'Bermuda',
5434 'BT': 'Bhutan',
5435 'BO': 'Bolivia, Plurinational State of',
5436 'BQ': 'Bonaire, Sint Eustatius and Saba',
5437 'BA': 'Bosnia and Herzegovina',
5438 'BW': 'Botswana',
5439 'BV': 'Bouvet Island',
5440 'BR': 'Brazil',
5441 'IO': 'British Indian Ocean Territory',
5442 'BN': 'Brunei Darussalam',
5443 'BG': 'Bulgaria',
5444 'BF': 'Burkina Faso',
5445 'BI': 'Burundi',
5446 'KH': 'Cambodia',
5447 'CM': 'Cameroon',
5448 'CA': 'Canada',
5449 'CV': 'Cape Verde',
5450 'KY': 'Cayman Islands',
5451 'CF': 'Central African Republic',
5452 'TD': 'Chad',
5453 'CL': 'Chile',
5454 'CN': 'China',
5455 'CX': 'Christmas Island',
5456 'CC': 'Cocos (Keeling) Islands',
5457 'CO': 'Colombia',
5458 'KM': 'Comoros',
5459 'CG': 'Congo',
5460 'CD': 'Congo, the Democratic Republic of the',
5461 'CK': 'Cook Islands',
5462 'CR': 'Costa Rica',
5463 'CI': 'Côte d\'Ivoire',
5464 'HR': 'Croatia',
5465 'CU': 'Cuba',
5466 'CW': 'Curaçao',
5467 'CY': 'Cyprus',
5468 'CZ': 'Czech Republic',
5469 'DK': 'Denmark',
5470 'DJ': 'Djibouti',
5471 'DM': 'Dominica',
5472 'DO': 'Dominican Republic',
5473 'EC': 'Ecuador',
5474 'EG': 'Egypt',
5475 'SV': 'El Salvador',
5476 'GQ': 'Equatorial Guinea',
5477 'ER': 'Eritrea',
5478 'EE': 'Estonia',
5479 'ET': 'Ethiopia',
5480 'FK': 'Falkland Islands (Malvinas)',
5481 'FO': 'Faroe Islands',
5482 'FJ': 'Fiji',
5483 'FI': 'Finland',
5484 'FR': 'France',
5485 'GF': 'French Guiana',
5486 'PF': 'French Polynesia',
5487 'TF': 'French Southern Territories',
5488 'GA': 'Gabon',
5489 'GM': 'Gambia',
5490 'GE': 'Georgia',
5491 'DE': 'Germany',
5492 'GH': 'Ghana',
5493 'GI': 'Gibraltar',
5494 'GR': 'Greece',
5495 'GL': 'Greenland',
5496 'GD': 'Grenada',
5497 'GP': 'Guadeloupe',
5498 'GU': 'Guam',
5499 'GT': 'Guatemala',
5500 'GG': 'Guernsey',
5501 'GN': 'Guinea',
5502 'GW': 'Guinea-Bissau',
5503 'GY': 'Guyana',
5504 'HT': 'Haiti',
5505 'HM': 'Heard Island and McDonald Islands',
5506 'VA': 'Holy See (Vatican City State)',
5507 'HN': 'Honduras',
5508 'HK': 'Hong Kong',
5509 'HU': 'Hungary',
5510 'IS': 'Iceland',
5511 'IN': 'India',
5512 'ID': 'Indonesia',
5513 'IR': 'Iran, Islamic Republic of',
5514 'IQ': 'Iraq',
5515 'IE': 'Ireland',
5516 'IM': 'Isle of Man',
5517 'IL': 'Israel',
5518 'IT': 'Italy',
5519 'JM': 'Jamaica',
5520 'JP': 'Japan',
5521 'JE': 'Jersey',
5522 'JO': 'Jordan',
5523 'KZ': 'Kazakhstan',
5524 'KE': 'Kenya',
5525 'KI': 'Kiribati',
5526 'KP': 'Korea, Democratic People\'s Republic of',
5527 'KR': 'Korea, Republic of',
5528 'KW': 'Kuwait',
5529 'KG': 'Kyrgyzstan',
5530 'LA': 'Lao People\'s Democratic Republic',
5531 'LV': 'Latvia',
5532 'LB': 'Lebanon',
5533 'LS': 'Lesotho',
5534 'LR': 'Liberia',
5535 'LY': 'Libya',
5536 'LI': 'Liechtenstein',
5537 'LT': 'Lithuania',
5538 'LU': 'Luxembourg',
5539 'MO': 'Macao',
5540 'MK': 'Macedonia, the Former Yugoslav Republic of',
5541 'MG': 'Madagascar',
5542 'MW': 'Malawi',
5543 'MY': 'Malaysia',
5544 'MV': 'Maldives',
5545 'ML': 'Mali',
5546 'MT': 'Malta',
5547 'MH': 'Marshall Islands',
5548 'MQ': 'Martinique',
5549 'MR': 'Mauritania',
5550 'MU': 'Mauritius',
5551 'YT': 'Mayotte',
5552 'MX': 'Mexico',
5553 'FM': 'Micronesia, Federated States of',
5554 'MD': 'Moldova, Republic of',
5555 'MC': 'Monaco',
5556 'MN': 'Mongolia',
5557 'ME': 'Montenegro',
5558 'MS': 'Montserrat',
5559 'MA': 'Morocco',
5560 'MZ': 'Mozambique',
5561 'MM': 'Myanmar',
5562 'NA': 'Namibia',
5563 'NR': 'Nauru',
5564 'NP': 'Nepal',
5565 'NL': 'Netherlands',
5566 'NC': 'New Caledonia',
5567 'NZ': 'New Zealand',
5568 'NI': 'Nicaragua',
5569 'NE': 'Niger',
5570 'NG': 'Nigeria',
5571 'NU': 'Niue',
5572 'NF': 'Norfolk Island',
5573 'MP': 'Northern Mariana Islands',
5574 'NO': 'Norway',
5575 'OM': 'Oman',
5576 'PK': 'Pakistan',
5577 'PW': 'Palau',
5578 'PS': 'Palestine, State of',
5579 'PA': 'Panama',
5580 'PG': 'Papua New Guinea',
5581 'PY': 'Paraguay',
5582 'PE': 'Peru',
5583 'PH': 'Philippines',
5584 'PN': 'Pitcairn',
5585 'PL': 'Poland',
5586 'PT': 'Portugal',
5587 'PR': 'Puerto Rico',
5588 'QA': 'Qatar',
5589 'RE': 'Réunion',
5590 'RO': 'Romania',
5591 'RU': 'Russian Federation',
5592 'RW': 'Rwanda',
5593 'BL': 'Saint Barthélemy',
5594 'SH': 'Saint Helena, Ascension and Tristan da Cunha',
5595 'KN': 'Saint Kitts and Nevis',
5596 'LC': 'Saint Lucia',
5597 'MF': 'Saint Martin (French part)',
5598 'PM': 'Saint Pierre and Miquelon',
5599 'VC': 'Saint Vincent and the Grenadines',
5600 'WS': 'Samoa',
5601 'SM': 'San Marino',
5602 'ST': 'Sao Tome and Principe',
5603 'SA': 'Saudi Arabia',
5604 'SN': 'Senegal',
5605 'RS': 'Serbia',
5606 'SC': 'Seychelles',
5607 'SL': 'Sierra Leone',
5608 'SG': 'Singapore',
5609 'SX': 'Sint Maarten (Dutch part)',
5610 'SK': 'Slovakia',
5611 'SI': 'Slovenia',
5612 'SB': 'Solomon Islands',
5613 'SO': 'Somalia',
5614 'ZA': 'South Africa',
5615 'GS': 'South Georgia and the South Sandwich Islands',
5616 'SS': 'South Sudan',
5617 'ES': 'Spain',
5618 'LK': 'Sri Lanka',
5619 'SD': 'Sudan',
5620 'SR': 'Suriname',
5621 'SJ': 'Svalbard and Jan Mayen',
5622 'SZ': 'Swaziland',
5623 'SE': 'Sweden',
5624 'CH': 'Switzerland',
5625 'SY': 'Syrian Arab Republic',
5626 'TW': 'Taiwan, Province of China',
5627 'TJ': 'Tajikistan',
5628 'TZ': 'Tanzania, United Republic of',
5629 'TH': 'Thailand',
5630 'TL': 'Timor-Leste',
5631 'TG': 'Togo',
5632 'TK': 'Tokelau',
5633 'TO': 'Tonga',
5634 'TT': 'Trinidad and Tobago',
5635 'TN': 'Tunisia',
5636 'TR': 'Turkey',
5637 'TM': 'Turkmenistan',
5638 'TC': 'Turks and Caicos Islands',
5639 'TV': 'Tuvalu',
5640 'UG': 'Uganda',
5641 'UA': 'Ukraine',
5642 'AE': 'United Arab Emirates',
5643 'GB': 'United Kingdom',
5644 'US': 'United States',
5645 'UM': 'United States Minor Outlying Islands',
5646 'UY': 'Uruguay',
5647 'UZ': 'Uzbekistan',
5648 'VU': 'Vanuatu',
5649 'VE': 'Venezuela, Bolivarian Republic of',
5650 'VN': 'Viet Nam',
5651 'VG': 'Virgin Islands, British',
5652 'VI': 'Virgin Islands, U.S.',
5653 'WF': 'Wallis and Futuna',
5654 'EH': 'Western Sahara',
5655 'YE': 'Yemen',
5656 'ZM': 'Zambia',
5657 'ZW': 'Zimbabwe',
5658 }
5659
5660 @classmethod
5661 def short2full(cls, code):
5662 """Convert an ISO 3166-2 country code to the corresponding full name"""
5663 return cls._country_map.get(code.upper())
5664
5665
5666 class GeoUtils(object):
5667 # Major IPv4 address blocks per country
5668 _country_ip_map = {
5669 'AD': '46.172.224.0/19',
5670 'AE': '94.200.0.0/13',
5671 'AF': '149.54.0.0/17',
5672 'AG': '209.59.64.0/18',
5673 'AI': '204.14.248.0/21',
5674 'AL': '46.99.0.0/16',
5675 'AM': '46.70.0.0/15',
5676 'AO': '105.168.0.0/13',
5677 'AP': '182.50.184.0/21',
5678 'AQ': '23.154.160.0/24',
5679 'AR': '181.0.0.0/12',
5680 'AS': '202.70.112.0/20',
5681 'AT': '77.116.0.0/14',
5682 'AU': '1.128.0.0/11',
5683 'AW': '181.41.0.0/18',
5684 'AX': '185.217.4.0/22',
5685 'AZ': '5.197.0.0/16',
5686 'BA': '31.176.128.0/17',
5687 'BB': '65.48.128.0/17',
5688 'BD': '114.130.0.0/16',
5689 'BE': '57.0.0.0/8',
5690 'BF': '102.178.0.0/15',
5691 'BG': '95.42.0.0/15',
5692 'BH': '37.131.0.0/17',
5693 'BI': '154.117.192.0/18',
5694 'BJ': '137.255.0.0/16',
5695 'BL': '185.212.72.0/23',
5696 'BM': '196.12.64.0/18',
5697 'BN': '156.31.0.0/16',
5698 'BO': '161.56.0.0/16',
5699 'BQ': '161.0.80.0/20',
5700 'BR': '191.128.0.0/12',
5701 'BS': '24.51.64.0/18',
5702 'BT': '119.2.96.0/19',
5703 'BW': '168.167.0.0/16',
5704 'BY': '178.120.0.0/13',
5705 'BZ': '179.42.192.0/18',
5706 'CA': '99.224.0.0/11',
5707 'CD': '41.243.0.0/16',
5708 'CF': '197.242.176.0/21',
5709 'CG': '160.113.0.0/16',
5710 'CH': '85.0.0.0/13',
5711 'CI': '102.136.0.0/14',
5712 'CK': '202.65.32.0/19',
5713 'CL': '152.172.0.0/14',
5714 'CM': '102.244.0.0/14',
5715 'CN': '36.128.0.0/10',
5716 'CO': '181.240.0.0/12',
5717 'CR': '201.192.0.0/12',
5718 'CU': '152.206.0.0/15',
5719 'CV': '165.90.96.0/19',
5720 'CW': '190.88.128.0/17',
5721 'CY': '31.153.0.0/16',
5722 'CZ': '88.100.0.0/14',
5723 'DE': '53.0.0.0/8',
5724 'DJ': '197.241.0.0/17',
5725 'DK': '87.48.0.0/12',
5726 'DM': '192.243.48.0/20',
5727 'DO': '152.166.0.0/15',
5728 'DZ': '41.96.0.0/12',
5729 'EC': '186.68.0.0/15',
5730 'EE': '90.190.0.0/15',
5731 'EG': '156.160.0.0/11',
5732 'ER': '196.200.96.0/20',
5733 'ES': '88.0.0.0/11',
5734 'ET': '196.188.0.0/14',
5735 'EU': '2.16.0.0/13',
5736 'FI': '91.152.0.0/13',
5737 'FJ': '144.120.0.0/16',
5738 'FK': '80.73.208.0/21',
5739 'FM': '119.252.112.0/20',
5740 'FO': '88.85.32.0/19',
5741 'FR': '90.0.0.0/9',
5742 'GA': '41.158.0.0/15',
5743 'GB': '25.0.0.0/8',
5744 'GD': '74.122.88.0/21',
5745 'GE': '31.146.0.0/16',
5746 'GF': '161.22.64.0/18',
5747 'GG': '62.68.160.0/19',
5748 'GH': '154.160.0.0/12',
5749 'GI': '95.164.0.0/16',
5750 'GL': '88.83.0.0/19',
5751 'GM': '160.182.0.0/15',
5752 'GN': '197.149.192.0/18',
5753 'GP': '104.250.0.0/19',
5754 'GQ': '105.235.224.0/20',
5755 'GR': '94.64.0.0/13',
5756 'GT': '168.234.0.0/16',
5757 'GU': '168.123.0.0/16',
5758 'GW': '197.214.80.0/20',
5759 'GY': '181.41.64.0/18',
5760 'HK': '113.252.0.0/14',
5761 'HN': '181.210.0.0/16',
5762 'HR': '93.136.0.0/13',
5763 'HT': '148.102.128.0/17',
5764 'HU': '84.0.0.0/14',
5765 'ID': '39.192.0.0/10',
5766 'IE': '87.32.0.0/12',
5767 'IL': '79.176.0.0/13',
5768 'IM': '5.62.80.0/20',
5769 'IN': '117.192.0.0/10',
5770 'IO': '203.83.48.0/21',
5771 'IQ': '37.236.0.0/14',
5772 'IR': '2.176.0.0/12',
5773 'IS': '82.221.0.0/16',
5774 'IT': '79.0.0.0/10',
5775 'JE': '87.244.64.0/18',
5776 'JM': '72.27.0.0/17',
5777 'JO': '176.29.0.0/16',
5778 'JP': '133.0.0.0/8',
5779 'KE': '105.48.0.0/12',
5780 'KG': '158.181.128.0/17',
5781 'KH': '36.37.128.0/17',
5782 'KI': '103.25.140.0/22',
5783 'KM': '197.255.224.0/20',
5784 'KN': '198.167.192.0/19',
5785 'KP': '175.45.176.0/22',
5786 'KR': '175.192.0.0/10',
5787 'KW': '37.36.0.0/14',
5788 'KY': '64.96.0.0/15',
5789 'KZ': '2.72.0.0/13',
5790 'LA': '115.84.64.0/18',
5791 'LB': '178.135.0.0/16',
5792 'LC': '24.92.144.0/20',
5793 'LI': '82.117.0.0/19',
5794 'LK': '112.134.0.0/15',
5795 'LR': '102.183.0.0/16',
5796 'LS': '129.232.0.0/17',
5797 'LT': '78.56.0.0/13',
5798 'LU': '188.42.0.0/16',
5799 'LV': '46.109.0.0/16',
5800 'LY': '41.252.0.0/14',
5801 'MA': '105.128.0.0/11',
5802 'MC': '88.209.64.0/18',
5803 'MD': '37.246.0.0/16',
5804 'ME': '178.175.0.0/17',
5805 'MF': '74.112.232.0/21',
5806 'MG': '154.126.0.0/17',
5807 'MH': '117.103.88.0/21',
5808 'MK': '77.28.0.0/15',
5809 'ML': '154.118.128.0/18',
5810 'MM': '37.111.0.0/17',
5811 'MN': '49.0.128.0/17',
5812 'MO': '60.246.0.0/16',
5813 'MP': '202.88.64.0/20',
5814 'MQ': '109.203.224.0/19',
5815 'MR': '41.188.64.0/18',
5816 'MS': '208.90.112.0/22',
5817 'MT': '46.11.0.0/16',
5818 'MU': '105.16.0.0/12',
5819 'MV': '27.114.128.0/18',
5820 'MW': '102.70.0.0/15',
5821 'MX': '187.192.0.0/11',
5822 'MY': '175.136.0.0/13',
5823 'MZ': '197.218.0.0/15',
5824 'NA': '41.182.0.0/16',
5825 'NC': '101.101.0.0/18',
5826 'NE': '197.214.0.0/18',
5827 'NF': '203.17.240.0/22',
5828 'NG': '105.112.0.0/12',
5829 'NI': '186.76.0.0/15',
5830 'NL': '145.96.0.0/11',
5831 'NO': '84.208.0.0/13',
5832 'NP': '36.252.0.0/15',
5833 'NR': '203.98.224.0/19',
5834 'NU': '49.156.48.0/22',
5835 'NZ': '49.224.0.0/14',
5836 'OM': '5.36.0.0/15',
5837 'PA': '186.72.0.0/15',
5838 'PE': '186.160.0.0/14',
5839 'PF': '123.50.64.0/18',
5840 'PG': '124.240.192.0/19',
5841 'PH': '49.144.0.0/13',
5842 'PK': '39.32.0.0/11',
5843 'PL': '83.0.0.0/11',
5844 'PM': '70.36.0.0/20',
5845 'PR': '66.50.0.0/16',
5846 'PS': '188.161.0.0/16',
5847 'PT': '85.240.0.0/13',
5848 'PW': '202.124.224.0/20',
5849 'PY': '181.120.0.0/14',
5850 'QA': '37.210.0.0/15',
5851 'RE': '102.35.0.0/16',
5852 'RO': '79.112.0.0/13',
5853 'RS': '93.86.0.0/15',
5854 'RU': '5.136.0.0/13',
5855 'RW': '41.186.0.0/16',
5856 'SA': '188.48.0.0/13',
5857 'SB': '202.1.160.0/19',
5858 'SC': '154.192.0.0/11',
5859 'SD': '102.120.0.0/13',
5860 'SE': '78.64.0.0/12',
5861 'SG': '8.128.0.0/10',
5862 'SI': '188.196.0.0/14',
5863 'SK': '78.98.0.0/15',
5864 'SL': '102.143.0.0/17',
5865 'SM': '89.186.32.0/19',
5866 'SN': '41.82.0.0/15',
5867 'SO': '154.115.192.0/18',
5868 'SR': '186.179.128.0/17',
5869 'SS': '105.235.208.0/21',
5870 'ST': '197.159.160.0/19',
5871 'SV': '168.243.0.0/16',
5872 'SX': '190.102.0.0/20',
5873 'SY': '5.0.0.0/16',
5874 'SZ': '41.84.224.0/19',
5875 'TC': '65.255.48.0/20',
5876 'TD': '154.68.128.0/19',
5877 'TG': '196.168.0.0/14',
5878 'TH': '171.96.0.0/13',
5879 'TJ': '85.9.128.0/18',
5880 'TK': '27.96.24.0/21',
5881 'TL': '180.189.160.0/20',
5882 'TM': '95.85.96.0/19',
5883 'TN': '197.0.0.0/11',
5884 'TO': '175.176.144.0/21',
5885 'TR': '78.160.0.0/11',
5886 'TT': '186.44.0.0/15',
5887 'TV': '202.2.96.0/19',
5888 'TW': '120.96.0.0/11',
5889 'TZ': '156.156.0.0/14',
5890 'UA': '37.52.0.0/14',
5891 'UG': '102.80.0.0/13',
5892 'US': '6.0.0.0/8',
5893 'UY': '167.56.0.0/13',
5894 'UZ': '84.54.64.0/18',
5895 'VA': '212.77.0.0/19',
5896 'VC': '207.191.240.0/21',
5897 'VE': '186.88.0.0/13',
5898 'VG': '66.81.192.0/20',
5899 'VI': '146.226.0.0/16',
5900 'VN': '14.160.0.0/11',
5901 'VU': '202.80.32.0/20',
5902 'WF': '117.20.32.0/21',
5903 'WS': '202.4.32.0/19',
5904 'YE': '134.35.0.0/16',
5905 'YT': '41.242.116.0/22',
5906 'ZA': '41.0.0.0/11',
5907 'ZM': '102.144.0.0/13',
5908 'ZW': '102.177.192.0/18',
5909 }
5910
5911 @classmethod
5912 def random_ipv4(cls, code_or_block):
5913 if len(code_or_block) == 2:
5914 block = cls._country_ip_map.get(code_or_block.upper())
5915 if not block:
5916 return None
5917 else:
5918 block = code_or_block
5919 addr, preflen = block.split('/')
5920 addr_min = compat_struct_unpack('!L', socket.inet_aton(addr))[0]
5921 addr_max = addr_min | (0xffffffff >> int(preflen))
5922 return compat_str(socket.inet_ntoa(
5923 compat_struct_pack('!L', random.randint(addr_min, addr_max))))
5924
5925
5926 class PerRequestProxyHandler(compat_urllib_request.ProxyHandler):
5927 def __init__(self, proxies=None):
5928 # Set default handlers
5929 for type in ('http', 'https'):
5930 setattr(self, '%s_open' % type,
5931 lambda r, proxy='__noproxy__', type=type, meth=self.proxy_open:
5932 meth(r, proxy, type))
5933 compat_urllib_request.ProxyHandler.__init__(self, proxies)
5934
5935 def proxy_open(self, req, proxy, type):
5936 req_proxy = req.headers.get('Ytdl-request-proxy')
5937 if req_proxy is not None:
5938 proxy = req_proxy
5939 del req.headers['Ytdl-request-proxy']
5940
5941 if proxy == '__noproxy__':
5942 return None # No Proxy
5943 if compat_urlparse.urlparse(proxy).scheme.lower() in ('socks', 'socks4', 'socks4a', 'socks5'):
5944 req.add_header('Ytdl-socks-proxy', proxy)
5945 # yt-dlp's http/https handlers do wrapping the socket with socks
5946 return None
5947 return compat_urllib_request.ProxyHandler.proxy_open(
5948 self, req, proxy, type)
5949
5950
5951 # Both long_to_bytes and bytes_to_long are adapted from PyCrypto, which is
5952 # released into Public Domain
5953 # https://github.com/dlitz/pycrypto/blob/master/lib/Crypto/Util/number.py#L387
5954
5955 def long_to_bytes(n, blocksize=0):
5956 """long_to_bytes(n:long, blocksize:int) : string
5957 Convert a long integer to a byte string.
5958
5959 If optional blocksize is given and greater than zero, pad the front of the
5960 byte string with binary zeros so that the length is a multiple of
5961 blocksize.
5962 """
5963 # after much testing, this algorithm was deemed to be the fastest
5964 s = b''
5965 n = int(n)
5966 while n > 0:
5967 s = compat_struct_pack('>I', n & 0xffffffff) + s
5968 n = n >> 32
5969 # strip off leading zeros
5970 for i in range(len(s)):
5971 if s[i] != b'\000'[0]:
5972 break
5973 else:
5974 # only happens when n == 0
5975 s = b'\000'
5976 i = 0
5977 s = s[i:]
5978 # add back some pad bytes. this could be done more efficiently w.r.t. the
5979 # de-padding being done above, but sigh...
5980 if blocksize > 0 and len(s) % blocksize:
5981 s = (blocksize - len(s) % blocksize) * b'\000' + s
5982 return s
5983
5984
5985 def bytes_to_long(s):
5986 """bytes_to_long(string) : long
5987 Convert a byte string to a long integer.
5988
5989 This is (essentially) the inverse of long_to_bytes().
5990 """
5991 acc = 0
5992 length = len(s)
5993 if length % 4:
5994 extra = (4 - length % 4)
5995 s = b'\000' * extra + s
5996 length = length + extra
5997 for i in range(0, length, 4):
5998 acc = (acc << 32) + compat_struct_unpack('>I', s[i:i + 4])[0]
5999 return acc
6000
6001
6002 def ohdave_rsa_encrypt(data, exponent, modulus):
6003 '''
6004 Implement OHDave's RSA algorithm. See http://www.ohdave.com/rsa/
6005
6006 Input:
6007 data: data to encrypt, bytes-like object
6008 exponent, modulus: parameter e and N of RSA algorithm, both integer
6009 Output: hex string of encrypted data
6010
6011 Limitation: supports one block encryption only
6012 '''
6013
6014 payload = int(binascii.hexlify(data[::-1]), 16)
6015 encrypted = pow(payload, exponent, modulus)
6016 return '%x' % encrypted
6017
6018
6019 def pkcs1pad(data, length):
6020 """
6021 Padding input data with PKCS#1 scheme
6022
6023 @param {int[]} data input data
6024 @param {int} length target length
6025 @returns {int[]} padded data
6026 """
6027 if len(data) > length - 11:
6028 raise ValueError('Input data too long for PKCS#1 padding')
6029
6030 pseudo_random = [random.randint(0, 254) for _ in range(length - len(data) - 3)]
6031 return [0, 2] + pseudo_random + [0] + data
6032
6033
6034 def encode_base_n(num, n, table=None):
6035 FULL_TABLE = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
6036 if not table:
6037 table = FULL_TABLE[:n]
6038
6039 if n > len(table):
6040 raise ValueError('base %d exceeds table length %d' % (n, len(table)))
6041
6042 if num == 0:
6043 return table[0]
6044
6045 ret = ''
6046 while num:
6047 ret = table[num % n] + ret
6048 num = num // n
6049 return ret
6050
6051
6052 def decode_packed_codes(code):
6053 mobj = re.search(PACKED_CODES_RE, code)
6054 obfuscated_code, base, count, symbols = mobj.groups()
6055 base = int(base)
6056 count = int(count)
6057 symbols = symbols.split('|')
6058 symbol_table = {}
6059
6060 while count:
6061 count -= 1
6062 base_n_count = encode_base_n(count, base)
6063 symbol_table[base_n_count] = symbols[count] or base_n_count
6064
6065 return re.sub(
6066 r'\b(\w+)\b', lambda mobj: symbol_table[mobj.group(0)],
6067 obfuscated_code)
6068
6069
6070 def caesar(s, alphabet, shift):
6071 if shift == 0:
6072 return s
6073 l = len(alphabet)
6074 return ''.join(
6075 alphabet[(alphabet.index(c) + shift) % l] if c in alphabet else c
6076 for c in s)
6077
6078
6079 def rot47(s):
6080 return caesar(s, r'''!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~''', 47)
6081
6082
6083 def parse_m3u8_attributes(attrib):
6084 info = {}
6085 for (key, val) in re.findall(r'(?P<key>[A-Z0-9-]+)=(?P<val>"[^"]+"|[^",]+)(?:,|$)', attrib):
6086 if val.startswith('"'):
6087 val = val[1:-1]
6088 info[key] = val
6089 return info
6090
6091
6092 def urshift(val, n):
6093 return val >> n if val >= 0 else (val + 0x100000000) >> n
6094
6095
6096 # Based on png2str() written by @gdkchan and improved by @yokrysty
6097 # Originally posted at https://github.com/ytdl-org/youtube-dl/issues/9706
6098 def decode_png(png_data):
6099 # Reference: https://www.w3.org/TR/PNG/
6100 header = png_data[8:]
6101
6102 if png_data[:8] != b'\x89PNG\x0d\x0a\x1a\x0a' or header[4:8] != b'IHDR':
6103 raise IOError('Not a valid PNG file.')
6104
6105 int_map = {1: '>B', 2: '>H', 4: '>I'}
6106 unpack_integer = lambda x: compat_struct_unpack(int_map[len(x)], x)[0]
6107
6108 chunks = []
6109
6110 while header:
6111 length = unpack_integer(header[:4])
6112 header = header[4:]
6113
6114 chunk_type = header[:4]
6115 header = header[4:]
6116
6117 chunk_data = header[:length]
6118 header = header[length:]
6119
6120 header = header[4:] # Skip CRC
6121
6122 chunks.append({
6123 'type': chunk_type,
6124 'length': length,
6125 'data': chunk_data
6126 })
6127
6128 ihdr = chunks[0]['data']
6129
6130 width = unpack_integer(ihdr[:4])
6131 height = unpack_integer(ihdr[4:8])
6132
6133 idat = b''
6134
6135 for chunk in chunks:
6136 if chunk['type'] == b'IDAT':
6137 idat += chunk['data']
6138
6139 if not idat:
6140 raise IOError('Unable to read PNG data.')
6141
6142 decompressed_data = bytearray(zlib.decompress(idat))
6143
6144 stride = width * 3
6145 pixels = []
6146
6147 def _get_pixel(idx):
6148 x = idx % stride
6149 y = idx // stride
6150 return pixels[y][x]
6151
6152 for y in range(height):
6153 basePos = y * (1 + stride)
6154 filter_type = decompressed_data[basePos]
6155
6156 current_row = []
6157
6158 pixels.append(current_row)
6159
6160 for x in range(stride):
6161 color = decompressed_data[1 + basePos + x]
6162 basex = y * stride + x
6163 left = 0
6164 up = 0
6165
6166 if x > 2:
6167 left = _get_pixel(basex - 3)
6168 if y > 0:
6169 up = _get_pixel(basex - stride)
6170
6171 if filter_type == 1: # Sub
6172 color = (color + left) & 0xff
6173 elif filter_type == 2: # Up
6174 color = (color + up) & 0xff
6175 elif filter_type == 3: # Average
6176 color = (color + ((left + up) >> 1)) & 0xff
6177 elif filter_type == 4: # Paeth
6178 a = left
6179 b = up
6180 c = 0
6181
6182 if x > 2 and y > 0:
6183 c = _get_pixel(basex - stride - 3)
6184
6185 p = a + b - c
6186
6187 pa = abs(p - a)
6188 pb = abs(p - b)
6189 pc = abs(p - c)
6190
6191 if pa <= pb and pa <= pc:
6192 color = (color + a) & 0xff
6193 elif pb <= pc:
6194 color = (color + b) & 0xff
6195 else:
6196 color = (color + c) & 0xff
6197
6198 current_row.append(color)
6199
6200 return width, height, pixels
6201
6202
6203 def write_xattr(path, key, value):
6204 # This mess below finds the best xattr tool for the job
6205 try:
6206 # try the pyxattr module...
6207 import xattr
6208
6209 if hasattr(xattr, 'set'): # pyxattr
6210 # Unicode arguments are not supported in python-pyxattr until
6211 # version 0.5.0
6212 # See https://github.com/ytdl-org/youtube-dl/issues/5498
6213 pyxattr_required_version = '0.5.0'
6214 if version_tuple(xattr.__version__) < version_tuple(pyxattr_required_version):
6215 # TODO: fallback to CLI tools
6216 raise XAttrUnavailableError(
6217 'python-pyxattr is detected but is too old. '
6218 'yt-dlp requires %s or above while your version is %s. '
6219 'Falling back to other xattr implementations' % (
6220 pyxattr_required_version, xattr.__version__))
6221
6222 setxattr = xattr.set
6223 else: # xattr
6224 setxattr = xattr.setxattr
6225
6226 try:
6227 setxattr(path, key, value)
6228 except EnvironmentError as e:
6229 raise XAttrMetadataError(e.errno, e.strerror)
6230
6231 except ImportError:
6232 if compat_os_name == 'nt':
6233 # Write xattrs to NTFS Alternate Data Streams:
6234 # http://en.wikipedia.org/wiki/NTFS#Alternate_data_streams_.28ADS.29
6235 assert ':' not in key
6236 assert os.path.exists(path)
6237
6238 ads_fn = path + ':' + key
6239 try:
6240 with open(ads_fn, 'wb') as f:
6241 f.write(value)
6242 except EnvironmentError as e:
6243 raise XAttrMetadataError(e.errno, e.strerror)
6244 else:
6245 user_has_setfattr = check_executable('setfattr', ['--version'])
6246 user_has_xattr = check_executable('xattr', ['-h'])
6247
6248 if user_has_setfattr or user_has_xattr:
6249
6250 value = value.decode('utf-8')
6251 if user_has_setfattr:
6252 executable = 'setfattr'
6253 opts = ['-n', key, '-v', value]
6254 elif user_has_xattr:
6255 executable = 'xattr'
6256 opts = ['-w', key, value]
6257
6258 cmd = ([encodeFilename(executable, True)]
6259 + [encodeArgument(o) for o in opts]
6260 + [encodeFilename(path, True)])
6261
6262 try:
6263 p = Popen(
6264 cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
6265 except EnvironmentError as e:
6266 raise XAttrMetadataError(e.errno, e.strerror)
6267 stdout, stderr = p.communicate_or_kill()
6268 stderr = stderr.decode('utf-8', 'replace')
6269 if p.returncode != 0:
6270 raise XAttrMetadataError(p.returncode, stderr)
6271
6272 else:
6273 # On Unix, and can't find pyxattr, setfattr, or xattr.
6274 if sys.platform.startswith('linux'):
6275 raise XAttrUnavailableError(
6276 "Couldn't find a tool to set the xattrs. "
6277 "Install either the python 'pyxattr' or 'xattr' "
6278 "modules, or the GNU 'attr' package "
6279 "(which contains the 'setfattr' tool).")
6280 else:
6281 raise XAttrUnavailableError(
6282 "Couldn't find a tool to set the xattrs. "
6283 "Install either the python 'xattr' module, "
6284 "or the 'xattr' binary.")
6285
6286
6287 def random_birthday(year_field, month_field, day_field):
6288 start_date = datetime.date(1950, 1, 1)
6289 end_date = datetime.date(1995, 12, 31)
6290 offset = random.randint(0, (end_date - start_date).days)
6291 random_date = start_date + datetime.timedelta(offset)
6292 return {
6293 year_field: str(random_date.year),
6294 month_field: str(random_date.month),
6295 day_field: str(random_date.day),
6296 }
6297
6298
6299 # Templates for internet shortcut files, which are plain text files.
6300 DOT_URL_LINK_TEMPLATE = '''
6301 [InternetShortcut]
6302 URL=%(url)s
6303 '''.lstrip()
6304
6305 DOT_WEBLOC_LINK_TEMPLATE = '''
6306 <?xml version="1.0" encoding="UTF-8"?>
6307 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
6308 <plist version="1.0">
6309 <dict>
6310 \t<key>URL</key>
6311 \t<string>%(url)s</string>
6312 </dict>
6313 </plist>
6314 '''.lstrip()
6315
6316 DOT_DESKTOP_LINK_TEMPLATE = '''
6317 [Desktop Entry]
6318 Encoding=UTF-8
6319 Name=%(filename)s
6320 Type=Link
6321 URL=%(url)s
6322 Icon=text-html
6323 '''.lstrip()
6324
6325 LINK_TEMPLATES = {
6326 'url': DOT_URL_LINK_TEMPLATE,
6327 'desktop': DOT_DESKTOP_LINK_TEMPLATE,
6328 'webloc': DOT_WEBLOC_LINK_TEMPLATE,
6329 }
6330
6331
6332 def iri_to_uri(iri):
6333 """
6334 Converts an IRI (Internationalized Resource Identifier, allowing Unicode characters) to a URI (Uniform Resource Identifier, ASCII-only).
6335
6336 The function doesn't add an additional layer of escaping; e.g., it doesn't escape `%3C` as `%253C`. Instead, it percent-escapes characters with an underlying UTF-8 encoding *besides* those already escaped, leaving the URI intact.
6337 """
6338
6339 iri_parts = compat_urllib_parse_urlparse(iri)
6340
6341 if '[' in iri_parts.netloc:
6342 raise ValueError('IPv6 URIs are not, yet, supported.')
6343 # Querying `.netloc`, when there's only one bracket, also raises a ValueError.
6344
6345 # The `safe` argument values, that the following code uses, contain the characters that should not be percent-encoded. Everything else but letters, digits and '_.-' will be percent-encoded with an underlying UTF-8 encoding. Everything already percent-encoded will be left as is.
6346
6347 net_location = ''
6348 if iri_parts.username:
6349 net_location += compat_urllib_parse_quote(iri_parts.username, safe=r"!$%&'()*+,~")
6350 if iri_parts.password is not None:
6351 net_location += ':' + compat_urllib_parse_quote(iri_parts.password, safe=r"!$%&'()*+,~")
6352 net_location += '@'
6353
6354 net_location += iri_parts.hostname.encode('idna').decode('utf-8') # Punycode for Unicode hostnames.
6355 # The 'idna' encoding produces ASCII text.
6356 if iri_parts.port is not None and iri_parts.port != 80:
6357 net_location += ':' + str(iri_parts.port)
6358
6359 return compat_urllib_parse_urlunparse(
6360 (iri_parts.scheme,
6361 net_location,
6362
6363 compat_urllib_parse_quote_plus(iri_parts.path, safe=r"!$%&'()*+,/:;=@|~"),
6364
6365 # Unsure about the `safe` argument, since this is a legacy way of handling parameters.
6366 compat_urllib_parse_quote_plus(iri_parts.params, safe=r"!$%&'()*+,/:;=@|~"),
6367
6368 # Not totally sure about the `safe` argument, since the source does not explicitly mention the query URI component.
6369 compat_urllib_parse_quote_plus(iri_parts.query, safe=r"!$%&'()*+,/:;=?@{|}~"),
6370
6371 compat_urllib_parse_quote_plus(iri_parts.fragment, safe=r"!#$%&'()*+,/:;=?@{|}~")))
6372
6373 # Source for `safe` arguments: https://url.spec.whatwg.org/#percent-encoded-bytes.
6374
6375
6376 def to_high_limit_path(path):
6377 if sys.platform in ['win32', 'cygwin']:
6378 # Work around MAX_PATH limitation on Windows. The maximum allowed length for the individual path segments may still be quite limited.
6379 return r'\\?\ '.rstrip() + os.path.abspath(path)
6380
6381 return path
6382
6383
6384 def format_field(obj, field=None, template='%s', ignore=(None, ''), default='', func=None):
6385 if field is None:
6386 val = obj if obj is not None else default
6387 else:
6388 val = obj.get(field, default)
6389 if func and val not in ignore:
6390 val = func(val)
6391 return template % val if val not in ignore else default
6392
6393
6394 def clean_podcast_url(url):
6395 return re.sub(r'''(?x)
6396 (?:
6397 (?:
6398 chtbl\.com/track|
6399 media\.blubrry\.com| # https://create.blubrry.com/resources/podcast-media-download-statistics/getting-started/
6400 play\.podtrac\.com
6401 )/[^/]+|
6402 (?:dts|www)\.podtrac\.com/(?:pts/)?redirect\.[0-9a-z]{3,4}| # http://analytics.podtrac.com/how-to-measure
6403 flex\.acast\.com|
6404 pd(?:
6405 cn\.co| # https://podcorn.com/analytics-prefix/
6406 st\.fm # https://podsights.com/docs/
6407 )/e
6408 )/''', '', url)
6409
6410
6411 _HEX_TABLE = '0123456789abcdef'
6412
6413
6414 def random_uuidv4():
6415 return re.sub(r'[xy]', lambda x: _HEX_TABLE[random.randint(0, 15)], 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx')
6416
6417
6418 def make_dir(path, to_screen=None):
6419 try:
6420 dn = os.path.dirname(path)
6421 if dn and not os.path.exists(dn):
6422 os.makedirs(dn)
6423 return True
6424 except (OSError, IOError) as err:
6425 if callable(to_screen) is not None:
6426 to_screen('unable to create directory ' + error_to_compat_str(err))
6427 return False
6428
6429
6430 def get_executable_path():
6431 from zipimport import zipimporter
6432 if hasattr(sys, 'frozen'): # Running from PyInstaller
6433 path = os.path.dirname(sys.executable)
6434 elif isinstance(globals().get('__loader__'), zipimporter): # Running from ZIP
6435 path = os.path.join(os.path.dirname(__file__), '../..')
6436 else:
6437 path = os.path.join(os.path.dirname(__file__), '..')
6438 return os.path.abspath(path)
6439
6440
6441 def load_plugins(name, suffix, namespace):
6442 classes = {}
6443 try:
6444 plugins_spec = importlib.util.spec_from_file_location(
6445 name, os.path.join(get_executable_path(), 'ytdlp_plugins', name, '__init__.py'))
6446 plugins = importlib.util.module_from_spec(plugins_spec)
6447 sys.modules[plugins_spec.name] = plugins
6448 plugins_spec.loader.exec_module(plugins)
6449 for name in dir(plugins):
6450 if name in namespace:
6451 continue
6452 if not name.endswith(suffix):
6453 continue
6454 klass = getattr(plugins, name)
6455 classes[name] = namespace[name] = klass
6456 except FileNotFoundError:
6457 pass
6458 return classes
6459
6460
6461 def traverse_obj(
6462 obj, *path_list, default=None, expected_type=None, get_all=True,
6463 casesense=True, is_user_input=False, traverse_string=False):
6464 ''' Traverse nested list/dict/tuple
6465 @param path_list A list of paths which are checked one by one.
6466 Each path is a list of keys where each key is a string,
6467 a function, a tuple of strings or "...".
6468 When a fuction is given, it takes the key as argument and
6469 returns whether the key matches or not. When a tuple is given,
6470 all the keys given in the tuple are traversed, and
6471 "..." traverses all the keys in the object
6472 @param default Default value to return
6473 @param expected_type Only accept final value of this type (Can also be any callable)
6474 @param get_all Return all the values obtained from a path or only the first one
6475 @param casesense Whether to consider dictionary keys as case sensitive
6476 @param is_user_input Whether the keys are generated from user input. If True,
6477 strings are converted to int/slice if necessary
6478 @param traverse_string Whether to traverse inside strings. If True, any
6479 non-compatible object will also be converted into a string
6480 # TODO: Write tests
6481 '''
6482 if not casesense:
6483 _lower = lambda k: (k.lower() if isinstance(k, str) else k)
6484 path_list = (map(_lower, variadic(path)) for path in path_list)
6485
6486 def _traverse_obj(obj, path, _current_depth=0):
6487 nonlocal depth
6488 path = tuple(variadic(path))
6489 for i, key in enumerate(path):
6490 if obj is None:
6491 return None
6492 if isinstance(key, (list, tuple)):
6493 obj = [_traverse_obj(obj, sub_key, _current_depth) for sub_key in key]
6494 key = ...
6495 if key is ...:
6496 obj = (obj.values() if isinstance(obj, dict)
6497 else obj if isinstance(obj, (list, tuple, LazyList))
6498 else str(obj) if traverse_string else [])
6499 _current_depth += 1
6500 depth = max(depth, _current_depth)
6501 return [_traverse_obj(inner_obj, path[i + 1:], _current_depth) for inner_obj in obj]
6502 elif callable(key):
6503 if isinstance(obj, (list, tuple, LazyList)):
6504 obj = enumerate(obj)
6505 elif isinstance(obj, dict):
6506 obj = obj.items()
6507 else:
6508 if not traverse_string:
6509 return None
6510 obj = str(obj)
6511 _current_depth += 1
6512 depth = max(depth, _current_depth)
6513 return [_traverse_obj(v, path[i + 1:], _current_depth) for k, v in obj if key(k)]
6514 elif isinstance(obj, dict) and not (is_user_input and key == ':'):
6515 obj = (obj.get(key) if casesense or (key in obj)
6516 else next((v for k, v in obj.items() if _lower(k) == key), None))
6517 else:
6518 if is_user_input:
6519 key = (int_or_none(key) if ':' not in key
6520 else slice(*map(int_or_none, key.split(':'))))
6521 if key == slice(None):
6522 return _traverse_obj(obj, (..., *path[i + 1:]), _current_depth)
6523 if not isinstance(key, (int, slice)):
6524 return None
6525 if not isinstance(obj, (list, tuple, LazyList)):
6526 if not traverse_string:
6527 return None
6528 obj = str(obj)
6529 try:
6530 obj = obj[key]
6531 except IndexError:
6532 return None
6533 return obj
6534
6535 if isinstance(expected_type, type):
6536 type_test = lambda val: val if isinstance(val, expected_type) else None
6537 elif expected_type is not None:
6538 type_test = expected_type
6539 else:
6540 type_test = lambda val: val
6541
6542 for path in path_list:
6543 depth = 0
6544 val = _traverse_obj(obj, path)
6545 if val is not None:
6546 if depth:
6547 for _ in range(depth - 1):
6548 val = itertools.chain.from_iterable(v for v in val if v is not None)
6549 val = [v for v in map(type_test, val) if v is not None]
6550 if val:
6551 return val if get_all else val[0]
6552 else:
6553 val = type_test(val)
6554 if val is not None:
6555 return val
6556 return default
6557
6558
6559 def traverse_dict(dictn, keys, casesense=True):
6560 ''' For backward compatibility. Do not use '''
6561 return traverse_obj(dictn, keys, casesense=casesense,
6562 is_user_input=True, traverse_string=True)
6563
6564
6565 def variadic(x, allowed_types=(str, bytes)):
6566 return x if isinstance(x, collections.abc.Iterable) and not isinstance(x, allowed_types) else (x,)
6567
6568
6569 # create a JSON Web Signature (jws) with HS256 algorithm
6570 # the resulting format is in JWS Compact Serialization
6571 # implemented following JWT https://www.rfc-editor.org/rfc/rfc7519.html
6572 # implemented following JWS https://www.rfc-editor.org/rfc/rfc7515.html
6573 def jwt_encode_hs256(payload_data, key, headers={}):
6574 header_data = {
6575 'alg': 'HS256',
6576 'typ': 'JWT',
6577 }
6578 if headers:
6579 header_data.update(headers)
6580 header_b64 = base64.b64encode(json.dumps(header_data).encode('utf-8'))
6581 payload_b64 = base64.b64encode(json.dumps(payload_data).encode('utf-8'))
6582 h = hmac.new(key.encode('utf-8'), header_b64 + b'.' + payload_b64, hashlib.sha256)
6583 signature_b64 = base64.b64encode(h.digest())
6584 token = header_b64 + b'.' + payload_b64 + b'.' + signature_b64
6585 return token
6586
6587
6588 # can be extended in future to verify the signature and parse header and return the algorithm used if it's not HS256
6589 def jwt_decode_hs256(jwt):
6590 header_b64, payload_b64, signature_b64 = jwt.split('.')
6591 payload_data = json.loads(base64.urlsafe_b64decode(payload_b64))
6592 return payload_data
6593
6594
6595 def supports_terminal_sequences(stream):
6596 if compat_os_name == 'nt':
6597 if get_windows_version() < (10, 0, 10586):
6598 return False
6599 elif not os.getenv('TERM'):
6600 return False
6601 try:
6602 return stream.isatty()
6603 except BaseException:
6604 return False
6605
6606
6607 _terminal_sequences_re = re.compile('\033\\[[^m]+m')
6608
6609
6610 def remove_terminal_sequences(string):
6611 return _terminal_sequences_re.sub('', string)
6612
6613
6614 def number_of_digits(number):
6615 return len('%d' % number)
6616
6617
6618 def join_nonempty(*values, delim='-', from_dict=None):
6619 if from_dict is not None:
6620 values = map(from_dict.get, values)
6621 return delim.join(map(str, filter(None, values)))