优化ffmpeg寻找的提示信息

This commit is contained in:
nilaoda 2022-08-12 19:43:45 +08:00
parent a89387b4f6
commit 0f1fff6468
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ namespace N_m3u8DL_RE
option.FFmpegBinaryPath = GlobalUtil.FindExecutable("ffmpeg"); option.FFmpegBinaryPath = GlobalUtil.FindExecutable("ffmpeg");
if (string.IsNullOrEmpty(option.FFmpegBinaryPath)) if (string.IsNullOrEmpty(option.FFmpegBinaryPath))
{ {
throw new FileNotFoundException(option.FFmpegBinaryPath); throw new FileNotFoundException("ffmpeg not found!");
} }
} }