'ffmpeg' 不是内部或外部命令,也不是可运行的程序或批处理文件
'ffmpeg' is not recognized as an internal or external command, operable program or batch file
我正在尝试将图像组 .png
转换为视频 .webm
:
ffmpeg -i %03d.png output.webm
获取错误:
'ffmpeg' is not recognized as an internal or external command, operable program or batch file.
使用 Windows 10.
3 个解决方案:
将 ffmpeg.exe
放入包含 PNG 图片的文件夹中。
或者,在 cmd
中提供 ffmpeg.exe
的完整路径。示例:
"C:\Users\Mark\Downloads\ffmpeg-20210913-28f7a91-win64-static\bin\ffmpeg.exe" -i %03d.png output.webm
或者,add the folder with ffmpeg.exe
into your system PATH
.
我正在尝试将图像组 .png
转换为视频 .webm
:
ffmpeg -i %03d.png output.webm
获取错误:
'ffmpeg' is not recognized as an internal or external command, operable program or batch file.
使用 Windows 10.
3 个解决方案:
将
ffmpeg.exe
放入包含 PNG 图片的文件夹中。或者,在
cmd
中提供ffmpeg.exe
的完整路径。示例:"C:\Users\Mark\Downloads\ffmpeg-20210913-28f7a91-win64-static\bin\ffmpeg.exe" -i %03d.png output.webm
或者,add the folder with
ffmpeg.exe
into your systemPATH
.