[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

View File

@ -6,7 +6,7 @@
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 @@
'rtmp': RtmpFD,
'm3u8_native': NativeHlsFD,
'm3u8': HlsFD,
'mms': MplayerFD,
'rtsp': MplayerFD,
'mms': RtspFD,
'rtsp': RtspFD,
'f4m': F4mFD,
}

View File

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