Playing and controlling mp3 files in Python?

后端 未结 2 537
借酒劲吻你
借酒劲吻你 2021-01-03 04:17

First things first, I am a Python beginner, with a typical C++/Java background for object oriented stuff.

I was convinced to try Python for this current endeavor I a

相关标签:
2条回答
  • 2021-01-03 04:45

    Sorry I can't help you with PyMad or pyMedia, but I have other suggestions.

    Existing music players written in Python:

    • Exaile
    • FUPlayer
    • Listen

    All of the above use the Python bindings for the GStreamer multimedia framework. Docs for the bindings are scarce, but check here, here, here, and examples from the source distribution here.

    0 讨论(0)
  • 2021-01-03 04:45

    I just had to deal with this, and from my research I think your best bets are pyglet and pygame. They're interface packages with built-in a/v support.

    0 讨论(0)
提交回复
热议问题