diff options
author | Alexander Seiler <seileralex@gmail.com> | 2022-08-18 21:57:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 01:27:51 +0530 |
commit | f60ef66371825c9f0718817d60ff79e4b2abc52a (patch) | |
tree | 3a6fe97b3e0626fae6457ffbf80385c71bb7d984 /yt_dlp/extractor/_extractors.py | |
parent | 25836db6bea78501c514bfbe5840f305b33afdcd (diff) |
[extractor/zattoo] Fix Zattoo resellers (#4675)
Closes #4630
Authored by: goggle
Diffstat (limited to 'yt_dlp/extractor/_extractors.py')
-rw-r--r-- | yt_dlp/extractor/_extractors.py | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/yt_dlp/extractor/_extractors.py b/yt_dlp/extractor/_extractors.py index d70302548..1a355b2dc 100644 --- a/yt_dlp/extractor/_extractors.py +++ b/yt_dlp/extractor/_extractors.py @@ -2200,17 +2200,41 @@ from .youtube import ( from .zapiks import ZapiksIE from .zattoo import ( BBVTVIE, + BBVTVLiveIE, + BBVTVRecordingsIE, EinsUndEinsTVIE, + EinsUndEinsTVLiveIE, + EinsUndEinsTVRecordingsIE, EWETVIE, + EWETVLiveIE, + EWETVRecordingsIE, GlattvisionTVIE, + GlattvisionTVLiveIE, + GlattvisionTVRecordingsIE, MNetTVIE, - NetPlusIE, + MNetTVLiveIE, + MNetTVRecordingsIE, + NetPlusTVIE, + NetPlusTVLiveIE, + NetPlusTVRecordingsIE, OsnatelTVIE, + OsnatelTVLiveIE, + OsnatelTVRecordingsIE, QuantumTVIE, + QuantumTVLiveIE, + QuantumTVRecordingsIE, SaltTVIE, + SaltTVLiveIE, + SaltTVRecordingsIE, SAKTVIE, + SAKTVLiveIE, + SAKTVRecordingsIE, VTXTVIE, + VTXTVLiveIE, + VTXTVRecordingsIE, WalyTVIE, + WalyTVLiveIE, + WalyTVRecordingsIE, ZattooIE, ZattooLiveIE, ZattooMoviesIE, |