diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-26 00:22:13 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-26 00:22:13 +0600 |
commit | b860f5dfd45f58b2c0a92cecd28c7eb05a7a2ff4 (patch) | |
tree | ca3e1da2157c4dcd10b23f81224555ce23e9beb3 /youtube_dl/downloader | |
parent | b19fc36c813c7a78f15b2df23118962789225852 (diff) |
[mplayer] Clarify error message
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r-- | youtube_dl/downloader/mplayer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/mplayer.py b/youtube_dl/downloader/mplayer.py index 551c4ae94..b1ea8daa6 100644 --- a/youtube_dl/downloader/mplayer.py +++ b/youtube_dl/downloader/mplayer.py @@ -28,7 +28,7 @@ class MplayerFD(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') + self.report_error('MMS or RTSP download detected but neither "mplayer" nor "mpv" could be run. Please install any.') return False # Download using mplayer. |