Browse Source

[mplayer] Rename to RTSP

totalwebcasting
Sergey M․ 10 years ago
parent
commit
a5ebf77d87
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      youtube_dl/downloader/__init__.py
  2. +1
    -1
      youtube_dl/downloader/rtsp.py

+ 3
- 3
youtube_dl/downloader/__init__.py 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,
}


youtube_dl/downloader/mplayer.py → youtube_dl/downloader/rtsp.py View File


Loading…
Cancel
Save