Fatal error: Uncaught exception 'Alchemy\BinaryDriver\Exception\ExecutableNotFoundException' with message 'Executable not found, propos
预计阅读时间: 1分钟
使用FFmpeg获取视频封面的时候出现这个错误:Fatal error: Uncaught exception 'Alchemy\BinaryDriver\Exception\ExecutableNotFoundException' with message 'Executable not found, proposed : avprobe, ffprobe'...
由于是换了一个服务器,原来的功能是正常的,换了以后不正常了,应该就是当前服务器某些服务没有装到位或者配置错误了。ffmpeg肯定是装了,但是ffprobe不确定服务器上是否已经安装,于是在服务器上尝试查询ffprobe版本:
ffprobe -version
输出的结果:
Command 'ffprobe' not found, but can be installed with:apt install ffmpeg
可能还是ffmpeg安装的位置不对,按照提示重新安装ffmpeg,问题解决。