After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 170499 - spider no decode some .mp3
spider no decode some .mp3
Status: RESOLVED INVALID
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
0.8.0
Other All
: Normal normal
: 0.8.10
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-03-15 21:18 UTC by jose gonzalez monlleo
Modified: 2005-03-17 17:54 UTC
See Also:
GNOME target: ---
GNOME version: 2.9/2.10


Attachments
log of spider (115.83 KB, application/x-bzip)
2005-03-16 21:43 UTC, jose gonzalez monlleo
Details

Description jose gonzalez monlleo 2005-03-15 21:18:15 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
Comment 1 Tim-Philipp Müller 2005-03-16 16:05:14 UTC
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
Comment 2 jose gonzalez monlleo 2005-03-16 18:18:51 UTC
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
Comment 3 Tim-Philipp Müller 2005-03-16 21:30:49 UTC
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

Comment 4 jose gonzalez monlleo 2005-03-16 21:43:07 UTC
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
Comment 5 Tim-Philipp Müller 2005-03-17 10:37:26 UTC
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
Comment 6 jose gonzalez monlleo 2005-03-17 11:19:42 UTC
rm ~/.gstreamer-0.8/registry.xml
gst-register-0.8 

now, work fine, very thanks :)