Ticket #796 (closed bug: fixed)

Opened 5 weeks ago

Last modified 5 weeks ago

Fast-forward / rewind not woking on ubuntu 8.04

Reported by: sebastianhgil Owned by:
Priority: minor Milestone:
Component: Interface Version: 0.5
Keywords: fast-forward rewind Cc:

Description

Basically you drag the bar and it comes back to where it was before. I've tried this in 2 different computers with ubuntu 8.04 having the same result

Change History

Changed 5 weeks ago by thrash893

Very annoying major bug

Changed 5 weeks ago by owi

The same problem occurs in Debian testing. However, the development-trunk version of listen does not have this problem. For anyone wanting to patch the older 0.5 version instead of upgrading, apply the following quick hack:

--- /usr/lib/listen/player.py   2008-06-16 00:16:36.000000000 +0200
+++ player.py   2008-07-27 12:27:36.000000000 +0200
@@ -196,7 +196,7 @@
     def on_message(self,bus,message):
         self.debug("message", message)
 
-        if message.type == gst.MESSAGE_CLOCK_PROVIDE:#gst.MESSAGE_NEW_CLOCK:
+        if (message.type == gst.MESSAGE_CLOCK_PROVIDE or message.type == gst.MESSAGE_NEW_CLOCK):
             self.clock=True
             if self.seek_pending:
                 self.seek_cb(self.seek_pending)

Changed 5 weeks ago by sebastianhgil

I can confirm that owi's patch works great in ubuntu 8.04. Thanks

Changed 5 weeks ago by theli

  • status changed from new to closed
  • resolution set to fixed

I have add a word on this in FAQ

Note: See TracTickets for help on using tickets.