aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/downloader/__init__.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2015-06-04 22:05:33 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2015-06-04 22:05:33 +0800
commitb9258c61789388b49792ebdceb5d804217a36da5 (patch)
treea0a94418785cdb3b212b0b85eb20cd353408a7e6 /youtube_dl/downloader/__init__.py
parent6800d3372f35e08dcc4d34d06601815bf0cb0a3d (diff)
downloadyoutube-dl-b9258c61789388b49792ebdceb5d804217a36da5.tar.xz
[YoutubeDL] Change how DashSegmentsFD is selected
Diffstat (limited to 'youtube_dl/downloader/__init__.py')
-rw-r--r--youtube_dl/downloader/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/downloader/__init__.py b/youtube_dl/downloader/__init__.py
index f110830c4..1b618ab54 100644
--- a/youtube_dl/downloader/__init__.py
+++ b/youtube_dl/downloader/__init__.py
@@ -8,6 +8,7 @@ from .hls import NativeHlsFD
from .http import HttpFD
from .rtsp import RtspFD
from .rtmp import RtmpFD
+from .dash import DashSegmentsFD
from ..utils import (
determine_protocol,
@@ -20,6 +21,7 @@ PROTOCOL_MAP = {
'mms': RtspFD,
'rtsp': RtspFD,
'f4m': F4mFD,
+ 'dash_segments': DashSegmentsFD,
}