I share with you a running example, I noticed that I've got other sound providers. I ran this with a mp3 and wav examples.
import kivy
kivy.require('1.9.0')
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.core.audio import SoundLoader
class MyW(Widget):
sound = SoundLoader.load('blip.mp3')
sound.play()
class Shape(App):
def build(self):
return MyW()
if __name__=='__main__':
Shape().run()
And
[INFO ] [AudioGstplayer] Using Gstreamer 1.4.5.0
[INFO ] [Audio ] Providers: audio_gstplayer, audio_sdl2 (audio_ffpyplayer ignored)