diff options
| author | dirkf <fieldhouse@gmx.net> | 2023-05-03 10:02:25 +0100 | 
|---|---|---|
| committer | dirkf <fieldhouse@gmx.net> | 2023-07-19 22:14:50 +0100 | 
| commit | 4566e6e53ebd87c6c548a8414ab5bd742c14c2b0 (patch) | |
| tree | fe53fa4d88bb91c77d8041713cdb42f55e48c0d4 /youtube_dl/extractor/extractors.py | |
| parent | 1e8ccdd2eb77901e18feb8a9d48e62d11651cd1e (diff) | |
[GlobalPlayer] Add site extractors back-ported from yt-dlp
* from https://github.com/yt-dlp/yt-dlp/pull/6903, thanks garret1317
Diffstat (limited to 'youtube_dl/extractor/extractors.py')
| -rw-r--r-- | youtube_dl/extractor/extractors.py | 15 | 
1 files changed, 11 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py index 3a87f9e33..811a2605a 100644 --- a/youtube_dl/extractor/extractors.py +++ b/youtube_dl/extractor/extractors.py @@ -444,6 +444,13 @@ from .gfycat import GfycatIE  from .giantbomb import GiantBombIE  from .giga import GigaIE  from .glide import GlideIE +from .globalplayer import ( +    GlobalPlayerLiveIE, +    GlobalPlayerLivePlaylistIE, +    GlobalPlayerAudioIE, +    GlobalPlayerAudioEpisodeIE, +    GlobalPlayerVideoIE +)  from .globo import (      GloboIE,      GloboArticleIE, @@ -975,6 +982,10 @@ from .pornhub import (  from .pornotube import PornotubeIE  from .pornovoisines import PornoVoisinesIE  from .pornoxo import PornoXOIE +from .pr0gramm import ( +    Pr0grammIE, +    Pr0grammStaticIE, +)  from .puhutv import (      PuhuTVIE,      PuhuTVSerieIE, @@ -1678,7 +1689,3 @@ from .zingmp3 import (  )  from .zoom import ZoomIE  from .zype import ZypeIE -from .pr0gramm import ( -    Pr0grammIE, -    Pr0grammStaticIE, -) | 
