如何在 WP7 中访问播客?

发布于 2024-11-02 11:46:15 字数 43 浏览 3 评论 0原文

如何访问手机上的播客列表并在 WP7 中播放它们?

谢谢

How can you access the list of podcasts on the phone and play them in WP7?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

清旖 2024-11-09 11:46:15

目前无法查询播客。流派不会告诉您正在使用的内容是否是播客 - MediaLibrary 将仅访问常规歌曲,而不是其他内容。

希望 Mango 更新能够为媒体访问 API 带来一些扩展。

Currently there is no way you can query podcasts. The Genre won't tell you whether the content you are working with is a podcast or not - MediaLibrary will access the regular songs only and not additional content.

Hopefully the Mango update will carry some extensions for the Media Access API.

极度宠爱 2024-11-09 11:46:15

我正在探索网络,为您开发一个示例。 BING了一段时间后,突然我发现这个页面有现成的示例代码。

适用于播客的 Windows Phone 入门套件

我希望这会有所帮助:)

I was exploring the net to develop a sample for you. After BINGing for a while, suddenly I found this page which has the sample code readily available.

Windows Phone Starter Kit for Podcasts

I hope this helps :)

日暮斜阳 2024-11-09 11:46:15

不确定是否有特定的方法来获取播客,但如果您知道播客的标题,您可以使用 Song 类的 Genre 属性,然后迭代 MediaLibrary 返回的歌曲

MediaLibrary library = new MediaLibrary();
SongCollection songs = library.Songs;

Not sure if there is a specific way to grab just podcasts, but if you know the title of the podcast you could use the Genre property of the Song class and then just iterate through the songs returned by the MediaLibrary

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