c++ 的声音问题视频播放器
我有一个 C++ 制作的视频播放器,由于某种原因,我无法理解只有某些文件(.avi)正在播放声音,其他文件只有视觉效果。
我认为这是因为这些视频使用了程序不支持的编解码器。有没有办法“集成”其他编解码器,以便我的所有 avi 文件都有声音?
I have a c++ made video player and for a reason I can't understand only some of the files (.avi) are playing with sound, the others only have the visual.
I think it's because these videos use a codec that the program doesn't support. Is there a way to "integrate" an other codec so all my avi files will have sound ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在VLC播放器中打开它们并找到音频的编解码器类型,检查您的播放器是否支持该编解码器类型。添加新的编解码器类型取决于您的视频播放器代码的可插入性
Open them in VLC player and find the codec type of the audio, Check if your player supports that codec type. Adding the new codec type would depend on how your plug-able your video player code is
当然,运行编解码器的安装程序!
Sure, run the codec's install program!