diff options
author | Tom-Oliver Heidel <github@tom-oliver.eu> | 2020-08-31 23:47:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 23:47:06 +0200 |
commit | a9c069012f0be66c0da80b4ced91cb0c2882b76f (patch) | |
tree | 9b13ada8f03df914d090ded0859fff61d8e2d50c /youtube_dl/downloader/__init__.py | |
parent | ba304106ded5c883c2732e0d8ad7c79c87350f02 (diff) | |
parent | 15eae44d74c80cca29cd5b24129585ad2d1e535f (diff) | |
download | hypervideo-pre-a9c069012f0be66c0da80b4ced91cb0c2882b76f.tar.lz hypervideo-pre-a9c069012f0be66c0da80b4ced91cb0c2882b76f.tar.xz hypervideo-pre-a9c069012f0be66c0da80b4ced91cb0c2882b76f.zip |
Merge pull request #12 from siikamiika/youtube-live-chat
Youtube live chat
Diffstat (limited to 'youtube_dl/downloader/__init__.py')
-rw-r--r-- | youtube_dl/downloader/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/downloader/__init__.py b/youtube_dl/downloader/__init__.py index 2e485df9d..4ae81f516 100644 --- a/youtube_dl/downloader/__init__.py +++ b/youtube_dl/downloader/__init__.py @@ -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, } |