如何使用 Windows 访问原始解码音频数据内置mp3解码器?
从 Windows Media Player 6.1 开始,Windows 就有了自己的 mp3 解码器。我可以使用该解码器来访问解码的音频(原始)数据吗?
我认为这必须通过 DirectShow 来完成。
Since Windows Media Player 6.1, Windows has its' own mp3 decoder. Can I use that decoder to get access to the decoded audio (raw) data?
I assume it would have to be done with DirectShow.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加示例抓取器< /a> 进入 mp3 解码器之后的图表。样本采集器允许您配置一个回调,当每个样本通过媒体管道时调用该回调。
你的图表看起来像
You can add a sample grabber into the graph after the mp3 decoder. The sample grabber allows you to configure a callback that gets called as each sample passes through the media pipeline.
Your graph would look something like