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)