-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathchangelog.html
More file actions
2411 lines (2376 loc) · 278 KB
/
changelog.html
File metadata and controls
2411 lines (2376 loc) · 278 KB
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">
<link rel="prefetch" href="_static/icon.svg" as="image">
<link rel="prefetch" href="_static/icon.svg" as="image">
<link rel="prefetch" href="_static/icon.svg" as="image">
<!-- Generated with Sphinx 8.2.3 and Furo 2025.12.19 -->
<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 8.3.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 8.3.0 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=d111a655" />
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=7bdb33bb" />
<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=8dab3a3b" />
<link rel="stylesheet" type="text/css" href="_static/styles/custom.css?v=ecb84e10" />
<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: #f2f2f2;
--color-code-foreground: #1e1e1e;
}
@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" aria-label="Toggle site navigation sidebar">
<input type="checkbox" class="sidebar-toggle" name="__toc" id="__toc" aria-label="Toggle table of contents sidebar">
<label class="overlay sidebar-overlay" for="__navigation"></label>
<label class="overlay toc-overlay" for="__toc"></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">
<span class="icon"><svg><use href="#svg-menu"></use></svg></span>
</label>
</div>
<div class="header-center">
<a href="index.html"><div class="brand">Streamlink 8.3.0 documentation</div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
<button class="theme-toggle" aria-label="Toggle Light / Dark / Auto color theme">
<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">
<span class="icon"><svg><use href="#svg-toc"></use></svg></span>
</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">8.3.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 aria-label="Toggle navigation of Command-Line Interface" class="toctree-checkbox" id="toctree-checkbox-1" name="toctree-checkbox-1" role="switch" type="checkbox"/><label for="toctree-checkbox-1"><span class="icon"><svg><use href="#svg-arrow-right"></use></svg></span></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 aria-label="Toggle navigation of Plugin specific usage" class="toctree-checkbox" id="toctree-checkbox-2" name="toctree-checkbox-2" role="switch" type="checkbox"/><label for="toctree-checkbox-2"><span class="icon"><svg><use href="#svg-arrow-right"></use></svg></span></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 aria-label="Toggle navigation of API Guide" class="toctree-checkbox" id="toctree-checkbox-3" name="toctree-checkbox-3" role="switch" type="checkbox"/><label for="toctree-checkbox-3"><span class="icon"><svg><use href="#svg-arrow-right"></use></svg></span></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 aria-label="Toggle navigation of API Reference" class="toctree-checkbox" id="toctree-checkbox-4" name="toctree-checkbox-4" role="switch" type="checkbox"/><label for="toctree-checkbox-4"><span class="icon"><svg><use href="#svg-arrow-right"></use></svg></span></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" rel="edit" 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" aria-label="Toggle Light / Dark / Auto color theme">
<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">
<span class="icon"><svg><use href="#svg-toc"></use></svg></span>
</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-8-3-0-2026-04-10">
<h2>streamlink 8.3.0 (2026-04-10)<a class="headerlink" href="#streamlink-8-3-0-2026-04-10" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Added: support for choosing the <code class="docutils literal notranslate"><span class="pre">--interface</span></code> by name on non-Windows systems, with optional prefixes, similar to curl (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6862">#6862</a>)</p></li>
<li><p>Added: support for also checking stream segments in <code class="docutils literal notranslate"><span class="pre">HLSStream.parse_variant_playlist()</span></code> by setting <code class="docutils literal notranslate"><span class="pre">check_streams="segments"</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6878">#6878</a>)</p></li>
<li><p>Fixed: stdout/stderr streams in <code class="docutils literal notranslate"><span class="pre">ProcessOutput</span></code> not being fully line-buffered (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6868">#6868</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>cdnbg: rewritten and fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6890">#6890</a>)</p></li>
<li><p>nicolive: added websocket reconnect attempts on HLS decryption key retrieval failure (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6871">#6871</a>)</p></li>
<li><p>soop: migrated to sooplive.com (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6876">#6876</a>)</p></li>
<li><p>telefe: rewritten and fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6891">#6891</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/8.2.1...8.3.0">Full changelog</a></p>
</section>
<section id="streamlink-8-2-1-2026-03-05">
<h2>streamlink 8.2.1 (2026-03-05)<a class="headerlink" href="#streamlink-8-2-1-2026-03-05" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Changed: HLS stream names using the “pixels” format to include framerate data, if available (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6848">#6848</a>)</p></li>
<li><p>Deprecated: imports of re-exported attributes from <code class="docutils literal notranslate"><span class="pre">streamlink.stream</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6821">#6821</a>)</p></li>
<li><p>Fixed: plugin-related typing issues and missing typing annotations (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6822">#6822</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>ceskatelevize: fixed sports streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6826">#6826</a>)</p></li>
<li><p>nrk: updated to tv-player v9 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6841">#6841</a>)</p></li>
<li><p>pluto: updated to v2 API (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6851">#6851</a>)</p></li>
<li><p>twitch: switched to Usher v2 API endpoints (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6840">#6840</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6847">#6847</a>)</p></li>
<li><p>youtube: updated API clientVersion (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6853">#6853</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/8.2.0...8.2.1">Full changelog</a></p>
</section>
<section id="streamlink-8-2-0-2026-02-09">
<h2>streamlink 8.2.0 (2026-02-09)<a class="headerlink" href="#streamlink-8-2-0-2026-02-09" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--http-cookies-file</span></code> CLI argument and <code class="docutils literal notranslate"><span class="pre">http-cookies-files</span></code> session option (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6796">#6796</a>)</p></li>
<li><p>Changed: <code class="docutils literal notranslate"><span class="pre">PluginError</span></code> to also be raised when setting a plugin’s <code class="docutils literal notranslate"><span class="pre">url</span></code> attribute to a value that doesn’t match any of its URL matchers, not just when initializing the plugin class (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6810">#6810</a>)</p></li>
<li><p>Deprecated: imports of re-exported module attributes from <code class="docutils literal notranslate"><span class="pre">streamlink.utils</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6819">#6819</a>)</p></li>
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">LogRecord</span></code> missing the function name and stack info (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6788">#6788</a>)</p></li>
<li><p>Fixed: custom network interface being reset when disabling Diffie-Hellman key exchange (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6795">#6795</a>)</p></li>
<li><p>Fixed: broken logic when unsetting ipv4/ipv6 session options (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6795">#6795</a>)</p></li>
<li><p>Fixed: edge case when trying to detect the text encoding of certain kinds of HTML responses (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6802">#6802</a>)</p></li>
<li><p>Fixed: missing representation not being handled when polling dynamic DASH manifests (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6807">#6807</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>dailymotion: disabled TLS session tickets, fixing 403 HLS playlist responses on Python builds with an older version of OpenSSL (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6816">#6816</a>)</p></li>
</ul>
</li>
<li><p>Docs: bumped dependencies with support for Sphinx 9 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6783">#6783</a>)</p></li>
<li><p>Docs: added rules for AI-assisted contributions (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6782">#6782</a>)</p></li>
<li><p>Build: added <code class="docutils literal notranslate"><span class="pre">typing-extensions</span></code> as a runtime dependency on Python 3.10, as it was already a transitive runtime dependency (via <code class="docutils literal notranslate"><span class="pre">exceptiongroup</span></code>) that was used as a fallback import since 8.1.0 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6813">#6813</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/8.1.2...8.2.0">Full changelog</a></p>
</section>
<section id="streamlink-8-1-2-2026-01-18">
<h2>streamlink 8.1.2 (2026-01-18)<a class="headerlink" href="#streamlink-8-1-2-2026-01-18" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Fixed: warnings when parsing HLS playlists with private-use language subtags (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6780">#6780</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>youtube: fixed live streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6777">#6777</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/8.1.1...8.1.2">Full changelog</a></p>
</section>
<section id="streamlink-8-1-1-2026-01-17">
<h2>streamlink 8.1.1 (2026-01-17)<a class="headerlink" href="#streamlink-8-1-1-2026-01-17" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">--stream-segmented-queue-deadline</span></code> not being applied correctly to the Streamlink session options (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6758">#6758</a>)</p></li>
<li><p>Changed: <code class="docutils literal notranslate"><span class="pre">--hls-segment-ignore-names</span></code> to not hardcode <code class="docutils literal notranslate"><span class="pre">.ts</span></code> HLS segment file name extensions (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6747">#6747</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>dailymotion: fixed 403 HLS playlist responses (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6773">#6773</a>)</p></li>
<li><p>pluto: fixed url matchers and ad detection (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6767">#6767</a>)</p></li>
<li><p>soop: fixed CDN mapping for <code class="docutils literal notranslate"><span class="pre">ld_cdn</span></code> based regions (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6749">#6749</a>)</p></li>
</ul>
</li>
<li><p>Build: removed unneeded <code class="docutils literal notranslate"><span class="pre">wheel</span></code> dependency from <code class="docutils literal notranslate"><span class="pre">build-system.requires</span></code> and the <code class="docutils literal notranslate"><span class="pre">build</span></code> dependency group (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6754">#6754</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/8.1.0...8.1.1">Full changelog</a></p>
</section>
<section id="streamlink-8-1-0-2025-12-14">
<h2>streamlink 8.1.0 (2025-12-14)<a class="headerlink" href="#streamlink-8-1-0-2025-12-14" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Deprecated: <code class="docutils literal notranslate"><span class="pre">--hls-segment-queue-threshold</span></code> in favor of <code class="docutils literal notranslate"><span class="pre">--stream-segmented-queue-deadline</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6734">#6734</a>)</p></li>
<li><p>Improved: debug logging of segmented streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6730">#6730</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>twitch: fixed clips GQL API query (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6744">#6744</a>)</p></li>
</ul>
</li>
<li><p>Tests: removed accidental <code class="docutils literal notranslate"><span class="pre">pytest_cov</span></code> dependency when running tests (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6727">#6727</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/8.0.0...8.1.0">Full changelog</a></p>
</section>
<section id="streamlink-8-0-0-2025-11-11">
<h2>streamlink 8.0.0 (2025-11-11)<a class="headerlink" href="#streamlink-8-0-0-2025-11-11" 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-0596/#lifespan">EOL Python 3.9</a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6674">#6674</a>)</p></li>
<li><p>BREAKING/API: <a class="reference external" href="https://streamlink.github.io/migrations.html#hlsstream-url-master-argument">removed deprecated <code class="docutils literal notranslate"><span class="pre">url_master</span></code> from <code class="docutils literal notranslate"><span class="pre">HLSStream</span></code>/<code class="docutils literal notranslate"><span class="pre">MuxedHLSStream</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6688">#6688</a>)</p></li>
<li><p>BREAKING/dependencies: bumped version requirement of <a class="reference external" href="https://urllib3.readthedocs.io/en/stable/v2-migration-guide.html"><code class="docutils literal notranslate"><span class="pre">urllib3</span></code> to <code class="docutils literal notranslate"><span class="pre">>=2.0.0</span></code></a> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6686">#6686</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--stream-segmented-duration</span></code> in favor of <code class="docutils literal notranslate"><span class="pre">--hls-duration</span></code> (now deprecated), which affects HLS, DASH and other segmented stream types (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6705">#6705</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">duration</span></code> parameter to <code class="docutils literal notranslate"><span class="pre">dash://</span></code> streams (<code class="docutils literal notranslate"><span class="pre">DASHStream</span></code>) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6705">#6705</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--ffmpeg-validation-timeout</span></code> for being able to increase the time for validating the FFmpeg executable (<code class="docutils literal notranslate"><span class="pre">--ffmpeg-ffmpeg</span></code>) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6716">#6716</a>)</p></li>
<li><p>Added: Flatpak player detection for VLC and mpv (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6717">#6717</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6723">#6723</a>)</p></li>
<li><p>Refactored: parts of the internal <code class="docutils literal notranslate"><span class="pre">SegmentedStream</span></code>, <code class="docutils literal notranslate"><span class="pre">HLSStream</span></code> and <code class="docutils literal notranslate"><span class="pre">DASHStream</span></code> implementations (WIP) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6696">#6696</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6707">#6707</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6709">#6709</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>aloula: fixed livestream schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6662">#6662</a>)</p></li>
<li><p>btv: rewritten and fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6691">#6691</a>)</p></li>
<li><p>chzzk: added support for in-progress VODs via live-rewind streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6675">#6675</a>)</p></li>
<li><p>dlive: fixed streams expiring after 5 minutes (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6695">#6695</a>)</p></li>
<li><p>goodgame: updated matches, switched API endpoints (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6714">#6714</a>)</p></li>
<li><p>nhkworld: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6677">#6677</a>)</p></li>
<li><p>rtve: fixed validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6701">#6701</a>)</p></li>
<li><p>twitch: fixed access token acquirement and various persisted GraphQL query IDs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6720">#6720</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6721">#6721</a>)</p></li>
<li><p>twitch: added <code class="docutils literal notranslate"><span class="pre">--twitch-supported-codecs</span></code> for access to higher quality streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5769">#5769</a>)</p></li>
</ul>
</li>
<li><p>Dependencies: dropped optional <code class="docutils literal notranslate"><span class="pre">zstandard</span></code> dependency on Python 3.14 and above (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6683">#6683</a>)</p></li>
<li><p>Tests: bumped version requirement of <code class="docutils literal notranslate"><span class="pre">pytest</span></code> to <code class="docutils literal notranslate"><span class="pre">>=8.4.0</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6612">#6612</a>)</p></li>
<li><p>Docs: refactored docs config and custom Sphinx extensions, added <code class="docutils literal notranslate"><span class="pre">make</span></code> options for disabling various components for offline building (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6668">#6668</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6669">#6669</a>)</p></li>
<li><p>Docs: fixed compatibility with <code class="docutils literal notranslate"><span class="pre">docutils==0.22.2</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6699">#6699</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.6.0...8.0.0">Full changelog</a></p>
</section>
<section id="streamlink-7-6-0-2025-09-08">
<h2>streamlink 7.6.0 (2025-09-08)<a class="headerlink" href="#streamlink-7-6-0-2025-09-08" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Added: official support for Python 3.14 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6617">#6617</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--skip</span></code> for stopping on existing file outputs without user prompts (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6633">#6633</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">CDPClientSession.{apply,retrieve}_cookies()</span></code> for copying cookies between Streamlink’s HTTP session and the web browser (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6650">#6650</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>chzzk: added support for live streams with a wider content availability window (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6652">#6652</a>)</p></li>
<li><p>indihometv: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6615">#6615</a>)</p></li>
<li><p>kick: added <code class="docutils literal notranslate"><span class="pre">--kick-low-latency</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6605">#6605</a>)</p></li>
<li><p>lrt: fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6608">#6608</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6637">#6637</a>)</p></li>
<li><p>mediaklikk: fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6629">#6629</a>)</p></li>
<li><p>vkvideo: renamed to vkvideolive, added VOD support (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6640">#6640</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6642">#6642</a>)</p></li>
</ul>
</li>
<li><p>Docs: fixed compatibility with <code class="docutils literal notranslate"><span class="pre">docutils>=0.22</span></code> (transitive dependency) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6625">#6625</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.5.0...7.6.0">Full changelog</a></p>
</section>
<section id="streamlink-7-5-0-2025-07-08">
<h2>streamlink 7.5.0 (2025-07-08)<a class="headerlink" href="#streamlink-7-5-0-2025-07-08" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--no-plugin-sideloading</span></code> for disabling plugin sideloading from the default location (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6602">#6602</a>)</p></li>
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--no-plugin-cache</span></code> for disabling cache file I/O of the plugin key-value store (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6602">#6602</a>)</p></li>
<li><p>Improved: cache file I/O of the plugin key-value store (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6568">#6568</a>)</p></li>
<li><p>Changed: default log format on the <code class="docutils literal notranslate"><span class="pre">trace</span></code>/<code class="docutils literal notranslate"><span class="pre">all</span></code> log level, with included thread name (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6557">#6557</a>)</p></li>
<li><p>Fixed: missing thread names for various segmented and muxed streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6556">#6556</a>)</p></li>
<li><p>Fixed: pipe write error log messages when muxing streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6558">#6558</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>aloula: updated plugin matchers to support new URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6572">#6572</a>)</p></li>
<li><p>goodgame: fixed HLS stream URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6585">#6585</a>)</p></li>
<li><p>mitele: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6586">#6586</a>)</p></li>
<li><p>nowtvtr: restored plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6560">#6560</a>)</p></li>
<li><p>twitcasting: updated plugin to filter out preroll ads (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6601">#6601</a>)</p></li>
<li><p>twitch: changed plugin to always filter out ads, deprecated <code class="docutils literal notranslate"><span class="pre">--twitch-disable-ads</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6579">#6579</a>)</p></li>
<li><p>twitch: forced default User-Agent on access token API request (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6578">#6578</a>)</p></li>
<li><p>twitch: fixed clips validation schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6570">#6570</a>)</p></li>
</ul>
</li>
<li><p>Docs: rearranged CLI arguments that are related to the plugin system (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6602">#6602</a>)</p></li>
<li><p>Build: removed <code class="docutils literal notranslate"><span class="pre">{dev,docs}-requirements.txt</span></code> in favor of PEP 735 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6596">#6596</a>)</p></li>
<li><p>Build: bumped <code class="docutils literal notranslate"><span class="pre">lxml</span></code> requirement to <code class="docutils literal notranslate"><span class="pre">>=4.6.4,<7</span></code> (<code class="docutils literal notranslate"><span class="pre">lxml>=6</span></code> now supports free-threaded mode) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6587">#6587</a>)</p></li>
<li><p>Tests: fixed test failures on Python 3.14.0b3 (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6589">#6589</a>)</p></li>
<li><p>Tests: fixed test failures in free-threaded mode (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6591">#6591</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6595">#6595</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.4.0...7.5.0">Full changelog</a></p>
</section>
<section id="streamlink-7-4-0-2025-06-08">
<h2>streamlink 7.4.0 (2025-06-08)<a class="headerlink" href="#streamlink-7-4-0-2025-06-08" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">encoding</span></code> keyword to all HTTP request methods to override the response content encoding (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6544">#6544</a>)</p></li>
<li><p>Added: debug log message for the available DASH periods (id or index) (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6521">#6521</a>)</p></li>
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">LookupError</span></code> when selecting an invalid DASH period (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6518">#6518</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>blasttv: new plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6547">#6547</a>)</p></li>
<li><p>kick: fixed 403 API responses by solving the JS challenge using the webbrowser API (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6500">#6500</a>)</p></li>
<li><p>nicolive: fixed plugin metadata by forcing UTF-8 encoding (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6544">#6544</a>)</p></li>
<li><p>picarto: fixed validation schema and fixed multi-stream selection (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6512">#6512</a>)</p></li>
<li><p>tvp: rewritten and fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6535">#6535</a>)</p></li>
<li><p>twitcasting: fixed plugin by switching to new websocket+HLS streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6540">#6540</a>)</p></li>
<li><p>vtvgo: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6516">#6516</a>)</p></li>
</ul>
</li>
<li><p>Tests: fixed py314 test failures (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6527">#6527</a>)</p></li>
<li><p>Tests: fixed some HLS tests failing in rare cases (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6536">#6536</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.3.0...7.4.0">Full changelog</a></p>
</section>
<section id="streamlink-7-3-0-2025-04-26">
<h2>streamlink 7.3.0 (2025-04-26)<a class="headerlink" href="#streamlink-7-3-0-2025-04-26" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Changed: download progress to use the console output stream rather than always <code class="docutils literal notranslate"><span class="pre">stderr</span></code>, which previously caused log and progress messages to be interweaved (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6497">#6497</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6496">#6496</a>)</p></li>
<li><p>Changed: download progress output to be a status message line at the bottom of the console output, unless <code class="docutils literal notranslate"><span class="pre">--progress=force</span></code> is set in non-interactive or unsupported environments, in which case less frequent regular progress messages are written (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6497">#6497</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6496">#6496</a>)</p></li>
<li><p>Fixed: potential division by zero error when formatting progress output (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6498">#6498</a>)</p></li>
<li><p>Build: bumped <code class="docutils literal notranslate"><span class="pre">setuptools</span></code> requirement from <code class="docutils literal notranslate"><span class="pre">>=65.6</span></code> to <code class="docutils literal notranslate"><span class="pre">>=77</span></code> and switched to PEP 639 project license metadata format (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6502">#6502</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.2.0...7.3.0">Full changelog</a></p>
</section>
<section id="streamlink-7-2-0-2025-04-04">
<h2>streamlink 7.2.0 (2025-04-04)<a class="headerlink" href="#streamlink-7-2-0-2025-04-04" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">decompress</span></code> extras marker to Streamlink’s optional dependencies for installing <code class="docutils literal notranslate"><span class="pre">brotli</span></code> and <code class="docutils literal notranslate"><span class="pre">zstandard</span></code>, which were previously implied optional dependencies via the transitive dependency <code class="docutils literal notranslate"><span class="pre">urllib3</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6451">#6451</a>)</p></li>
<li><p>Changed: <code class="docutils literal notranslate"><span class="pre">--retry-streams</span></code> to allow a value of <code class="docutils literal notranslate"><span class="pre">0</span></code>, so it can be unset again if set previously (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6455">#6455</a>)</p></li>
<li><p>Changed: <code class="docutils literal notranslate"><span class="pre">--quiet</span></code> to suppress all text output including errors, not just log output (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6461">#6461</a>)</p></li>
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">--logfile</span></code> affecting the console output stream (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6461">#6461</a>)</p></li>
<li><p>Fixed: broken user input prompt behavior on missing or non-interactive I/O streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6461">#6461</a>)</p></li>
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">Plugin</span></code> classes not requiring a matching matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6466">#6466</a>)</p></li>
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">--hls-audio-select</span></code> not being case-insensitive and only comparing input values rather than resolved language codes (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6469">#6469</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6479">#6479</a>)</p></li>
<li><p>Updated: Chrome Devtool Protocol interfaces, to match recent Chromium versions (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6481">#6481</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>euronews: rewritten and fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6452">#6452</a>)</p></li>
<li><p>kick: refactored plugin, fixed clip matcher and 403 API responses (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6491">#6491</a>)</p></li>
<li><p>nicolive: fixed plugin not loading cookies from WebSocket messages (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6441">#6441</a>)</p></li>
<li><p>nicolive: made the plugin always filter out blank HLS segments (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6476">#6476</a>)</p></li>
<li><p>nowtvtr: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6488">#6488</a>)</p></li>
<li><p>okru: canonicalize mobile URLs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6444">#6444</a>)</p></li>
<li><p>tf1: fixed stream matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6439">#6439</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.1.3...7.2.0">Full changelog</a></p>
</section>
<section id="streamlink-7-1-3-2025-02-14">
<h2>streamlink 7.1.3 (2025-02-14)<a class="headerlink" href="#streamlink-7-1-3-2025-02-14" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">validate.contains()</span></code> to allow all kinds of <code class="docutils literal notranslate"><span class="pre">Container</span></code> object inputs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6421">#6421</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>ceskatelevize: rewritten and fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6397">#6397</a>)</p></li>
<li><p>nos: fixed validation schema, updated matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6420">#6420</a>)</p></li>
<li><p>pandalive: fixed user_id retieval, updated matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6433">#6433</a>)</p></li>
<li><p>pluzz: fixed video ID schemas (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6428">#6428</a>)</p></li>
<li><p>streamable: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6435">#6435</a>)</p></li>
<li><p>tv4play: removed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6399">#6399</a>)</p></li>
<li><p>twitch: refactored TwitchAPI class and access token retrieval (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6403">#6403</a>)</p></li>
<li><p>wwenetwork: rewritten and fixed plugin (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6404">#6404</a>)</p></li>
</ul>
</li>
<li><p>Docs: replaced Windows and Linux AppImage nightly builds with preview builds triggered on each commit to <code class="docutils literal notranslate"><span class="pre">master</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6425">#6425</a>)</p></li>
<li><p>Docs: added optional/secondary Linux AppImage builds with FFmpeg being bundled (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6415">#6415</a>)</p></li>
<li><p>Tests: bumped <code class="docutils literal notranslate"><span class="pre">freezegun</span></code> requirement to <code class="docutils literal notranslate"><span class="pre">>=1.5.0</span></code> (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6406">#6406</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.1.2...7.1.3">Full changelog</a></p>
</section>
<section id="streamlink-7-1-2-2025-01-08">
<h2>streamlink 7.1.2 (2025-01-08)<a class="headerlink" href="#streamlink-7-1-2-2025-01-08" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Updated plugins:</p>
<ul>
<li><p>various: fixed access of URL matcher regex capture groups, affecting abematv, ard_mediathek, bbiplayer, dailymotion, picarto, streann (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6364">#6364</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6368">#6368</a>)</p></li>
<li><p>chzzk: added support for clips (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6389">#6389</a>)</p></li>
<li><p>dailymotion: added support for lequipe.fr (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6372">#6372</a>)</p></li>
<li><p>kick: fixed 403 HTTP errors, fixed VOD URL matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6384">#6384</a>)</p></li>
<li><p>nicolive: fixed authentication (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6378">#6378</a>)</p></li>
<li><p>tiktok: rewritten plugin, fixed live streams, added VODs (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6381">#6381</a>)</p></li>
</ul>
</li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.1.1...7.1.2">Full changelog</a></p>
</section>
<section id="streamlink-7-1-1-2024-12-28">
<h2>streamlink 7.1.1 (2024-12-28)<a class="headerlink" href="#streamlink-7-1-1-2024-12-28" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">--show-matchers=pluginname</span></code> not working when plugins are loaded lazily (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6361">#6361</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.1.0...7.1.1">Full changelog</a></p>
</section>
<section id="streamlink-7-1-0-2024-12-28">
<h2>streamlink 7.1.0 (2024-12-28)<a class="headerlink" href="#streamlink-7-1-0-2024-12-28" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>Added: <code class="docutils literal notranslate"><span class="pre">--show-matchers=pluginname</span></code> CLI argument (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6287">#6287</a>)</p></li>
<li><p>Updated: <code class="docutils literal notranslate"><span class="pre">Streamlink</span></code> and <code class="docutils literal notranslate"><span class="pre">Plugin</span></code> constructors to allow both <code class="docutils literal notranslate"><span class="pre">Mapping</span></code> and <code class="docutils literal notranslate"><span class="pre">Options</span></code> as <code class="docutils literal notranslate"><span class="pre">options</span></code> types (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6311">#6311</a>)</p></li>
<li><p>Fixed: uncaught DASH errors if FFmpeg is unavailable (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6306">#6306</a>)<br />
As a side effect, if FFmpeg is unavailable, DASH streams will only return one sub-stream of the video and/or audio streams that would be muxed otherwise.</p></li>
<li><p>Fixed: incorrect DASH segment duration in timeline manifests (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6323">#6323</a>)</p></li>
<li><p>Fixed: dynamic DASH streams incorrectly requiring the <code class="docutils literal notranslate"><span class="pre">publishTime</span></code> and <code class="docutils literal notranslate"><span class="pre">availabilityStartTime</span></code> attributes (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6324">#6324</a>)</p></li>
<li><p>Fixed: incorrect DASH segment and manifest base-URL joining (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6328">#6328</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6338">#6338</a>)</p></li>
<li><p>Fixed: <code class="docutils literal notranslate"><span class="pre">matchers</span></code> and <code class="docutils literal notranslate"><span class="pre">arguments</span></code> objects being shared in inherited <code class="docutils literal notranslate"><span class="pre">Plugin</span></code> classes (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6297">#6297</a>, <a class="reference external" href="https://github.com/streamlink/streamlink/pull/6298">#6298</a>)</p></li>
<li><p>Updated plugins:</p>
<ul>
<li><p>various: replaced verbose URL matcher regexes of most plugins with multiple simple ones (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6285">#6285</a>)</p></li>
<li><p>bilibili: updated schema to include MPEG-TS HLS streams (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6332">#6332</a>)</p></li>
<li><p>bilibili: added back high-res <code class="docutils literal notranslate"><span class="pre">HTTPStream</span></code> streams from the v1 API with higher priority (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/5782">#5782</a>)</p></li>
<li><p>mangomolo: replaced media.gov.kw with 51.com.kw (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6353">#6353</a>)</p></li>
<li><p>soop: rewritten authentication (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6321">#6321</a>)</p></li>
<li><p>vkplay: renamed to vkvideo and updated matcher (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6319">#6319</a>)</p></li>
<li><p>welt: fixed schema (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6301">#6301</a>)</p></li>
</ul>
</li>
<li><p>Build: removed <code class="docutils literal notranslate"><span class="pre">typing-extensions</span></code> from runtime dependencies (<a class="reference external" href="https://github.com/streamlink/streamlink/pull/6314">#6314</a>)</p></li>
</ul>
<p><a class="reference external" href="https://github.com/streamlink/streamlink/compare/7.0.0...7.1.0">Full changelog</a></p>
</section>
<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>