本文介绍了无法在.mp4容器文件中存储pcm音频的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 可以将pcm音频文件存储到.mp4文件中吗? 我用ffmpeg命令ffmpeg -i tempA.wav -acodec copy temp.mp4但无法将其存储在mp4容器文件中。转换为 .AVI (ffmpeg -i tempA。 wav -acodec copy temp.avi)& .MOV (ffmpeg -i tempA.wav -acodec copy temp.mov)文件格式工作完美。解决方案我不认为mp4容器格式支持raw pcm音频。你必须使用avi或mov。 请参阅维基百科链接以获取mp4容器的支持音频格式。 http://en.wikipedia.org/wiki/Comparison_of_container_formats 还要关注doom9论坛链接。 http://forum.doom9.org/ archive / index.php / t-140877.html 官方页面 http://mpeg.chiariglione.org/standards/mpeg-4/audio Is it possible to store a pcm audio file into .mp4 file?I used ffmpeg command "ffmpeg -i tempA.wav -acodec copy temp.mp4" but unable to store it in mp4 container file.Where in converting to .AVI (ffmpeg -i tempA.wav -acodec copy temp.avi)& .MOV (ffmpeg -i tempA.wav -acodec copy temp.mov) file formats works perfectly fine. 解决方案 I don't think mp4 container format support raw pcm audio. You will have to use either avi or mov.See wikipedia link for supported audio format for mp4 containerhttp://en.wikipedia.org/wiki/Comparison_of_container_formatsAlso follow doom9 forum link.http://forum.doom9.org/archive/index.php/t-140877.htmlOfficial pagehttp://mpeg.chiariglione.org/standards/mpeg-4/audio 这篇关于无法在.mp4容器文件中存储pcm音频的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-23 02:40