I've been trying to figure out how to use gstreamer to play audio. It works, but sometimes it will randomly freeze my application when I try to start an mp3 file playing. I'm only using two mp3 files and they both work at other times (like after a reboot) so I know it's not specifically the file.
<br><br>Sometimes I'll start my application which calls the start method of the SoundControl class below - and no sound starts. Then, when my app tries to stop the music, everything freezes up. It always seems to freeze things when I call "stop"
<br><br>After doing this, my application refuses to work at all (always freezes) until I reboot my n800.<br><br>If anyone has any ideas, I'd greatly appreciate it. Yes, I know there's probably more optimized ways to do some of what I have in this class, but it's grown as I've learned gstreamer, and I haven't stopped to refactor it yet.
<br><br>I've gleaned most of this code by looking at ukmp:<br><br>class SoundControl(object): <br> def __init__(self):<br> print "Creating music player"<br> self.createGSTPlayer() <br>
<br> def createGSTPlayer(self): <br> print "Creating player"<br> self.player = gst.parse_launch( "gnomevfssrc name=source ! dspmp3sink name=sink" ) # id3lib name=id3 ! <br>
self.source = self.player.get_by_name( "source" )<br> self.sink = self.player.get_by_name( "sink" )<br> self.player.set_name("player") <br> bus = self.player.get_bus
()<br> bus.add_signal_watch()<br> bus.connect('message', self.on_message)<br> print "Player created"<br> <br> def start(self, filename, newVolume = 80, repeat=-1): <br> if filename == None: return
<br> self.stop()<br> time.sleep(0.10)<br> <br> self.createGSTPlayer()<br> <br> self.filename = filename<br> self.repeat = repeat<br> self.paused = False<br> if newVolume < 0: newVolume = 0
<br> if newVolume > 100: newVolume = 100<br> # self.player.set_property('uri','file://' + filename)<br> print "Setting player location"<br> self.source.set_property
("location", filename)<br> self.sink.set_property('volume', newVolume*65535/100)<br> self.player.set_state(gst.STATE_PLAYING)<br> print "Player should be playing"<br>
<br> def stop(self):<br> print "stopping player"<br> self.player.set_state(gst.STATE_NULL)<br> <br> def pause(self, state=None):<br> print "Pause toggle"<br> if state == None:
<br> if self.paused == True:<br> self.paused = False<br> self.player.set_state(gst.STATE_PLAYING)<br> return<br> self.paused = True<br> self.player.set_state
(gst.STATE_PAUSED)<br> return<br> if state == True:<br> self.player.set_state(gst.STATE_PAUSED)<br> else:<br> self.player.set_state(gst.STATE_PLAYING)<br> <br> def on_message(self, bus, message):
<br> t = message.type<br> if t == gst.MESSAGE_EOS:<br> if self.repeat == -1:<br> print "Repeat enabled"<br> time_format = gst.Format(gst.FORMAT_TIME)<br>
self.player.seek_simple(time_format, gst.SEEK_FLAG_FLUSH, 0)<br> self.player.set_state(gst.STATE_PLAYING) <br> return<br> if self.repeat > 0:<br> print "Repeat enabled"
<br> self.repeat = self.repeat - 1<br> time_format = gst.Format(gst.FORMAT_TIME)<br> self.player.seek_simple(time_format, gst.SEEK_FLAG_FLUSH, 0)<br> self.player.set_state
(gst.STATE_PLAYING) <br> return<br> print "No repeat, stopping"<br> self.player.set_state(gst.STATE_NULL)<br> elif t == gst.MESSAGE_ERROR:<br> print "Streamer error"
<br> self.player.set_state(gst.STATE_NULL)<br> <br>