1
0
Fork 0

[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 02:25:58 +02:00 committed by GitHub
commit d0bf3d0fc3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 102 additions and 1 deletions

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,
}