Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 wav 文件作为背景添加到 mp4 视频中,但不知道从哪里开始...我尝试查看“视频编辑器”API,但没有发现任何有用的...
是否值得在设备上以某种形式使用 ffmpeg 还是有一种我忽略的方法?(如果有的话,有没有适合新手的好教程?)
提前致谢...
是的,ffmpeg 已经足够好了
ffmpeg -i in.mp4 -i in.wav -acodec <give your codec> -vcodec copy out.mp4
应该做的伎俩并为我工作。