GNOME Bugzilla – Bug 170499
spider no decode some .mp3
Last modified: 2005-03-17 17:54:21 UTC
Please describe the problem: some mp3 don't play witch gstreamer, (http://ikossi.org/~pepe/pista%2001.mp3) gst-launch-0.8 filesrc location=pista\ 01.mp3 ! spider ! esdsink don's play song. the next code either play song #include <gst/gst.h> #include <glib-object.h> #include <glib.h> #include <gst/control/control.h> main (gint argc, gchar * argv[]) { GstElement *pipeline, *source, *decoder, *sink; gst_init (NULL, NULL); pipeline = gst_pipeline_new ("pipeline"); source = gst_element_factory_make ("filesrc", "file-source"); decoder = gst_element_factory_make ("spider", "decoder"); sink = gst_element_factory_make ("esdsink", "stream"); g_object_set (G_OBJECT (source), "location", argv[1], NULL); gst_bin_add_many (GST_BIN (pipeline), source, decoder, sink, NULL); gst_element_link_many (source, decoder, sink, NULL); gst_element_set_state (pipeline, GST_STATE_PLAYING); while (gst_bin_iterate (GST_BIN (pipeline))); gst_element_set_state (pipeline, GST_STATE_NULL); gst_object_unref (GST_OBJECT (pipeline)); } Steps to reproduce: 1.always 2. 3. Actual results: Expected results: Does this happen every time? always Other information: no
Works fine here. Does gst-launch-0.8 filesrc location=pista\ 01.mp3 ! spider ! esdsink show an error? If so, what is it? Or what is the output? What does gst-launch-0.8 --gst-version print? What does gst-inspect-0.8 mad | grep Version print? Cheers -Tim
gst-launch-0.8 filesrc location=pista\ 01.mp3 ! spider ! esdsink RUNNING pipeline ... Execution ended after 60 iterations (sum 1409448000 ns, average 23490800 ns, min 24000 ns, max 261481000 ns). listen "psssssssssssssssssssssssssssss" gst-launch-0.8 --gst-version GStreamer Core Library version 0.8.9 gst-inspect-0.8 mad | grep Version Version: 0.8.8 gst-launch-0.8 filesrc location=pista\ 01.mp3 ! mad ! esdsink work fine The problem is spider, mad works fine. gst-inspect-0.8 spider | grep Version Version: 0.8.9
In that case, could you run gst-launch-0.8 --gst-debug=*:5 --gst-debug-no-color filesrc location=pista\ 01.mp3 ! spider ! spider 2> &1 | bzip2 > log.bz2 and attach the log.bz2 file? However, it's unlikely that anyone is going to fix spider, as spider isn't maintained any longer. It has been replaced by decodebin. You might want to try that first. Cheers -Tim
Created attachment 38809 [details] log of spider this is a result of gst-launch-0.8 --gst-debug=*:5 --gst-debug-no-color filesrc location=pista\ 01.mp3 ! spider ! spider 2>&1 | bzip2 > log.bz2
Hmm, it seems to plug a second spider. Also, it finds 'id3demux' for application/x-id3 and not 'id3demuxbin' (but apparently doesn't use it). Could you check with gst-inspect-0.8: * whether you have an 'id3demuxbin' element? - if yes, what rank does it have? - if not, please install the package that has it and try again. * what rank the 'id3demux' element has? (Should be: None) Is it possible that you have a mix of gst-plugins packages from different gst-plugins versions installed on your system? What's the output of gst-inspect-0.8 -a | grep Version | grep -v 0.8.9 | grep -v 0.8.8 (it's okay if plugins show up there, just depends which ones it is) Also, could you try * rm ~/.gstreamer-0.8/registry.xml * run gst-register-0.8 as root/superuser just to make sure that doesn't interfere for some reason. Cheers -Tim
rm ~/.gstreamer-0.8/registry.xml gst-register-0.8 now, work fine, very thanks :)