合并视频和音频流(Qt、OpenCV、PortAudio、libsnd?)
我想知道,如果我将录制的音频和视频放在单独的文件中,如何将它们合并为一个?最好使用 OpenCV 和 PortAudio/libsnd。
提前致谢。
I was wondering, how would I combine recorded audio and video into one if I have them in separate files? Preferably using OpenCV and PortAudio/libsnd.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
FFmpeg 用于解码和编码几乎所有流行的格式。它可以用作所有这些的替代品。 PortAudio 可能只对音频播放有用,因此除非您需要播放这些内容,否则不需要它。如果您确实需要 A/V 播放,FFmpeg 也不错(VLC 使用它。)
FFmpeg is used to decode and encode almost all popular formats. It can be used as an alternative to all of these. PortAudio will probably only be useful for audio playback, so unless you need to play the stuff back it won't be needed. In case you do need A/V playback, FFmpeg is also good (VLC uses it.)
你可以参考ffmpeg
You can refer ffmpeg
在 Linux 上尝试 mencoder 通常是 mplayer 包的一部分。阅读其手册页后,使用起来相当简单。
On linux try mencoder usually part of the mplayer package. It is fairly straight forward to use after reading through its man page.