从 directshow 获取音频/视频数据的最简单方法

发布于 2024-10-12 08:27:17 字数 250 浏览 4 评论 0原文

我编译了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

比忠 2024-10-19 08:27:17

您可以在渲染器之前插入 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文