GNOME Bugzilla – Bug 785612
gthumb slideshow extension trying to use non-existent gsettingsaudiosink as playbin audio-sink
Last modified: 2017-07-31 08:50:46 UTC
extensions/slideshow/gth-slideshow.c does g_object_set (self->priv->playbin, "audio-sink", gst_element_factory_make ("gsettingsaudiosink", "audiosink"), "flags", _GST_PLAY_FLAG_AUDIO, "volume", 1.0, NULL); But gsettingsaudiosink isn't a thing in gstreamer-1.0+. No idea what the effect of it to the slideshow extension is though, but this code is in both 3.4 branch and master.
(In reply to Mart Raudsepp from comment #0) > extensions/slideshow/gth-slideshow.c does > > g_object_set (self->priv->playbin, > "audio-sink", gst_element_factory_make ("gsettingsaudiosink", > "audiosink"), > "flags", _GST_PLAY_FLAG_AUDIO, > "volume", 1.0, > NULL); > > But gsettingsaudiosink isn't a thing in gstreamer-1.0+. replaced with autoaudiosink > > No idea what the effect of it to the slideshow extension is though, but this > code is in both 3.4 branch and master. in the catalog properties you can specify a series of audio files to play during a slideshow.
Then there should be no reason to set any - that's generally the default, unless gst-plugins-base gets built with a different --with-default-audiosink=...; but in this case you probably want to honor that in gthumb as well, via not overriding it.
(In reply to Mart Raudsepp from comment #2) > Then there should be no reason to set any - that's generally the default, > unless gst-plugins-base gets built with a different > --with-default-audiosink=...; but in this case you probably want to honor > that in gthumb as well, via not overriding it. ok, thank you.