[gstreamer-bugs] [Bug 170499] New: spider no decode some .mp3

bugzilla-daemon at bugzilla.gnome.org bugzilla-daemon at bugzilla.gnome.org
Tue Mar 15 13:18:15 PST 2005


Please DO NOT reply to this by email. All additional comments should be made in
the comments box of this bug report.

 http://bugzilla.gnome.org/show_bug.cgi?id=170499
 GStreamer | gstreamer (core) | Ver: 0.8.0

           Summary: spider no decode some .mp3
           Product: GStreamer
           Version: 0.8.0
          Platform: Other
        OS/Version: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: Normal
         Component: gstreamer (core)
        AssignedTo: gstreamer-bugs at lists.sourceforge.net
        ReportedBy: pepelinux at gmail.com
         QAContact: gstreamer-bugs at lists.sourceforge.net
                CC: all-bugs at bugzilla.gnome.org


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

------- You are receiving this mail because: -------
You are the assignee for the bug.
You are the QA contact for the bug.




More information about the Gstreamer-bugs mailing list