[YoutubeDL] Change how DashSegmentsFD is selected

This commit is contained in:
Yen Chi Hsuan 2015-06-04 22:05:33 +08:00
parent 6800d3372f
commit b9258c6178
3 changed files with 4 additions and 5 deletions

View file

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