1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-03 14:55:17 +00:00

support youtube live chat replay

This commit is contained in:
siikamiika
2020-08-05 01:02:23 +03:00
parent 98b69821e4
commit a78e3a5795
3 changed files with 98 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ from .rtmp import RtmpFD
from .dash import DashSegmentsFD
from .rtsp import RtspFD
from .ism import IsmFD
from .youtube_live_chat import YoutubeLiveChatReplayFD
from .external import (
get_external_downloader,
FFmpegFD,
@@ -26,6 +27,7 @@ PROTOCOL_MAP = {
'f4m': F4mFD,
'http_dash_segments': DashSegmentsFD,
'ism': IsmFD,
'youtube_live_chat_replay': YoutubeLiveChatReplayFD,
}