diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-10 22:17:11 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-10 22:19:54 +0530 |
commit | f7ad71607d0e733a602a9ae0493292b646d20fd4 (patch) | |
tree | 829639cad5d2f403fc59b40c79b936e53bfc3246 /yt_dlp/extractor/extractors.py | |
parent | 68379de561a3f7bc51cf82b983c77d25cd596123 (diff) | |
download | hypervideo-pre-f7ad71607d0e733a602a9ae0493292b646d20fd4.tar.lz hypervideo-pre-f7ad71607d0e733a602a9ae0493292b646d20fd4.tar.xz hypervideo-pre-f7ad71607d0e733a602a9ae0493292b646d20fd4.zip |
Update to ytdl-commit-4fb25ff
[maoritv] Add new extractor
https://github.com/ytdl-org/youtube-dl/commit/4fb25ff5a3be5206bb72e5c4046715b1529fb2c7
Except:
[vimeo] improve extraction https://github.com/ytdl-org/youtube-dl/commit/3ae9c0f410b1d4f63e8bada67dd62a8d2852be32
[youtube:tab] Pass innertube context... https://github.com/ytdl-org/youtube-dl/commit/1b0a13f33cfb3644cc718d35951ea85bb1905459
Diffstat (limited to 'yt_dlp/extractor/extractors.py')
-rw-r--r-- | yt_dlp/extractor/extractors.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/yt_dlp/extractor/extractors.py b/yt_dlp/extractor/extractors.py index b9e3c4ad3..424406177 100644 --- a/yt_dlp/extractor/extractors.py +++ b/yt_dlp/extractor/extractors.py @@ -210,7 +210,11 @@ from .cbsnews import ( CBSNewsIE, CBSNewsLiveVideoIE, ) -from .cbssports import CBSSportsIE +from .cbssports import ( + CBSSportsEmbedIE, + CBSSportsIE, + TwentyFourSevenSportsIE, +) from .ccc import ( CCCIE, CCCPlaylistIE, @@ -633,7 +637,11 @@ from .limelight import ( LimelightChannelIE, LimelightChannelListIE, ) -from .line import LineTVIE +from .line import ( + LineTVIE, + LineLiveIE, + LineLiveChannelIE, +) from .linkedin import ( LinkedInLearningIE, LinkedInLearningCourseIE, @@ -671,6 +679,7 @@ from .mangomolo import ( MangomoloLiveIE, ) from .manyvids import ManyVidsIE +from .maoritv import MaoriTVIE from .markiza import ( MarkizaIE, MarkizaPageIE, |