Comment 6 for bug 1179073

Revision history for this message
Romain Bar (romainbeha-r) wrote :

The GStreamer audio source are mono by default (one channel, must set 2).
Updating the two following lines in file 'gstreamer.py' fixes that:

 self.aud_caps = Gst.caps_from_string("audio/x-raw")
 self.aud2_caps = Gst.caps_from_string("audio/x-raw")

to replace with:

 self.aud_caps = Gst.caps_from_string("audio/x-raw,channels=2")
 self.aud2_caps = Gst.caps_from_string("audio/x-raw,channels=2")