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 602629 - Multiple audio streams in random order
Multiple audio streams in random order
Status: RESOLVED NOTABUG
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
0.10.x
Other Linux
: Normal normal
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-11-22 10:35 UTC by P.Y. Rollo
Modified: 2009-12-01 13:11 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description P.Y. Rollo 2009-11-22 10:35:35 UTC
When playing a URI containing several audio stream, they are in a random order. Launching several times the same pipelines results in hearing different streams.

I tried that using french Freebox providing RTSP streams. Each URI has 6 audio streams (corresponding to 6 different radio stations) and one video stream (for "decorative" purpose). When launching this command :

gst-launch playbin uri="rtsp://mafreebox.freebox.fr/fbxtv_pub/stream?namespace=1&service=100006"

I get randomly one of the six radio station from this URI.

I tried to change the "current-audio" property using gst-python and I got the same random order problem : for example, setting current-audio to 3 will give a random station for each start.
Comment 1 Sebastian Dröge (slomo) 2009-12-01 13:11:45 UTC
The order of the audio streams are given by the order in which they have decodeable data. You should distinguish them by their tags instead of looking at the random stream number.

(Also you should use playbin2 nowadays but that's another story :) )