Package: decibel-audio-player Version: 1.00-1 Severity: normal Tags: patch *** Please type your report below this line *** Recent versions of sound-juicer create audio Ogg files with .oga extension instead of the traditional .ogg, but decibel-audio-player only scans for the later.
-- System Information: Debian Release: 5.0 APT prefers stable APT policy: (500, 'stable'), (100, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.26-1-686 (SMP w/4 CPU cores) Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages decibel-audio-player depends on: ii python 2.5.2-3 An interactive high-level object-o ii python-central 0.6.8 register and build utility for Pyt ii python-dbus 0.83.0-1 simple interprocess messaging syst ii python-glade2 2.12.1-6 GTK+ bindings: Glade support ii python-gst0.10 0.10.12-1.1 generic media-playing framework (P ii python-gtk2 2.12.1-6 Python bindings for the GTK+ widge ii python-mutagen 1.14-2 audio metadata editing library Versions of packages decibel-audio-player recommends: ii python-cddb 1.4-5.1+b1 Python interface to CD-IDs and Fre pn python-gnome2-desktop <none> (no description available) ii python-notify 0.1.1-2+b1 Python bindings for libnotify decibel-audio-player suggests no packages. -- no debconf information
--- src/media/__init__.py.orig 2008-11-23 09:02:34.000000000 -0500 +++ src/media/__init__.py 2009-04-07 09:03:55.000000000 -0400 @@ -25,7 +25,7 @@ # Supported formats with associated modules -mFormats = {'.flac': flac, '.m4a': mp4, '.mp3': mp3, '.mp4': mp4, '.mpc': mpc,'.ogg': ogg, '.wma': asf} +mFormats = {'.flac': flac, '.m4a': mp4, '.mp3': mp3, '.mp4': mp4, '.mpc': mpc,'.ogg': ogg, '.oga': ogg, '.wma': asf} def isSupported(file):