如何使用 WinRT 在 Windows 8 Metro 应用程序中播放声音文件?
Windows 8 中的 WinRT API 表面似乎能够加载和保存 播放列表 和 捕获音频。我正在寻找的东西稍微简单一些:WinRT 是否能够播放文件中的音频?如果不是,那么推荐使用哪些本机代码 (C++) API 在 Windows 8 Metro 应用程序中播放文件中的音频?
The WinRT API surface in Windows 8 seems to have the ability to load and save Playlists, and capture audio. What I'm looking for is somewhat simpler: does WinRT have the ability to play audio from a file? If not, what's the recommended API for native code (C++) to play audio from a file in a Windows 8 metro app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 WWA 中,您希望使用 HTML 标记来播放音频。在 xaml 中,您想要使用 MediaElement。
如果您使用低级 C++,则需要使用 MediaFoundation API。
If you're in a WWA, you want to use the HTML tag to play audio. In xaml, you want to use a MediaElement.
If you're using low level C++, you want to use the MediaFoundation APIs.