diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-03-20 08:50:08 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-03-20 09:34:52 +0530 |
commit | beb4b92a66d828816100f34ba77cba76e92e06ea (patch) | |
tree | e23a1b9fb995710c9a2eed88e516af6928dd67f4 /yt_dlp/downloader/rtsp.py | |
parent | cd9b384cc338da6ce43a66ed392ce995ea73eb35 (diff) | |
download | hypervideo-pre-beb4b92a66d828816100f34ba77cba76e92e06ea.tar.lz hypervideo-pre-beb4b92a66d828816100f34ba77cba76e92e06ea.tar.xz hypervideo-pre-beb4b92a66d828816100f34ba77cba76e92e06ea.zip |
More consistent warning messages (#173)
Co-authored by: Damiano Amatruda <damiano.amatruda@outlook.com>
Diffstat (limited to 'yt_dlp/downloader/rtsp.py')
-rw-r--r-- | yt_dlp/downloader/rtsp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/downloader/rtsp.py b/yt_dlp/downloader/rtsp.py index 939358b2a..4ce2fafff 100644 --- a/yt_dlp/downloader/rtsp.py +++ b/yt_dlp/downloader/rtsp.py @@ -24,7 +24,7 @@ class RtspFD(FileDownloader): args = [ 'mpv', '-really-quiet', '--vo=null', '--stream-dump=' + tmpfilename, url] else: - self.report_error('MMS or RTSP download detected but neither "mplayer" nor "mpv" could be run. Please install any.') + self.report_error('MMS or RTSP download detected but neither "mplayer" nor "mpv" could be run. Please install one') return False self._debug_cmd(args) |