mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-09 12:50:23 -05:00
"fix" plugin overrides
This commit is contained in:
parent
45385a029c
commit
4a644c03b3
1 changed files with 29 additions and 0 deletions
|
@ -19,3 +19,32 @@
|
||||||
from ._search import YoutubeMusicSearchURLIE, YoutubeSearchDateIE, YoutubeSearchIE, YoutubeSearchURLIE
|
from ._search import YoutubeMusicSearchURLIE, YoutubeSearchDateIE, YoutubeSearchIE, YoutubeSearchURLIE
|
||||||
from ._tab import YoutubePlaylistIE, YoutubeTabBaseInfoExtractor, YoutubeTabIE
|
from ._tab import YoutubePlaylistIE, YoutubeTabBaseInfoExtractor, YoutubeTabIE
|
||||||
from ._video import YoutubeIE
|
from ._video import YoutubeIE
|
||||||
|
|
||||||
|
# Hack to allow plugin overrides work
|
||||||
|
for _cls in [
|
||||||
|
YoutubeBaseInfoExtractor,
|
||||||
|
YoutubeClipIE,
|
||||||
|
YoutubeTruncatedIDIE,
|
||||||
|
YoutubeTruncatedURLIE,
|
||||||
|
YoutubeNotificationsIE,
|
||||||
|
YoutubeConsentRedirectIE,
|
||||||
|
YoutubeFavouritesIE,
|
||||||
|
YoutubeFeedsInfoExtractor,
|
||||||
|
YoutubeHistoryIE,
|
||||||
|
YoutubeLivestreamEmbedIE,
|
||||||
|
YoutubeRecommendedIE,
|
||||||
|
YoutubeShortsAudioPivotIE,
|
||||||
|
YoutubeSubscriptionsIE,
|
||||||
|
YoutubeWatchLaterIE,
|
||||||
|
YoutubeYtBeIE,
|
||||||
|
YoutubeYtUserIE,
|
||||||
|
YoutubeMusicSearchURLIE,
|
||||||
|
YoutubeSearchDateIE,
|
||||||
|
YoutubeSearchIE,
|
||||||
|
YoutubeSearchURLIE,
|
||||||
|
YoutubePlaylistIE,
|
||||||
|
YoutubeTabBaseInfoExtractor,
|
||||||
|
YoutubeTabIE,
|
||||||
|
YoutubeIE,
|
||||||
|
]:
|
||||||
|
_cls.__module__ = 'yt_dlp.extractor.youtube'
|
||||||
|
|
Loading…
Reference in a new issue