Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。












想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。

4年前关闭。



Improve this question




我正在从一些图像和一个音频文件转换MP4视频文件$output
但是现在我要转换没有音频的相同MP4视频文件。
怎么做?

这是我的示例代码:
// Convert Video from audio and images
exec("$ffmpeg -framerate 1/5 -i $convImgPath -i $convAudioPath -c:v libx264 -c:a aac -strict experimental -b:a 16k -shortest $output");

请更新我要更改的代码。

最佳答案

通过-an禁用音频,即

exec("$ffmpeg -framerate 1/5 -i $convImgPath -i $convAudioPath -c:v libx264 -an -shortest $output");

关于audio - 如何使用FFMPEG从没有音频的图像转换MP4视频文件? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35101652/

10-12 17:38