Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经搜索了一段时间,但从来没有找到一个很好的教程来展示如何实现这个音频流功能。那里有一些 Java 教程,但我很难理解这些。有人知道关于c sharp 主题的好教程吗?
终于找到了解决办法,原来真的很简单
string url = "..."; player.SetAudioStreamType(Stream.Music); player.SetDataSource(url); player.Prepare(); player.Start();