在带有 linux 的 ffmpeg 中找不到预设 'slower' 的文件

File for preset 'slower' not found in ffmpeg with linux

当我使用下面的命令然后得到错误 "File for preset 'slower' not found"

/usr/bin/ffmpeg -i mainFile.mp4 -ss 00:03:22 -t 00:00:22 -acodec libfaac -vcodec libx264 -vpre slower -crf 18 -aspect 16:9 -r 25 -b 3000k -vpre main -level 21 -refs 2 -threads 0 spliteFile.mp4

但是当我尝试基本的 ffmpeg 命令时它工作正常。

/usr/bin/ffmpeg -i mainFile.mp4 -ss 0 -t 100 spliteFile.mp4

求推荐。我想我缺少参数?提前致谢....

vpre 不是 x264/5 编码器预设的别名!

-vpre slower 替换为 -preset slower,将 -vpre main 替换为 -profile:v main

此外,libfaac 是最不推荐的 AAC 编码器。 libfdk_aac > aac > lifaac。您的 ffmpeg 看起来很旧,因为最新版本不再支持 libfaac。我建议升级。