[YoutubeDL] Change how DashSegmentsFD is selected
[youtube-dl] / youtube_dl / downloader / __init__.py
index 9fb66e2f7f680a71c05fdd866c72b0db2dd91a77..1b618ab54ae17ace63f60f9df173837a5e5a9171 100644 (file)
@@ -6,8 +6,9 @@ from .f4m import F4mFD
 from .hls import HlsFD
 from .hls import NativeHlsFD
 from .http import HttpFD
-from .mplayer import MplayerFD
+from .rtsp import RtspFD
 from .rtmp import RtmpFD
+from .dash import DashSegmentsFD
 
 from ..utils import (
     determine_protocol,
@@ -17,9 +18,10 @@ PROTOCOL_MAP = {
     'rtmp': RtmpFD,
     'm3u8_native': NativeHlsFD,
     'm3u8': HlsFD,
-    'mms': MplayerFD,
-    'rtsp': MplayerFD,
+    'mms': RtspFD,
+    'rtsp': RtspFD,
     'f4m': F4mFD,
+    'dash_segments': DashSegmentsFD,
 }