访问 Windows Media Player 库 C#

发布于 2024-10-19 14:49:31 字数 164 浏览 6 评论 0原文

我试图找出如何在 C# 中访问 Windows Media Player 库。我浏览了网络和 SO,发现了很多关于控制 WMP 的文章。不过,我正在尝试访问其图书馆信息。即它的曲目名称、文件路径和元数据。

是否有一个库可以实现此目的,或者至少将其存储在某种形式的数据库中?

谢谢,本

I am trying to find out how to access the Windows Media Player library in c#. I have had a look around the web and SO and have found many articles on controlling WMP. I am trying to access its library information however. I.e. its track names, file path and metadata.

Is there a library for this or at least does it store it in some form of database somewhere?

Thanks, Ben

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

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

发布评论

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

评论(1

绝影如岚 2024-10-26 14:49:32

创建一个Windows窗体并在其上放置一个WMP组件,命名为WMPLayer

AxWMPLib.AxWindowsMediaPlayer Player = form.WMPlayer;
WMPLib.IWMPPlaylist mediaPlaylist = Player.mediaCollection.getByAttribute("MediaType", "audio"); //Get the audio medias.

getByAttribte中填写不同的参数以获得您想要的。

Create a windows form and place a WMP component on it, named WMPLayer:

AxWMPLib.AxWindowsMediaPlayer Player = form.WMPlayer;
WMPLib.IWMPPlaylist mediaPlaylist = Player.mediaCollection.getByAttribute("MediaType", "audio"); //Get the audio medias.

Fill in different parameters in getByAttribte to get what you want.

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