mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[mplayer] Rename to RTSP
This commit is contained in:
parent
b874495b1f
commit
a5ebf77d87
2 changed files with 4 additions and 4 deletions
|
@ -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,
|
||||
}
|
||||
|
||||
|
|
|
@ -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)
|
Loading…
Reference in a new issue