从 directshow 获取音频/视频数据的最简单方法
我编译了 DirectShow 示例播放器(来自 Windows SDK 的“Samples\multimedia\directshow\players\dshowplayer”文件夹)。
一切都运行良好,但它直接渲染到屏幕上,音频直接进入 directsound。我需要能够抓取数据并将图像写入 BMP,并将音频写入 .wav。
我是否使用了错误的样本作为起点?如果没有,修改示例以便我可以访问视频和音频数据的最简单方法是什么?
谢谢!
I compiled the DirectShow sample player (from the Windows SDK's "Samples\multimedia\directshow\players\dshowplayer" folder).
Everything works well but it renders directly to the screen and the audio goes directly to directsound. I need to be able to grab the data and write out images to BMPs and write out the audio to .wav.
Am I using the wrong sample as a starting point? If not, what is the easiest way to modify the sample so I can get access to the video and audio data?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在渲染器之前插入 SampleGrabber 筛选器,并使用 ISampleGrabberCB 访问数据的接口。您仍然可以将视频渲染到屏幕上,并输出音频。如果您不希望这样,请改用 NullRenderer。另请参阅codeproject 上的此示例。
You can insert a SampleGrabber filter before the renderer, and use the ISampleGrabberCB Interface to access the data. You can still render the video to the screen, and output the audio. If you don't want that, use a NullRenderer instead. See also this example on codeproject.