add Basic support for Smooth Streaming protocol(#8118)

This commit is contained in:
Remita Amine
2016-10-19 16:22:40 +01:00
committed by Sergey M
parent f449c061d0
commit b2758123c5
4 changed files with 377 additions and 1 deletions

View File

@ -7,6 +7,7 @@ from .http import HttpFD
from .rtmp import RtmpFD
from .dash import DashSegmentsFD
from .rtsp import RtspFD
from .ism import IsmFD
from .external import (
get_external_downloader,
FFmpegFD,
@ -24,6 +25,7 @@ PROTOCOL_MAP = {
'rtsp': RtspFD,
'f4m': F4mFD,
'http_dash_segments': DashSegmentsFD,
'ism': IsmFD,
}