7
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-01-02 09:57:24 +00:00

[mplayer] Rename to RTSP

This commit is contained in:
Sergey M․ 2015-04-26 00:25:51 +06:00
parent b874495b1f
commit a5ebf77d87
2 changed files with 4 additions and 4 deletions
youtube_dl/downloader

View File

@ -6,7 +6,7 @@ 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 ..utils import (
@ -17,8 +17,8 @@ PROTOCOL_MAP = {
'rtmp': RtmpFD,
'm3u8_native': NativeHlsFD,
'm3u8': HlsFD,
'mms': MplayerFD,
'rtsp': MplayerFD,
'mms': RtspFD,
'rtsp': RtspFD,
'f4m': F4mFD,
}

View File

@ -10,7 +10,7 @@ from ..utils import (
)
class MplayerFD(FileDownloader):
class RtspFD(FileDownloader):
def real_download(self, filename, info_dict):
url = info_dict['url']
self.report_destination(filename)