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.
我需要一个轻量级模块,它可以从 HTTP 服务器流式传输 mp3 文件,在扬声器上播放,并允许搜索。
我将编写 GUI 部分,我只需要一个非常简单的后端来执行以下操作:
obj = MediaSource(r'http://myserver.com/my_song.mp3') obj.play() obj.seek(30)