如何在 C#.net 中将媒体文件追加/排队到当前媒体播放器程序?
我使用:
System.Diagnostics.Process.Start(@"D:\Song1.mp3");
它使用我的默认媒体播放器(例如Window Media Player)播放MP3文件;
我有另一个 MP3 文件(例如 D:\Song2.mp3),我想将其附加/队列到当前媒体播放器。有人请告诉我该怎么做吗?
I used:
System.Diagnostics.Process.Start(@"D:\Song1.mp3");
It played the MP3 file with my default Media Play (e.g Window Media Player);
I have another MP3 File (e.g D:\Song2.mp3) that i want to append/queue to the current Media Player. Anyone please tell me how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否看过Windows Media Player SDK。设置完成后,您将能够以编程方式排队/附加媒体文件。
Have you taken a look at Windows Media Player SDK. Once setup you will be able queue/append media file programically.