Hi!

Freevo wasn't able to display more than 999 seconds (16:38) of elapsed audio playing time. The reason was the parser expected a space before the elapsed seconds output, but this disappeared when the seconds got to 1000.

CVS patch is attached.

Best regards,

Urmet.
Index: src/audio/plugins/mplayer.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/audio/plugins/mplayer.py,v
retrieving revision 1.8
diff -r1.8 mplayer.py
256c256
<         self.RE_TIME = re.compile("^A: +([0-9]+)").match
---
>         self.RE_TIME = re.compile("^A: *([0-9]+)").match

Reply via email to