GNOME Bugzilla – Bug 404544
Should use gstreamer-gconf music profile
Last modified: 2007-02-05 10:54:57 UTC
This bug was reported to the Debian BTS. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=409493 "The gconf gstreamer plugin has a notion of profile for audio output. There is currently default/sounds, music and chat. While rhythmbox uses the music profile, totem does use the default one. I think it should use the music profile instead, see the musicaudiosink key description from gconf: GStreamer audiosink for Music and Movies Sounds exactly like what totem does, doesn't it ?"
This is already the case in totem SVN trunk, see bacon_video_widget_new(): audio_sink = gst_element_factory_make ("gconfaudiosink", "audio-sink"); if (audio_sink == NULL) { g_warning ("Could not create element 'gconfaudiosink'"); /* Try to fallback on autoaudiosink */ audio_sink = gst_element_factory_make ("autoaudiosink", "audio-sink"); } else { /* set the profile property on the gconfaudiosink to "music and movies" */ if (g_object_class_find_property (G_OBJECT_GET_CLASS (audio_sink), "profile")) g_object_set (G_OBJECT (audio_sink), "profile", 1, NULL); } Fixed by this commit: 2006-11-26 Bastien Nocera <hadess@hadess.net> * src/backend/bacon-video-widget-gst-0.10.c: (bacon_video_widget_new): Set the profile property on the audio sink so it respects the GNOME settings for audio output