-
Notifications
You must be signed in to change notification settings - Fork 8
/
changelog.html
2094 lines (2059 loc) · 235 KB
/
changelog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="en" data-content_root="./">
<head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="Support" href="support.html" /><link rel="prev" title="Exceptions" href="api/exceptions.html" />
<!-- Generated with Sphinx 8.1.3 and Furo 2024.08.06 -->
<link rel="apple-touch-icon" sizes="180x180" href="/_static/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/_static/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/_static/favicon-16x16.png">
<link rel="shortcut icon" href="/_static/favicon.ico">
<link rel="manifest" href="/_static/site.webmanifest">
<meta property="og:title" content="Changelog - Streamlink 7.0.0 documentation">
<meta property="og:description" content="A command-line utility that extracts streams from various services and pipes them into a video player of choice.">
<meta property="og:image" content="/_static/opengraph-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<title>Changelog - Streamlink 7.0.0 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=a746c00c" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=354aac6f" />
<link rel="stylesheet" type="text/css" href="_static/sphinx-design.min.css?v=95c83b7e" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=302659d7" />
<link rel="stylesheet" type="text/css" href="_static/styles/custom.css?v=4504cacd" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/fontawesome.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/solid.min.css" />
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/brands.min.css" />
<style>
body {
--color-code-background: #f8f8f8;
--color-code-foreground: black;
}
@media not print {
body[data-theme="dark"] {
--color-code-background: #202020;
--color-code-foreground: #d0d0d0;
}
@media (prefers-color-scheme: dark) {
body:not([data-theme="light"]) {
--color-code-background: #202020;
--color-code-foreground: #d0d0d0;
}
}
}
</style></head>
<body>
<script>
document.body.dataset.theme = localStorage.getItem("theme") || "auto";
</script>
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol id="svg-toc" viewBox="0 0 24 24">
<title>Contents</title>
<svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024">
<path d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM115.4 518.9L271.7 642c5.8 4.6 14.4.5 14.4-6.9V388.9c0-7.4-8.5-11.5-14.4-6.9L115.4 505.1a8.74 8.74 0 0 0 0 13.8z"/>
</svg>
</symbol>
<symbol id="svg-menu" viewBox="0 0 24 24">
<title>Menu</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-menu">
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</symbol>
<symbol id="svg-arrow-right" viewBox="0 0 24 24">
<title>Expand</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather-chevron-right">
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
</symbol>
<symbol id="svg-sun" viewBox="0 0 24 24">
<title>Light mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</symbol>
<symbol id="svg-moon" viewBox="0 0 24 24">
<title>Dark mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M12 3c.132 0 .263 0 .393 0a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" />
</svg>
</symbol>
<symbol id="svg-sun-with-moon" viewBox="0 0 24 24">
<title>Auto light/dark, in light mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round"
class="icon-custom-derived-from-feather-sun-and-tabler-moon">
<path style="opacity: 50%" d="M 5.411 14.504 C 5.471 14.504 5.532 14.504 5.591 14.504 C 3.639 16.319 4.383 19.569 6.931 20.352 C 7.693 20.586 8.512 20.551 9.25 20.252 C 8.023 23.207 4.056 23.725 2.11 21.184 C 0.166 18.642 1.702 14.949 4.874 14.536 C 5.051 14.512 5.231 14.5 5.411 14.5 L 5.411 14.504 Z"/>
<line x1="14.5" y1="3.25" x2="14.5" y2="1.25"/>
<line x1="14.5" y1="15.85" x2="14.5" y2="17.85"/>
<line x1="10.044" y1="5.094" x2="8.63" y2="3.68"/>
<line x1="19" y1="14.05" x2="20.414" y2="15.464"/>
<line x1="8.2" y1="9.55" x2="6.2" y2="9.55"/>
<line x1="20.8" y1="9.55" x2="22.8" y2="9.55"/>
<line x1="10.044" y1="14.006" x2="8.63" y2="15.42"/>
<line x1="19" y1="5.05" x2="20.414" y2="3.636"/>
<circle cx="14.5" cy="9.55" r="3.6"/>
</svg>
</symbol>
<symbol id="svg-moon-with-sun" viewBox="0 0 24 24">
<title>Auto light/dark, in dark mode</title>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round"
class="icon-custom-derived-from-feather-sun-and-tabler-moon">
<path d="M 8.282 7.007 C 8.385 7.007 8.494 7.007 8.595 7.007 C 5.18 10.184 6.481 15.869 10.942 17.24 C 12.275 17.648 13.706 17.589 15 17.066 C 12.851 22.236 5.91 23.143 2.505 18.696 C -0.897 14.249 1.791 7.786 7.342 7.063 C 7.652 7.021 7.965 7 8.282 7 L 8.282 7.007 Z"/>
<line style="opacity: 50%" x1="18" y1="3.705" x2="18" y2="2.5"/>
<line style="opacity: 50%" x1="18" y1="11.295" x2="18" y2="12.5"/>
<line style="opacity: 50%" x1="15.316" y1="4.816" x2="14.464" y2="3.964"/>
<line style="opacity: 50%" x1="20.711" y1="10.212" x2="21.563" y2="11.063"/>
<line style="opacity: 50%" x1="14.205" y1="7.5" x2="13.001" y2="7.5"/>
<line style="opacity: 50%" x1="21.795" y1="7.5" x2="23" y2="7.5"/>
<line style="opacity: 50%" x1="15.316" y1="10.184" x2="14.464" y2="11.036"/>
<line style="opacity: 50%" x1="20.711" y1="4.789" x2="21.563" y2="3.937"/>
<circle style="opacity: 50%" cx="18" cy="7.5" r="2.169"/>
</svg>
</symbol>
<symbol id="svg-pencil" viewBox="0 0 24 24">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-pencil-code">
<path d="M4 20h4l10.5 -10.5a2.828 2.828 0 1 0 -4 -4l-10.5 10.5v4" />
<path d="M13.5 6.5l4 4" />
<path d="M20 21l2 -2l-2 -2" />
<path d="M17 17l-2 2l2 2" />
</svg>
</symbol>
<symbol id="svg-eye" viewBox="0 0 24 24">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-eye-code">
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M10 12a2 2 0 1 0 4 0a2 2 0 0 0 -4 0" />
<path
d="M11.11 17.958c-3.209 -.307 -5.91 -2.293 -8.11 -5.958c2.4 -4 5.4 -6 9 -6c3.6 0 6.6 2 9 6c-.21 .352 -.427 .688 -.647 1.008" />
<path d="M20 21l2 -2l-2 -2" />
<path d="M17 17l-2 2l2 2" />
</svg>
</symbol>
</svg>
<input type="checkbox" class="sidebar-toggle" name="__navigation" id="__navigation">
<input type="checkbox" class="sidebar-toggle" name="__toc" id="__toc">
<label class="overlay sidebar-overlay" for="__navigation">
<div class="visually-hidden">Hide navigation sidebar</div>
</label>
<label class="overlay toc-overlay" for="__toc">
<div class="visually-hidden">Hide table of contents sidebar</div>
</label>
<a class="skip-to-content muted-link" href="#furo-main-content">Skip to content</a>
<div class="page">
<header class="mobile-header">
<div class="header-left">
<label class="nav-overlay-icon" for="__navigation">
<div class="visually-hidden">Toggle site navigation sidebar</div>
<i class="icon"><svg><use href="#svg-menu"></use></svg></i>
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">Streamlink 7.0.0 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
<button class="theme-toggle">
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
<svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg>
<svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg>
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
</button>
</div>
<label class="toc-overlay-icon toc-header-icon" for="__toc">
<div class="visually-hidden">Toggle table of contents sidebar</div>
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
</label>
</div>
</header>
<aside class="sidebar-drawer">
<div class="sidebar-container">
<div class="sidebar-sticky"><div class="sidebar-scroll"><a class="sidebar-brand centered" href="index.html">
<div class="sidebar-logo-container">
<img class="sidebar-logo only-light" src="_static/icon.svg" alt="Streamlink"/>
<img class="sidebar-logo only-dark" src="_static/icon.svg" alt="Streamlink"/>
</div>
<p class="sidebar-brand-text">Streamlink</p>
<p class="sidebar-brand-oneliner">A command-line utility that extracts streams from various services and pipes them into a video player of choice.</p>
</a>
<div class="sidebar-versions centered" role="note" aria-label="versions">
<pre class="sidebar-versions-current">7.0.0</pre>
<dl class="sidebar-versions-others">
<dd><a href="/changelog.html" class="version-current">Stable</a></dd>
<dd><a href="/latest/changelog.html" class="">Latest</a></dd>
</dl>
</div><form class="sidebar-search-container" method="get" action="search.html" role="search">
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
<input type="hidden" name="check_keywords" value="yes">
<input type="hidden" name="area" value="default">
</form>
<div id="searchbox"></div><div class="sidebar-tree">
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="index.html">Overview</a></li>
<li class="toctree-l1"><a class="reference internal" href="install.html">Installation</a></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="cli.html">Command-Line Interface</a><input class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" role="switch" type="checkbox"/><label for="toctree-checkbox-1"><div class="visually-hidden">Toggle navigation of Command-Line Interface</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="cli.html">Command-line usage</a></li>
<li class="toctree-l2"><a class="reference internal" href="cli/tutorial.html">Tutorial</a></li>
<li class="toctree-l2"><a class="reference internal" href="cli/config.html">Configuration file</a></li>
<li class="toctree-l2"><a class="reference internal" href="cli/plugin-sideloading.html">Plugin sideloading</a></li>
<li class="toctree-l2"><a class="reference internal" href="cli/protocols.html">Streaming protocols</a></li>
<li class="toctree-l2"><a class="reference internal" href="cli/proxy.html">Proxy support</a></li>
<li class="toctree-l2"><a class="reference internal" href="cli/metadata.html">Metadata</a></li>
<li class="toctree-l2 has-children"><a class="reference internal" href="cli/plugins.html">Plugin specific usage</a><input class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" role="switch" type="checkbox"/><label for="toctree-checkbox-2"><div class="visually-hidden">Toggle navigation of Plugin specific usage</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l3"><a class="reference internal" href="cli/plugins/twitch.html">Twitch</a></li>
</ul>
</li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="plugins.html">Plugins</a></li>
<li class="toctree-l1"><a class="reference internal" href="players.html">Players</a></li>
<li class="toctree-l1"><a class="reference internal" href="deprecations.html">Deprecations</a></li>
<li class="toctree-l1"><a class="reference internal" href="migrations.html">Migrations</a></li>
<li class="toctree-l1"><a class="reference internal" href="developing.html">Developing</a></li>
<li class="toctree-l1 has-children"><a class="reference internal" href="api_guide.html">API Guide</a><input class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" role="switch" type="checkbox"/><label for="toctree-checkbox-3"><div class="visually-hidden">Toggle navigation of API Guide</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="api_guide/quickstart.html">Quickstart</a></li>
<li class="toctree-l2"><a class="reference internal" href="api_guide/validate.html">Validation schemas</a></li>
</ul>
</li>
<li class="toctree-l1 has-children"><a class="reference internal" href="api.html">API Reference</a><input class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" role="switch" type="checkbox"/><label for="toctree-checkbox-4"><div class="visually-hidden">Toggle navigation of API Reference</div><i class="icon"><svg><use href="#svg-arrow-right"></use></svg></i></label><ul>
<li class="toctree-l2"><a class="reference internal" href="api/streamlink.html">Streamlink</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/session.html">Session</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/plugin.html">Plugin</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/options.html">Options</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/cache.html">Cache</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/validate.html">Validation schemas</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/stream.html">Stream</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/webbrowser.html">Webbrowser</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/exceptions.html">Exceptions</a></li>
</ul>
</li>
<li class="toctree-l1 current current-page"><a class="current reference internal" href="#">Changelog</a></li>
<li class="toctree-l1"><a class="reference internal" href="support.html">Support</a></li>
<li class="toctree-l1"><a class="reference internal" href="applications.html">Streamlink Applications</a></li>
<li class="toctree-l1"><a class="reference internal" href="thirdparty.html">Third Party Applications</a></li>
</ul>
</div><div class="github-buttons centered">
<a href="https://github.com/streamlink/streamlink"
class="github-button"
data-icon="octicon-mark-github"
data-count-href="/streamlink/streamlink/stargazers"
data-count-api="/repos/streamlink/streamlink#stargazers_count">Github</a>
<a href="https://github.com/streamlink/streamlink/issues"
class="github-button"
data-icon="octicon-issue-opened">Issues</a>
<script async defer id="github-bjs" src="https://buttons.github.io/buttons.js"></script>
</div></div>
</div>
</div>
</aside>
<div class="main">
<div class="content">
<div class="article-container">
<a href="#" class="back-to-top muted-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M13 20h-2V8l-5.5 5.5-1.42-1.42L12 4.16l7.92 7.92-1.42 1.42L13 8v12z"></path>
</svg>
<span>Back to top</span>
</a>
<div class="content-icon-container">
<div class="view-this-page">
<a class="muted-link" href="https://github.com/streamlink/streamlink/blob/master/docs/changelog.md?plain=true" title="View this page">
<svg><use href="#svg-eye"></use></svg>
<span class="visually-hidden">View this page</span>
</a>
</div><div class="edit-this-page">
<a class="muted-link" href="https://github.com/streamlink/streamlink/edit/master/docs/changelog.md" title="Edit this page">
<svg><use href="#svg-pencil"></use></svg>
<span class="visually-hidden">Edit this page</span>
</a>
</div><div class="theme-toggle-container theme-toggle-content">
<button class="theme-toggle">
<div class="visually-hidden">Toggle Light / Dark / Auto color theme</div>
<svg class="theme-icon-when-auto-light"><use href="#svg-sun-with-moon"></use></svg>
<svg class="theme-icon-when-auto-dark"><use href="#svg-moon-with-sun"></use></svg>
<svg class="theme-icon-when-dark"><use href="#svg-moon"></use></svg>
<svg class="theme-icon-when-light"><use href="#svg-sun"></use></svg>
</button>
</div>
<label class="toc-overlay-icon toc-content-icon" for="__toc">
<div class="visually-hidden">Toggle table of contents sidebar</div>
<i class="icon"><svg><use href="#svg-toc"></use></svg></i>
</label>
</div>
<article role="main" id="furo-main-content">
<section id="changelog">
<h1>Changelog<a class="headerlink" href="#changelog" title="Link to this heading">¶</a></h1>
<section id="streamlink-7-0-0-2024-11-04">
<h2>streamlink 7.0.0 (2024-11-04)<a class="headerlink" href="#streamlink-7-0-0-2024-11-04" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>BREAKING: dropped support for <a class="reference external" href="https://peps.python.org/pep-0569/#lifespan">EOL Python 3.8</a> (Win 7/8 are now unsupported) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6230">#6230</a>)</p></li>
<li><p>BREAKING/CLI: <a class="reference external" href="https://streamlink.github.io/migrations.html#config-file-paths">removed deprecated config file and plugin config file paths</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6149">#6149</a>)</p></li>
<li><p>BREAKING/CLI: <a class="reference external" href="https://streamlink.github.io/migrations.html#custom-plugins-sideloading-paths">removed deprecated plugin sideloading paths</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6150">#6150</a>)</p></li>
<li><p>BREAKING/CLI: <a class="reference external" href="https://streamlink.github.io/migrations.html#force-progress">removed deprecated <code class="docutils literal notranslate"><span class="pre">--force-progress</span></code> CLI argument</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6196">#6196</a>)</p></li>
<li><p>BREAKING/CLI: <a class="reference external" href="https://streamlink.github.io/migrations.html#stream-type-related-cli-arguments">removed deprecated stream-type related CLI arguments</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6232">#6232</a>)</p>
<ul>
<li><p><code class="docutils literal notranslate"><span class="pre">--hls-segment-attempts</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">--hls-segment-threads</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">--hls-segment-timeout</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">--hls-timeout</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">--http-stream-timeout</span></code></p></li>
</ul>
</li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#stream-type-related-cli-arguments">removed deprecated stream-type related session options</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6232">#6232</a>)</p>
<ul>
<li><p><code class="docutils literal notranslate"><span class="pre">hls-segment-attempts</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">hls-segment-threads</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">hls-segment-timeout</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">hls-timeout</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">dash-segment-attempts</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">dash-segment-threads</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">dash-segment-timeout</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">dash-timeout</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">http-stream-timeout</span></code></p></li>
</ul>
</li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#httpsession-and-httpadapters">removed deprecated import paths for <code class="docutils literal notranslate"><span class="pre">HTTPSession</span></code> and <code class="docutils literal notranslate"><span class="pre">HTTPAdapter</span></code>s</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6274">#6274</a>)</p></li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#streamlink-plugins-re-exports">removed deprecated import paths for <code class="docutils literal notranslate"><span class="pre">NoPluginError</span></code>, <code class="docutils literal notranslate"><span class="pre">NoStreamsError</span></code>, <code class="docutils literal notranslate"><span class="pre">PluginError</span></code> and <code class="docutils literal notranslate"><span class="pre">Plugin</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6274">#6274</a>)</p></li>
<li><p>BREAKING/packaging: dropped “32 bit” Windows x86 and Linux AppImage i686 builds (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6052">#6052</a>)</p></li>
<li><p>Removed: flawed implementation of VLC-specific player variables (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6251">#6251</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6253">#6253</a>)</p></li>
<li><p>Deprecated: <a class="reference external" href="https://streamlink.github.io/deprecations.html#verbose-player"><code class="docutils literal notranslate"><span class="pre">--verbose-player</span></code> CLI argument in favor of <code class="docutils literal notranslate"><span class="pre">--player-verbose</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6227">#6227</a>)</p></li>
<li><p>Deprecated: <a class="reference external" href="https://streamlink.github.io/deprecations.html#fifo"><code class="docutils literal notranslate"><span class="pre">--fifo</span></code> CLI argument in favor of <code class="docutils literal notranslate"><span class="pre">--player-fifo</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6227">#6227</a>)</p></li>
<li><p>Added: warning messages for deprecated/suppressed plugin arguments (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6240">#6240</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6249">#6249</a>)</p></li>
<li><p>Fixed: errors on missing <code class="docutils literal notranslate"><span class="pre">stdin</span></code> file descriptor (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6239">#6239</a>)</p></li>
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">--interface</span></code> not having an effect on custom <code class="docutils literal notranslate"><span class="pre">HTTPAdapter</span></code>s (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6223">#6223</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>afreeca: renamed to soop, overhauled plugin and deprecated old plugin CLI arguments (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6247">#6247</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6257">#6257</a>)</p></li>
<li><p>ruv: rewritten and fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6262">#6262</a>)</p></li>
<li><p>tv3cat: updated plugin matchers (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6242">#6242</a>)</p></li>
</ul>
</li>
<li><p>Docs: updated documentation of various CLI arguments (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6226">#6226</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6255">#6255</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6225">#6225</a>)</p></li>
<li><p>Chore: updated typing annotations (PEP 563, PEP 585, PEP 604, PEP 613) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6218">#6218</a>)</p></li>
<li><p>Chore: reformatted the whole code base using ruff (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6260">#6260</a>)</p></li>
<li><p>Build: bumped <code class="docutils literal notranslate"><span class="pre">trio</span></code> dependency to <code class="docutils literal notranslate"><span class="pre">>=0.25.0,<1</span></code> on Python >= 3.13 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6244">#6244</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.11.0...7.0.0">Full changelog</a></p>
</section>
<section id="streamlink-6-11-0-2024-10-01">
<h2>streamlink 6.11.0 (2024-10-01)<a class="headerlink" href="#streamlink-6-11-0-2024-10-01" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Deprecated: <a class="reference external" href="https://streamlink.github.io/deprecations.html#r-record-and-pipe"><code class="docutils literal notranslate"><span class="pre">--record-and-pipe=...</span></code> in favor of <code class="docutils literal notranslate"><span class="pre">--stdout</span> <span class="pre">--record=...</span></code></a> (and explicitly disallowed <code class="docutils literal notranslate"><span class="pre">--stdout</span> <span class="pre">--output=...</span></code>) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6194">#6194</a>)</p></li>
<li><p>Fixed: error when setting both <code class="docutils literal notranslate"><span class="pre">--http-no-ssl-verify</span></code> and <code class="docutils literal notranslate"><span class="pre">--http-disable-dh</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6205">#6205</a>)</p></li>
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">--player-passthrough</span></code> without a resolved default <code class="docutils literal notranslate"><span class="pre">--player</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6207">#6207</a>)</p></li>
<li><p>Fixed: error when stdout/stderr file descriptors are missing (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6197">#6197</a>)</p></li>
<li><p>Updated: webbrowser API’s Chrome devtools protocol to latest version (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6211">#6211</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>crunchyroll: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6179">#6179</a>)</p></li>
<li><p>dlive: fixed missing stream URL signature (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6171">#6171</a>)</p></li>
<li><p>facebook: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6199">#6199</a>)</p></li>
<li><p>mildom: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6198">#6198</a>)</p></li>
<li><p>tvrby: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6202">#6202</a>)</p></li>
<li><p>tvrplus: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6203">#6203</a>)</p></li>
<li><p>twitch: fixed client-integrity token acquirement (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6211">#6211</a>)</p></li>
<li><p>vk: fixed API params and validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6178">#6178</a>)</p></li>
<li><p>webtv: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6172">#6172</a>)</p></li>
<li><p>zengatv: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6174">#6174</a>)</p></li>
<li><p>zhanqi: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6173">#6173</a>)</p></li>
</ul>
</li>
<li><p>Tests: removed <code class="docutils literal notranslate"><span class="pre">pytest-asyncio</span></code> dependency (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6208">#6208</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.10.0...6.11.0">Full changelog</a></p>
</section>
<section id="streamlink-6-10-0-2024-09-06">
<h2>streamlink 6.10.0 (2024-09-06)<a class="headerlink" href="#streamlink-6-10-0-2024-09-06" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Added: official support for Python 3.13 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6133">#6133</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--logformat</span></code> and <code class="docutils literal notranslate"><span class="pre">--logdateformat</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6138">#6138</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6144">#6144</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--ffmpeg-loglevel</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6161">#6161</a>)</p></li>
<li><p>Fixed: continuous logging errors when stdout stream was closed on the reading end (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6142">#6142</a>)</p></li>
<li><p>Fixed: HTTP proxy config being used when getting webbrowser API’s websocket IPC address (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6130">#6130</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>booyah: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6162">#6162</a>)</p></li>
<li><p>douyin: fixed validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6140">#6140</a>)</p></li>
<li><p>galatasaraytv: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6163">#6163</a>)</p></li>
<li><p>idf1: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6164">#6164</a>)</p></li>
<li><p>linelive: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6165">#6165</a>)</p></li>
<li><p>pandalive: fixed missing HTTP headers (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6148">#6148</a>)</p></li>
<li><p>tiktok: fixed schema of inaccessible streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6160">#6160</a>)</p></li>
<li><p>youtube: disabled VODs, as they are currently non-functional (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6135">#6135</a>)</p></li>
</ul>
</li>
<li><p>Docs: bumped <code class="docutils literal notranslate"><span class="pre">sphinx-design</span> <span class="pre">>=0.5.0,<=0.6.1</span></code>, enabling <code class="docutils literal notranslate"><span class="pre">sphinx</span> <span class="pre">>=8.0.0</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6137">#6137</a>)</p></li>
<li><p>Tests: fixed <code class="docutils literal notranslate"><span class="pre">pytest-asyncio</span></code> warnings (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6143">#6143</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.9.0...6.10.0">Full changelog</a></p>
</section>
<section id="streamlink-6-9-0-2024-08-12">
<h2>streamlink 6.9.0 (2024-08-12)<a class="headerlink" href="#streamlink-6-9-0-2024-08-12" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">streamlink.plugin.api.webbrowser</span></code> subpackage with the <code class="docutils literal notranslate"><span class="pre">aws_waf</span></code> module (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6102">#6102</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6118">#6118</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">max_buffer_size</span></code> kwarg to <code class="docutils literal notranslate"><span class="pre">CDPClient.session()</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6101">#6101</a>)</p></li>
<li><p>Added: webbrowser <code class="docutils literal notranslate"><span class="pre">User-Agent</span></code> header override in headless mode (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6114">#6114</a>)</p></li>
<li><p>Changed: default value of <code class="docutils literal notranslate"><span class="pre">--webbrowser-headless</span></code> from <code class="docutils literal notranslate"><span class="pre">True</span></code> to <code class="docutils literal notranslate"><span class="pre">False</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6116">#6116</a>)</p></li>
<li><p>Changed: unicode characters to be unescaped in JSON output, if possible (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6080">#6080</a>)</p></li>
<li><p>Fixed: potential character encoding issues in Streamlink’s logger (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6081">#6081</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>nicolive: updated plugin matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6127">#6127</a>)</p></li>
<li><p>okru: fixed validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6085">#6085</a>)</p></li>
<li><p>radionet: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6091">#6091</a>)</p></li>
<li><p>sportschau: fixed plugin (HLS streams with packed audio streams remain unsupported) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6104">#6104</a>)</p></li>
<li><p>tiktok: fixed room ID validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6106">#6106</a>)</p></li>
<li><p>tvp: added support for sport.tvp.pl (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6097">#6097</a>)</p></li>
<li><p>twitch: added <code class="docutils literal notranslate"><span class="pre">--twitch-force-client-integrity</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6113">#6113</a>)</p></li>
<li><p>twitch: fixed broken client-integrity token decoding+parsing (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6113">#6113</a>)</p></li>
<li><p>twitch: removed the <code class="docutils literal notranslate"><span class="pre">headless=False</span></code> override (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6117">#6117</a>)</p></li>
<li><p>vimeo: removed error messages for unsupported DASH streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6128">#6128</a>)</p></li>
<li><p>vk: fixed validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6096">#6096</a>)</p></li>
<li><p>vtvgo: resolved AWS Web Application Firewall bot detection (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6102">#6102</a>)</p></li>
<li><p>yupptv: fixed plugin, added ad filtering (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6093">#6093</a>)</p></li>
</ul>
</li>
<li><p>Docs: added webbrowser API metadata to plugin descriptions (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6115">#6115</a>)</p></li>
<li><p>Docs: updated build-dependencies and the furo theme (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6126">#6126</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.8.3...6.9.0">Full changelog</a></p>
</section>
<section id="streamlink-6-8-3-2024-07-11">
<h2>streamlink 6.8.3 (2024-07-11)<a class="headerlink" href="#streamlink-6-8-3-2024-07-11" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Updated plugins:</p>
<ul>
<li><p>tiktok: new plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6073">#6073</a>)</p></li>
<li><p>twitch: fixed channel names with uppercase characters (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6071">#6071</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.8.2...6.8.3">Full changelog</a></p>
</section>
<section id="streamlink-6-8-2-2024-07-04">
<h2>streamlink 6.8.2 (2024-07-04)<a class="headerlink" href="#streamlink-6-8-2-2024-07-04" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Updated plugins:</p>
<ul>
<li><p>douyin: new plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6059">#6059</a>)</p></li>
<li><p>huya: fixed stream URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6058">#6058</a>)</p></li>
<li><p>pluzz: fixed API URL, stream tokens and validation schemas (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6048">#6048</a>)</p></li>
<li><p>twitch: added info log messages about ad break durations (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6051">#6051</a>)</p></li>
<li><p>twitch: fixed clip URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6045">#6045</a>)</p></li>
<li><p>twitch: fixed discontinuity warning spam in certain circumstances (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6022">#6022</a>)</p></li>
<li><p>vidio: fixed stream tokens, added metadata (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6057">#6057</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.8.1...6.8.2">Full changelog</a></p>
</section>
<section id="streamlink-6-8-1-2024-06-18">
<h2>streamlink 6.8.1 (2024-06-18)<a class="headerlink" href="#streamlink-6-8-1-2024-06-18" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: failed HTTPAdapter tests on some OpenSSL configurations (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6040">#6040</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6042">#6042</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.8.0...6.8.1">Full changelog</a></p>
</section>
<section id="streamlink-6-8-0-2024-06-17">
<h2>streamlink 6.8.0 (2024-06-17)<a class="headerlink" href="#streamlink-6-8-0-2024-06-17" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: sha256 checksum to log message when side-loading plugins (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6023">#6023</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">SSLContextAdapter</span></code> to <code class="docutils literal notranslate"><span class="pre">streamlink.session.http</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6024">#6024</a>)</p></li>
<li><p>Deprecated: <a class="reference external" href="https://streamlink.github.io/deprecations.html#streamlink-plugins-re-exports">old re-exports in <code class="docutils literal notranslate"><span class="pre">streamlink.plugins</span></code> package</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6005">#6005</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>bilibili: fixed validation schema for offline channels (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6032">#6032</a>)</p></li>
<li><p>chzzk: fixed channels without content (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6002">#6002</a>)</p></li>
<li><p>cnbce: new plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6029">#6029</a>)</p></li>
<li><p>kick: new plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6012">#6012</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6021">#6021</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6024">#6024</a>)</p></li>
<li><p>tf1: added authentication via <code class="docutils literal notranslate"><span class="pre">--tf1-email</span></code> and <code class="docutils literal notranslate"><span class="pre">--tf1-password</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5983">#5983</a>)</p></li>
<li><p>tvp: fixed live streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6037">#6037</a>)</p></li>
<li><p>welt: fixed live streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6011">#6011</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.7.4...6.8.0">Full changelog</a></p>
</section>
<section id="streamlink-6-7-4-2024-05-12">
<h2>streamlink 6.7.4 (2024-05-12)<a class="headerlink" href="#streamlink-6-7-4-2024-05-12" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Refactored: CLI errors (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5958">#5958</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>afreeca: updated stream qualities (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5953">#5953</a>)</p></li>
<li><p>afreeca: added <code class="docutils literal notranslate"><span class="pre">--afreeca-stream-password</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5952">#5952</a>)</p></li>
<li><p>chzzk: new plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5731">#5731</a>)</p></li>
<li><p>nownews: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5961">#5961</a>)</p></li>
<li><p>turkuvaz: fixed HLS streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5946">#5946</a>)</p></li>
</ul>
</li>
<li><p>Docs: clarified plugin request rules (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5949">#5949</a>)</p></li>
<li><p>Build: fixed build issues on Windows (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5990">#5990</a>)</p></li>
<li><p>Build: removed <code class="docutils literal notranslate"><span class="pre">exceptiongroup</span></code> dependency on Python >= 3.11 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5987">#5987</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.7.3...6.7.4">Full changelog</a></p>
</section>
<section id="streamlink-6-7-3-2024-04-14">
<h2>streamlink 6.7.3 (2024-04-14)<a class="headerlink" href="#streamlink-6-7-3-2024-04-14" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: file output paths being able to exceed max file/directory name length (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5921">#5921</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5925">#5925</a>)</p></li>
<li><p>Fixed: propagation of <code class="docutils literal notranslate"><span class="pre">KeyboardInterrupt</span></code>/<code class="docutils literal notranslate"><span class="pre">SystemExit</span></code> in <code class="docutils literal notranslate"><span class="pre">streamlink.webbrowser</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5930">#5930</a>)</p></li>
<li><p>Fixed: compatibility with <code class="docutils literal notranslate"><span class="pre">exceptiongroup<=1.1.1</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5930">#5930</a>)</p></li>
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">plugin.api.validate.parse_qsd</span></code> input type validation (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5932">#5932</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>mangomolo: fixed missing referer header and updated URL matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5923">#5923</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5926">#5926</a>)</p></li>
<li><p>pluto: rewritten plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5910">#5910</a>)</p></li>
<li><p>showroom: fixed geo-block check preventing stream access (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5911">#5911</a>)</p></li>
<li><p>vkplay: updated URL matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5908">#5908</a>)</p></li>
</ul>
</li>
<li><p>Tests: fixed test failure when running tests from the <code class="docutils literal notranslate"><span class="pre">bdist</span></code> build directory (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5933">#5933</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.7.2...6.7.3">Full changelog</a></p>
</section>
<section id="streamlink-6-7-2-2024-03-23">
<h2>streamlink 6.7.2 (2024-03-23)<a class="headerlink" href="#streamlink-6-7-2-2024-03-23" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Build: reverted <code class="docutils literal notranslate"><span class="pre">trio</span></code> version requirement bump (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5902">#5902</a>)</p></li>
<li><p>Build: fixed incorrect <code class="docutils literal notranslate"><span class="pre">pytest</span></code> version requirement (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5901">#5901</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.7.1...6.7.2">Full changelog</a></p>
</section>
<section id="streamlink-6-7-1-2024-03-19">
<h2>streamlink 6.7.1 (2024-03-19)<a class="headerlink" href="#streamlink-6-7-1-2024-03-19" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: CLI download progress missing the last data chunk (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5887">#5887</a>)</p></li>
<li><p>Fixed: compatibility with <code class="docutils literal notranslate"><span class="pre">trio>=0.25</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5895">#5895</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>tv3cat: fixed plugin and added VODs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5890">#5890</a>)</p></li>
<li><p>vimeo: fixed event streams and embedded player URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5892">#5892</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5899">#5899</a>)</p></li>
</ul>
</li>
<li><p>Build: bumped <code class="docutils literal notranslate"><span class="pre">trio</span></code> dependency version requirement to <code class="docutils literal notranslate"><span class="pre">>=0.25,<1</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5895">#5895</a>)</p></li>
<li><p>Build: added <code class="docutils literal notranslate"><span class="pre">exceptiongroup</span></code> dependency (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5895">#5895</a>)</p></li>
<li><p>Tests: fixed root logger level not being reset (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5888">#5888</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5897">#5897</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.7.0...6.7.1">Full changelog</a></p>
</section>
<section id="streamlink-6-7-0-2024-03-09">
<h2>streamlink 6.7.0 (2024-03-09)<a class="headerlink" href="#streamlink-6-7-0-2024-03-09" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: repeatable <code class="docutils literal notranslate"><span class="pre">--plugin-dir</span></code> CLI argument (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5866">#5866</a>)</p></li>
<li><p>Deprecated: <code class="docutils literal notranslate"><span class="pre">--plugin-dirs</span></code> CLI argument with comma separated paths (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5866">#5866</a>)</p></li>
<li><p>Fixed: independent encryption status of HLS initialization sections (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5861">#5861</a>)</p></li>
<li><p>Fixed: objects of default session options being shared between sessions (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5875">#5875</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>bloomberg: fixed data regex (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5869">#5869</a>)</p></li>
<li><p>ltv_lsm_lv: fixed player ID retrieval, removed custom HLS implementation (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5858">#5858</a>)</p></li>
<li><p>mangomolo: new plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5852">#5852</a>)</p></li>
<li><p>ustvnow: updated matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5881">#5881</a>)</p></li>
<li><p>vimeo: fixed optional DASH streams of live events (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5854">#5854</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.6.2...6.7.0">Full changelog</a></p>
</section>
<section id="streamlink-6-6-2-2024-02-20">
<h2>streamlink 6.6.2 (2024-02-20)<a class="headerlink" href="#streamlink-6-6-2-2024-02-20" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: missing plugin override log message in non-editable installs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5844">#5844</a>)</p></li>
<li><p>Fixed: incorrect <code class="docutils literal notranslate"><span class="pre">setuptools</span></code> min. version in build requirements (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5842">#5842</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>afreeca: fixed broadcast number regex (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5847">#5847</a>)</p></li>
<li><p>afreeca: added support for stream metadata (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5849">#5849</a>)</p></li>
<li><p>hiplayer: removed media.gov.kw matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5848">#5848</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.6.1...6.6.2">Full changelog</a></p>
</section>
<section id="streamlink-6-6-1-2024-02-17">
<h2>streamlink 6.6.1 (2024-02-17)<a class="headerlink" href="#streamlink-6-6-1-2024-02-17" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: plugin arguments in <code class="docutils literal notranslate"><span class="pre">--help</span></code> output (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5838">#5838</a>)</p></li>
<li><p>Docs: removed empty plugin sections in docs and man page (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5838">#5838</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.6.0...6.6.1">Full changelog</a></p>
</section>
<section id="streamlink-6-6-0-2024-02-16">
<h2>streamlink 6.6.0 (2024-02-16)<a class="headerlink" href="#streamlink-6-6-0-2024-02-16" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Implemented: lazy plugins loading (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5793">#5793</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5822">#5822</a>)<br />
Streamlink’s built-in plugins will now be loaded on demand when resolving input URLs.<br />
This improves initial loading times and reduces total memory consumption.</p></li>
<li><p>Refactored: Streamlink session module (and related)</p>
<ul>
<li><p>Moved: <code class="docutils literal notranslate"><span class="pre">streamlink.session</span></code> into a sub-package (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5807">#5807</a>)</p></li>
<li><p>Moved: <code class="docutils literal notranslate"><span class="pre">streamlink.plugin.api.http_session</span></code> to <code class="docutils literal notranslate"><span class="pre">streamlink.session.http</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5807">#5807</a>)</p></li>
<li><p>Refactored: <code class="docutils literal notranslate"><span class="pre">Streamlink</span></code> class internals (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5807">#5807</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5814">#5814</a>)</p></li>
<li><p>Deprecated: <a class="reference external" href="https://streamlink.github.io/deprecations.html#streamlink-get-load-plugins"><code class="docutils literal notranslate"><span class="pre">Streamlink.{get,load}_plugins()</span></code> methods</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5818">#5818</a>)</p></li>
<li><p>Deprecated: <a class="reference external" href="https://streamlink.github.io/deprecations.html#httpsession-and-httpadapters">direct imports of <code class="docutils literal notranslate"><span class="pre">HTTPSession</span></code> and imports from <code class="docutils literal notranslate"><span class="pre">streamlink.plugin.api.http_session</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5818">#5818</a>)</p></li>
</ul>
</li>
<li><p>Refactored: <code class="docutils literal notranslate"><span class="pre">streamlink.utils.args</span></code> module (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5778">#5778</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5781">#5781</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5815">#5815</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>aloula: fixed missing HTTP headers (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5792">#5792</a>)</p></li>
<li><p>foxtr: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5827">#5827</a>)</p></li>
<li><p>huya: fixed stream URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5785">#5785</a>)</p></li>
<li><p>nowtvtr: new plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5827">#5827</a>)</p></li>
<li><p>qq: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5806">#5806</a>)</p></li>
<li><p>rtbf: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5801">#5801</a>)</p></li>
</ul>
</li>
<li><p>Tests: improved overall test execution time (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5799">#5799</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5805">#5805</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.5.1...6.6.0">Full changelog</a></p>
</section>
<section id="streamlink-6-5-1-2024-01-16">
<h2>streamlink 6.5.1 (2024-01-16)<a class="headerlink" href="#streamlink-6-5-1-2024-01-16" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: file output path log message on py38/py39 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5728">#5728</a>)</p></li>
<li><p>Improved: warning message when using quoted player paths (in config files) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5757">#5757</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>artetv: updated API response validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5774">#5774</a>)</p></li>
<li><p>atresplayer: updated API response validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5742">#5742</a>)</p></li>
<li><p>bigo: reimplemented plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5754">#5754</a>)</p></li>
<li><p>bilibili: fixed stream resolving issues on channels with custom layouts (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5771">#5771</a>)</p></li>
<li><p>huya: added stream CDN availability check (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5745">#5745</a>)</p></li>
<li><p>twitch: disabled Chromium headless mode on client-integrity token acquirement (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5758">#5758</a>)</p></li>
<li><p>vidio: fixed missing API request cookies (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5762">#5762</a>)</p></li>
<li><p>zattoo: fixed audio/video sync issues (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5739">#5739</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.5.0...6.5.1">Full changelog</a></p>
</section>
<section id="streamlink-6-5-0-2023-12-16">
<h2>streamlink 6.5.0 (2023-12-16)<a class="headerlink" href="#streamlink-6-5-0-2023-12-16" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">UserWarning</span></code> being emitted by recent <code class="docutils literal notranslate"><span class="pre">pycountry</span></code> releases when parsing certain language codes (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5722">#5722</a>)</p></li>
<li><p>Fixed: trace logging setup in <code class="docutils literal notranslate"><span class="pre">WebsocketClient</span></code> implementation (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5705">#5705</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>btv: switched to HLS multivariant playlists (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5698">#5698</a>)</p></li>
<li><p>gulli: rewritten plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5725">#5725</a>)</p></li>
<li><p>twitch: removed/disabled <code class="docutils literal notranslate"><span class="pre">--twitch-disable-reruns</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5704">#5704</a>)</p></li>
<li><p>twitch: enabled <code class="docutils literal notranslate"><span class="pre">check_streams</span></code> HLS option, to ensure early stream availability without querying the delayed Twitch API (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5708">#5708</a>)</p></li>
<li><p>twitch: removed unnecessary Twitch API error messages for offline channels (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5709">#5709</a>)</p></li>
<li><p>wasd: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5711">#5711</a>)</p></li>
</ul>
</li>
<li><p>Build: added support for <code class="docutils literal notranslate"><span class="pre">versioningit</span> <span class="pre">>=3.0.0</span></code>, with backward compatibility (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5721">#5721</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.4.2...6.5.0">Full changelog</a></p>
</section>
<section id="streamlink-6-4-2-2023-11-28">
<h2>streamlink 6.4.2 (2023-11-28)<a class="headerlink" href="#streamlink-6-4-2-2023-11-28" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: HLS segment maps being written to the output multiple times (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5689">#5689</a>)</p></li>
<li><p>Fixed plugins:</p>
<ul>
<li><p>bilibili: rewritten plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5693">#5693</a>)</p></li>
<li><p>piczel: updated HLS URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5690">#5690</a>)</p></li>
<li><p>ssh101: fixed stream URL retrieval (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5686">#5686</a>)</p></li>
</ul>
</li>
<li><p>Docs: added missing <code class="docutils literal notranslate"><span class="pre">Cache</span></code> API docs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5688">#5688</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.4.1...6.4.2">Full changelog</a></p>
</section>
<section id="streamlink-6-4-1-2023-11-22">
<h2>streamlink 6.4.1 (2023-11-22)<a class="headerlink" href="#streamlink-6-4-1-2023-11-22" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: libxml2 2.12.0 compatibility (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5682">#5682</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.4.0...6.4.1">Full changelog</a></p>
</section>
<section id="streamlink-6-4-0-2023-11-21">
<h2>streamlink 6.4.0 (2023-11-21)<a class="headerlink" href="#streamlink-6-4-0-2023-11-21" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: missing support for dynamic DASH manifests with <code class="docutils literal notranslate"><span class="pre">SegmentList</span></code>s (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5654">#5654</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5657">#5657</a>)</p></li>
<li><p>Added: warning log message when skipping DASH segments between manifest reloads (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5659">#5659</a>)</p></li>
<li><p>Added plugins: nasaplus (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5664">#5664</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>raiplay: added VOD support with authentication <code class="docutils literal notranslate"><span class="pre">--raiplay-email</span></code> / <code class="docutils literal notranslate"><span class="pre">--raiplay-password</span></code> / <code class="docutils literal notranslate"><span class="pre">--raiplay-purge-credentials</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5662">#5662</a>)</p></li>
<li><p>telemadrid: fixed XPath query (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5653">#5653</a>)</p></li>
<li><p>tvp: fixed tvp.info (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5645">#5645</a>)</p></li>
<li><p>youtube: fixed video ID retrieval (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5673">#5673</a>)</p></li>
</ul>
</li>
<li><p>Docs: added validation schema API docs and API guide (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5652">#5652</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5655">#5655</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.3.1...6.4.0">Full changelog</a></p>
</section>
<section id="streamlink-6-3-1-2023-10-26">
<h2>streamlink 6.3.1 (2023-10-26)<a class="headerlink" href="#streamlink-6-3-1-2023-10-26" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed plugins:</p>
<ul>
<li><p>welt: rewritten plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5637">#5637</a>)</p></li>
</ul>
</li>
<li><p>Build: fixed tests when running from sdist (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5636">#5636</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.3.0...6.3.1">Full changelog</a></p>
</section>
<section id="streamlink-6-3-0-2023-10-25">
<h2>streamlink 6.3.0 (2023-10-25)<a class="headerlink" href="#streamlink-6-3-0-2023-10-25" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: warning log message when skipping HLS segments between playlist reloads (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5607">#5607</a>)</p></li>
<li><p>Refactored: internals of segmented stream implementations (base classes, HLS, DASH)</p>
<ul>
<li><p>Added: base <code class="docutils literal notranslate"><span class="pre">Segment</span></code> dataclass and made segmented streams inherit from it (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5594">#5594</a>)</p></li>
<li><p>Moved: modules into sub-packages (import paths of public APIs remain the same) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5593">#5593</a>)</p></li>
<li><p>Renamed: various non-public HLS class methods/attributes and functions (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5526">#5526</a>)</p></li>
<li><p>Removed: <code class="docutils literal notranslate"><span class="pre">Sequence</span></code> segment wrapper from HLS implementation (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5526">#5526</a>)</p></li>
</ul>
</li>
<li><p>Fixed: DASH manifest not respecting the <code class="docutils literal notranslate"><span class="pre">minBufferTime</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5610">#5610</a>)</p></li>
<li><p>Fixed: URL matchers of HLS/DASH protocol plugins (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5616">#5616</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5617">#5617</a>)</p></li>
<li><p>Fixed: bandwidth parsing issue in HLS multivariant playlists (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5619">#5619</a>)</p></li>
<li><p>Fixed plugins:</p>
<ul>
<li><p>dlive: fixed live streams and fixed VODs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5622">#5622</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5623">#5623</a>)</p></li>
<li><p>goodgame: rewritten plugin using goodgame API v4 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5586">#5586</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5597">#5597</a>)</p></li>
<li><p>mitele: updated gbx API calls from v2 to v3 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5624">#5624</a>)</p></li>
<li><p>twitch: fixed error handling of geo-restricted or inaccessible streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5591">#5591</a>)</p></li>
</ul>
</li>
<li><p>Removed plugins:</p>
<ul>
<li><p>ntv: static stream URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5604">#5604</a>)</p></li>
<li><p>vlive: offline (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5599">#5599</a>)</p></li>
</ul>
</li>
<li><p>Build: dropped <code class="docutils literal notranslate"><span class="pre">versioningit</span></code> build-requirement when building from sdist tarball (version string has always been built-in while <code class="docutils literal notranslate"><span class="pre">versioningit</span></code> performed a no-op) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5632">#5632</a>)</p></li>
<li><p>Packaging: added missing shell completions build-script to sdist (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5625">#5625</a>)</p></li>
<li><p>Docs: clarified section about building from source (sdist/git vs. GitHub tarballs) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5633">#5633</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.2.1...6.3.0">Full changelog</a></p>
</section>
<section id="streamlink-6-2-1-2023-10-03">
<h2>streamlink 6.2.1 (2023-10-03)<a class="headerlink" href="#streamlink-6-2-1-2023-10-03" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Added: official support for Python 3.12 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5576">#5576</a>)</p></li>
<li><p>Fixed plugins: goodgame (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5557">#5557</a>), nos (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5565">#5565</a>), pandalive (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5569">#5569</a>), wwenetwork (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5559">#5559</a>)</p></li>
<li><p>Build: added custom setuptools build-backend override which fixes issues with building Windows-specific wheels (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5558">#5558</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.2.0...6.2.1">Full changelog</a></p>
</section>
<section id="streamlink-6-2-0-2023-09-14">
<h2>streamlink 6.2.0 (2023-09-14)<a class="headerlink" href="#streamlink-6-2-0-2023-09-14" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--player-env</span></code> CLI argument (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5535">#5535</a>)</p></li>
<li><p>Added: OpenSSL version to debug log output (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5506">#5506</a>)</p></li>
<li><p>Updated: segmented stream internals and typing (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5504">#5504</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5507">#5507</a>)</p></li>
<li><p>Updated: internal HLS tag parsing setup and parser state (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5513">#5513</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5521">#5521</a>)</p></li>
<li><p>Fixed: HLS streams not ending on playlist reload with endlist tag and no new segments (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5538">#5538</a>)</p></li>
<li><p>Fixed: missing file encoding when writing a log file (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5532">#5532</a>)</p></li>
<li><p>Added plugins: piaulizaportal (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5508">#5508</a>)</p></li>
<li><p>Fixed plugins: hiplayer (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5534">#5534</a>), nicolive (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5529">#5529</a>), pluto (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5551">#5551</a>)</p></li>
<li><p>Docs: added list of supported metadata variables for each plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5517">#5517</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5519">#5519</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.1.0...6.2.0">Full changelog</a></p>
</section>
<section id="streamlink-6-1-0-2023-08-16">
<h2>streamlink 6.1.0 (2023-08-16)<a class="headerlink" href="#streamlink-6-1-0-2023-08-16" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--hls-segment-queue-threshold</span></code> for being able to configure when to stop HLS streams early on missing segments (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5478">#5478</a>)</p></li>
<li><p>Fixed: config file parsing issues and made parsing argument values more strict (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5484">#5484</a>)</p></li>
<li><p>Fixed: race condition when reading and validating the FFmpeg version string (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5480">#5480</a>)</p></li>
<li><p>Fixed plugins: atresplayer (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5477">#5477</a>)</p></li>
<li><p>Docs: added code examples for the <a class="reference external" href="https://streamlink.github.io/migrations.html#streamlink-g-s-et-plugin-option">removal of <code class="docutils literal notranslate"><span class="pre">Streamlink.{g,s}et_plugin_option</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5497">#5497</a>)</p></li>
<li><p>Build: fixed entry-points config issues with setuptools <code class="docutils literal notranslate"><span class="pre">68.1.0</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5500">#5500</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.0.1...6.1.0">Full changelog</a></p>
</section>
<section id="streamlink-6-0-1-2023-08-02">
<h2>streamlink 6.0.1 (2023-08-02)<a class="headerlink" href="#streamlink-6-0-1-2023-08-02" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Added: missing <code class="docutils literal notranslate"><span class="pre">options</span></code> argument to <code class="docutils literal notranslate"><span class="pre">Streamlink.streams()</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5469">#5469</a>)</p></li>
<li><p>Fixed: migration docs and the <a class="reference external" href="https://streamlink.github.io/changelog.html#streamlink-6-0-0-2023-07-20"><code class="docutils literal notranslate"><span class="pre">6.0.0</span></code> changelog</a> of the <a class="reference external" href="https://streamlink.github.io/migrations.html#streamlink-g-s-et-plugin-option"><code class="docutils literal notranslate"><span class="pre">Streamlink.{g,s}et_plugin_option()</span></code> removal</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5471">#5471</a>)</p></li>
<li><p>Fixed plugins: huya (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5467">#5467</a>)</p></li>
<li><p>Docs: updated build-dependencies and the furo theme (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5464">#5464</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5465">#5465</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/6.0.0...6.0.1">Full changelog</a></p>
</section>
<section id="streamlink-6-0-0-2023-07-20">
<h2>streamlink 6.0.0 (2023-07-20)<a class="headerlink" href="#streamlink-6-0-0-2023-07-20" title="Link to this heading">¶</a></h2>
<p>Breaking changes:</p>
<ul class="simple">
<li><p>BREAKING: dropped support for Python 3.7 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5302">#5302</a>)</p></li>
<li><p>BREAKING: <a class="reference external" href="https://streamlink.github.io/migrations.html#player-path-only-player-cli-argument">turned <code class="docutils literal notranslate"><span class="pre">--player</span></code> CLI argument into a player-path-only argument</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/issues/5305">#5305</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5310">#5310</a>)<br />
Its value won’t be interpreted as a command line string anymore, so paths with whitespace don’t require additional quotation. Custom player arguments now always need to be set via <code class="docutils literal notranslate"><span class="pre">--player-args</span></code>.</p></li>
<li><p>BREAKING: <a class="reference external" href="https://streamlink.github.io/migrations.html#filename-variable-in-player-args">removed deprecated <code class="docutils literal notranslate"><span class="pre">{filename}</span></code> variable from <code class="docutils literal notranslate"><span class="pre">--player-args</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5310">#5310</a>)</p></li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#plugin-can-handle-url-and-plugin-priority">removed support for the deprecated <code class="docutils literal notranslate"><span class="pre">Plugin.can_handle_url()</span></code> / <code class="docutils literal notranslate"><span class="pre">Plugin.priority()</span></code> classmethods</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5403">#5403</a>)</p></li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#plugin-init-self-url-compatibility-wrapper">removed deprecated compatibility wrapper for the <code class="docutils literal notranslate"><span class="pre">Plugin</span></code> constructor</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5402">#5402</a>)</p></li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#streamlink-g-s-et-plugin-option">removed <code class="docutils literal notranslate"><span class="pre">Streamlink.{g,s}et_plugin_option()</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5033">#5033</a>)</p></li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#global-plugin-arguments">removed deprecated global plugin arguments</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5033">#5033</a>)</p></li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#plugin-api-validate-text">removed deprecated <code class="docutils literal notranslate"><span class="pre">streamlink.plugin.api.validate.text</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5404">#5404</a>)</p></li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#httpstream-and-hlsstream-signature-changes">fixed/changed signatures of <code class="docutils literal notranslate"><span class="pre">HTTPStream</span></code>, <code class="docutils literal notranslate"><span class="pre">HLSStream</span></code> and <code class="docutils literal notranslate"><span class="pre">HLSStream.parse_variant_playlist()</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5429">#5429</a>)</p></li>
<li><p>BREAKING/packaging: new signing key <a class="reference external" href="https://keyserver.ubuntu.com/pks/lookup?search=44448A298D5C3618&amp;fingerprint=on&amp;op=index"><code class="docutils literal notranslate"><span class="pre">44448A298D5C3618</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5449">#5449</a>)</p></li>
</ul>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: experimental <code class="docutils literal notranslate"><span class="pre">streamlink.webbrowser</span></code> API for extracting data from websites using the system’s Chromium-based web browser (<a class="reference external" href="https://github.com/streamlink/streamlink/issues/5380">#5380</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5381">#5381</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5386">#5386</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5388">#5388</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5410">#5410</a>)<br />
See the <a class="reference external" href="https://streamlink.github.io/cli.html#web-browser-options"><code class="docutils literal notranslate"><span class="pre">--webbrowser</span></code>, <code class="docutils literal notranslate"><span class="pre">--webbrowser-executable</span></code> and related CLI arguments</a> for more</p></li>
<li><p>Added: client-integrity token support to Twitch plugin using the <code class="docutils literal notranslate"><span class="pre">streamlink.webbrowser</span></code> API (currently only used as a fallback when acquiring the access token fails) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5414">#5414</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">{playertitleargs}</span></code> variable to <code class="docutils literal notranslate"><span class="pre">--player-args</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5310">#5310</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">with_{video,audio}_only</span></code> parameters to <code class="docutils literal notranslate"><span class="pre">DASHStream.parse_manifest()</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5340">#5340</a>)</p></li>
<li><p>Changed: HLS streams to stop early on missing <code class="docutils literal notranslate"><span class="pre">EXT-X-ENDLIST</span></code> tag when polling the playlist doesn’t yield new segments for twice its targetduration value (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5330">#5330</a>)</p></li>
<li><p>Fixed: regex of optional protocol plugin parameters (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5367">#5367</a>)</p></li>
<li><p>Fixed plugins: lrt (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5444">#5444</a>), mediavitrina (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5376">#5376</a>), mitele (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5436">#5436</a>), NRK (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5408">#5408</a>), pluzz (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5369">#5369</a>), rtvs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5443">#5443</a>), showroom (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5390">#5390</a>), turkuvaz (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5374">#5374</a>), vimeo (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5335">#5335</a>), youtube (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5351">#5351</a>)</p></li>
<li><p>Docs: added migrations page for further guidance on resolving breaking changes (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5433">#5433</a>)</p></li>
<li><p>Docs: split up, updated and improved API docs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5398">#5398</a>)</p></li>
<li><p>Build: moved project metadata to pyproject.toml (PEP621) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5438">#5438</a>)</p></li>
<li><p>Dependencies: added <code class="docutils literal notranslate"><span class="pre">trio</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5386">#5386</a>), <code class="docutils literal notranslate"><span class="pre">trio-websocket</span></code> and <code class="docutils literal notranslate"><span class="pre">typing-extensions</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5388">#5388</a>), and removed <code class="docutils literal notranslate"><span class="pre">importlib_metadata</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5302">#5302</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/5.5.1...6.0.0">Full changelog</a></p>
</section>
<section id="streamlink-5-5-1-2023-05-08">
<h2>streamlink 5.5.1 (2023-05-08)<a class="headerlink" href="#streamlink-5-5-1-2023-05-08" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: shifting time offset when reloading HLS playlists (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5321">#5321</a>)</p></li>
<li><p>Fixed: import of <code class="docutils literal notranslate"><span class="pre">create_urllib3_context</span></code> on <code class="docutils literal notranslate"><span class="pre">urllib3</span> <span class="pre"><2.0.0</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5333">#5333</a>)</p></li>
<li><p>Fixed: Vimeo plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5331">#5331</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/5.5.0...5.5.1">Full changelog</a></p>
</section>
<section id="streamlink-5-5-0-2023-05-05">
<h2>streamlink 5.5.0 (2023-05-05)<a class="headerlink" href="#streamlink-5-5-0-2023-05-05" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--no-config</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5314">#5314</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--player-external-http-interface</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5295">#5295</a>)</p></li>
<li><p>Fixed: M3U8 attribute parsing issue (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5307">#5307</a>)</p></li>
<li><p>Fixed: various minor plugin issues (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5291">#5291</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5299">#5299</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5306">#5306</a>)</p></li>
<li><p>Build: bumped urllib3 to <code class="docutils literal notranslate"><span class="pre">>=1.26.0,<3</span></code> and fixed compatibility issues with <code class="docutils literal notranslate"><span class="pre">urllib3</span> <span class="pre">>=2.0.0</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5326">#5326</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5325">#5325</a>)</p></li>
<li><p>Docs: bumped furo theme to <code class="docutils literal notranslate"><span class="pre">2023.03.27</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5301">#5301</a>)</p></li>
<li><p>Docs: bumped build dependencies <code class="docutils literal notranslate"><span class="pre">sphinx</span> <span class="pre">>=5.0.0,<7</span></code>, <code class="docutils literal notranslate"><span class="pre">myst-parser</span> <span class="pre">>=1.0.0,<2</span></code> and <code class="docutils literal notranslate"><span class="pre">sphinx-design</span> <span class="pre">>=0.4.1,<1</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5301">#5301</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/5.4.0...5.5.0">Full changelog</a></p>
</section>
<section id="streamlink-5-4-0-2023-04-12">
<h2>streamlink 5.4.0 (2023-04-12)<a class="headerlink" href="#streamlink-5-4-0-2023-04-12" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--progress</span></code> CLI argument and <a class="reference external" href="https://streamlink.github.io/deprecations.html#deprecation-of-force-progress">deprecated <code class="docutils literal notranslate"><span class="pre">--force-progress</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5268">#5268</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--dash-manifest-reload-attempts</span></code> and respective session option (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5208">#5208</a>)</p></li>
<li><p>Improved: DASH segment availability/download logging (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5214">#5214</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5235">#5235</a>)</p></li>
<li><p>Refactored: DASH parser + stream implementation (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5221">#5221</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5224">#5224</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5225">#5225</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5244">#5244</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5248">#5248</a>)</p></li>
<li><p>Fixed: DASH segment template numbers and availability times (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5213">#5213</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5217">#5217</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5233">#5233</a>)</p></li>
<li><p>Fixed: DASH manifest mediaPresentationDuration and period duration (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5226">#5226</a>)</p></li>
<li><p>Fixed: DASH manifest suggestedPresentationDelay (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5215">#5215</a>)</p></li>
<li><p>Fixed: various DASH manifest parsing bugs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5247">#5247</a>)</p></li>
<li><p>Fixed: DASH timeline IDs not being unique (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5199">#5199</a>)</p></li>
<li><p>Fixed: DASH substreams not having synced timelines (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5262">#5262</a>)</p></li>
<li><p>Fixed: queued DASH segments being downloaded after closing the stream (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5236">#5236</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5237">#5237</a>)</p></li>
<li><p>Fixed: incorrect min/max values of certain numeric CLI arguments (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5239">#5239</a>)</p></li>
<li><p>Fixed: all naive datetime objects and made them timezone-aware (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5210">#5210</a>)</p></li>
<li><p>Fixed: TV5monde plugin with new implementation (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5206">#5206</a>)</p></li>
<li><p>Fixed: Steam plugin missing CDN auth data in stream URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5222">#5222</a>)</p></li>
<li><p>Fixed: Vimeo plugin’s playerConfig regex (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5227">#5227</a>)</p></li>
<li><p>Fixed: VKplay plugin’s validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5251">#5251</a>)</p></li>
<li><p>Fixed: Twitcasting plugin with new implementation (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5255">#5255</a>)</p></li>
<li><p>Tests: fixed setuptools/pkg_resources DeprecationWarnings (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5167">#5167</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5230">#5230</a>)</p></li>
<li><p>Tests: fixed ResourceWarnings due to stale file handles (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5242">#5242</a>)</p></li>
<li><p>Added plugins: indihometv (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5266">#5266</a>), telemadrid (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5212">#5212</a>)</p></li>
<li><p>Removed plugins: nbcnews (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5279">#5279</a>), useetv (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5266">#5266</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/5.3.1...5.4.0">Full changelog</a></p>
</section>
<section id="streamlink-5-3-1-2023-02-25">
<h2>streamlink 5.3.1 (2023-02-25)<a class="headerlink" href="#streamlink-5-3-1-2023-02-25" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">http-trust-env</span></code> session option name (<code class="docutils literal notranslate"><span class="pre">--http-ignore-env</span></code> CLI parameter) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5193">#5193</a>)</p></li>
<li><p>Fixed: missing byterange attribute of initialization segments in DASH streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5189">#5189</a>)</p></li>
<li><p>Fixed: broken BaseURL context in DASH streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5194">#5194</a>)</p></li>
<li><p>Fixed: detection of certain encrypted DASH streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5196">#5196</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/5.3.0...5.3.1">Full changelog</a></p>
</section>
<section id="streamlink-5-3-0-2023-02-18">
<h2>streamlink 5.3.0 (2023-02-18)<a class="headerlink" href="#streamlink-5-3-0-2023-02-18" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Project meta: dropped Open Collective sponsoring platform and updated the project’s README, as well as the docs’ donation/support page (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5143">#5143</a>)</p></li>
<li><p>Deprecated: global plugin arguments (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5140">#5140</a>)</p></li>
<li><p>Fixed: muxed streams sometimes missing data at the end (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5162">#5162</a>)</p></li>
<li><p>Fixed: named pipes sometimes not being cleaned up properly (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5162">#5162</a>)</p></li>
<li><p>Fixed: new YouTube channel URLs not being matched (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5137">#5137</a>)</p></li>
<li><p>Fixed: KeyError when accessing certain YouTube URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5139">#5139</a>)</p></li>
<li><p>Fixed: M3U8 attribute parsing (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5125">#5125</a>)</p></li>
<li><p>Fixed: NimoTV streams stopping after a few seconds (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5147">#5147</a>)</p></li>
<li><p>Fixed: delimiter of <code class="docutils literal notranslate"><span class="pre">http-query-params</span></code> session option string setter (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5176">#5176</a>)</p></li>
<li><p>Fixed: sdist/bdist missing some files (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5119">#5119</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5141">#5141</a>)</p></li>
<li><p>Docs: fixed <code class="docutils literal notranslate"><span class="pre">Streamlink.set_option()</span></code> docstring (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5176">#5176</a>)</p></li>
<li><p>Docs: improved CLI tutorial (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5157">#5157</a>)</p></li>
<li><p>Docs: improved install page (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5178">#5178</a>)</p></li>
<li><p>Removed plugins: funimationnow (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5128">#5128</a>), schoolism (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5127">#5127</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/5.2.1...5.3.0">Full changelog</a></p>
</section>
<section id="streamlink-5-2-1-2023-01-23">
<h2>streamlink 5.2.1 (2023-01-23)<a class="headerlink" href="#streamlink-5-2-1-2023-01-23" title="Link to this heading">¶</a></h2>
<p>No code changes.<br />
Please see the changelog of the <a class="reference external" href="https://streamlink.github.io/changelog.html#streamlink-5-2-0-2023-01-23"><code class="docutils literal notranslate"><span class="pre">5.2.0</span></code></a> release.</p>
<ul class="simple">
<li><p>Reverted: PyPI deploy script changes (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5116">#5116</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/5.2.0...5.2.1">Full changelog</a></p>
</section>
<section id="streamlink-5-2-0-2023-01-23">
<h2>streamlink 5.2.0 (2023-01-23)<a class="headerlink" href="#streamlink-5-2-0-2023-01-23" title="Link to this heading">¶</a></h2>
<p>Release highlights:</p>
<ul class="simple">
<li><p>Added: new stream read/output loop, to be able to detect player process termination while stream output is paused (ad filtering, etc.) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5024">#5024</a>)</p></li>
<li><p>Added: support for named plugin matchers (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5103">#5103</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/5107">#5107</a>)</p></li>
<li><p>Added: Python warnings capturing to streamlink logger and added <code class="docutils literal notranslate"><span class="pre">StreamlinkWarning</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5072">#5072</a>)</p></li>
<li><p>Changed: deprecation log messages to warnings, and added missing warnings for <a class="reference external" href="https://streamlink.github.io/deprecations.html">previously deprecated things</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5072">#5072</a>)</p></li>
<li><p>Deprecated: usage of <code class="docutils literal notranslate"><span class="pre">validate.text</span></code> in favor of <code class="docutils literal notranslate"><span class="pre">str</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5090">#5090</a>)</p></li>
<li><p>Improved: <code class="docutils literal notranslate"><span class="pre">Streamlink</span></code> session option getters/setters (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5076">#5076</a>)</p></li>
<li><p>Fixed: incorrect inheritance of <code class="docutils literal notranslate"><span class="pre">NoPluginError</span></code> and removed unneeded <code class="docutils literal notranslate"><span class="pre">url</span></code> parameter from <code class="docutils literal notranslate"><span class="pre">NoStreamsError</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5088">#5088</a>)</p></li>
<li><p>Fixed: error handling in Twitch access token acquirement (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5011">#5011</a>)</p></li>
<li><p>Fixed: dogan plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5053">#5053</a>)</p></li>
<li><p>Fixed: ceskatelevize plugin, added sport/sportplus/decko (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5063">#5063</a>)</p></li>
<li><p>Added plugins: mixcloud (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5096">#5096</a>), vkplay (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5054">#5054</a>)</p></li>
<li><p>Removed plugins: orf_tvthek (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5104">#5104</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/5.1.2...5.2.0">Full changelog</a></p>
</section>
<section id="streamlink-5-1-2-2022-12-03">
<h2>streamlink 5.1.2 (2022-12-03)<a class="headerlink" href="#streamlink-5-1-2-2022-12-03" title="Link to this heading">¶</a></h2>
<p>Patch release:</p>
<ul class="simple">
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">ValueError</span></code> being raised while muxing streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/4998">#4998</a>)</p></li>
<li><p>Fixed: ad filtering bug in Twitch plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5007">#5007</a>)</p></li>
<li><p>Fixed: SVTPlay plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/4994">#4994</a>)</p></li>
<li><p>Fixed: TVP plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/4997">#4997</a>)</p></li>
<li><p>Docs: updated Linux AppImage and Windows builds install sections (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/4999">#4999</a>)</p></li>
<li><p>Docs: fixed man page links in HTML docs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/4995">#4995</a>)</p></li>