diff options
author | kebianizao <80541993+kebianizao@users.noreply.github.com> | 2021-12-21 06:35:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-21 11:05:34 +0530 |
commit | 5edb8dfec250a41fc199d03336da3957eceb0cb2 (patch) | |
tree | 90b3986be774ee5b09820eff057788e6ac16a4ff /yt_dlp/extractor/extractors.py | |
parent | 0fcba15d57430e8ebfd2091463e12dfa9882cbef (diff) | |
download | hypervideo-pre-5edb8dfec250a41fc199d03336da3957eceb0cb2.tar.lz hypervideo-pre-5edb8dfec250a41fc199d03336da3957eceb0cb2.tar.xz hypervideo-pre-5edb8dfec250a41fc199d03336da3957eceb0cb2.zip |
[rtve] Add `RTVEAudioIE` (#1657)
Original PR: https://github.com/ytdl-org/youtube-dl/pull/29023
Authored by: kebianizao
Diffstat (limited to 'yt_dlp/extractor/extractors.py')
-rw-r--r-- | yt_dlp/extractor/extractors.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/yt_dlp/extractor/extractors.py b/yt_dlp/extractor/extractors.py index ee5ea533f..0b359a253 100644 --- a/yt_dlp/extractor/extractors.py +++ b/yt_dlp/extractor/extractors.py @@ -1260,7 +1260,13 @@ from .rtl2 import ( from .rtp import RTPIE from .rtrfm import RTRFMIE from .rts import RTSIE -from .rtve import RTVEALaCartaIE, RTVELiveIE, RTVEInfantilIE, RTVELiveIE, RTVETelevisionIE +from .rtve import ( + RTVEALaCartaIE, + RTVEAudioIE, + RTVELiveIE, + RTVEInfantilIE, + RTVETelevisionIE, +) from .rtvnh import RTVNHIE from .rtvs import RTVSIE from .ruhd import RUHDIE |