[ie/soop] Support subscription-only VODs (#15523)

* Add custom downloader SoopVodFD

Closes #13636
Authored by: thematuu
This commit is contained in:
thematuu
2026-01-30 00:25:58 +00:00
committed by GitHub
parent 0d8ee637e8
commit d0bf3d0fc3
3 changed files with 102 additions and 1 deletions
+2
View File
@@ -36,6 +36,7 @@ from .rtsp import RtspFD
from .websocket import WebSocketFragmentFD
from .youtube_live_chat import YoutubeLiveChatFD
from .bunnycdn import BunnyCdnFD
from .soop import SoopVodFD
PROTOCOL_MAP = {
'rtmp': RtmpFD,
@@ -56,6 +57,7 @@ PROTOCOL_MAP = {
'youtube_live_chat': YoutubeLiveChatFD,
'youtube_live_chat_replay': YoutubeLiveChatFD,
'bunnycdn': BunnyCdnFD,
'soopvod': SoopVodFD,
}