<div dir="ltr"><div><div><div>Hi:<br><br>I have a audiomixer element in my pipeline, and others elements linked into that<br>but now I want to change de volume of any audiosource connected to a audiomixer<br><br>        gst_bin_add(GST_BIN(pipeline), source->get_bin());<br>        GstPad *mixer_pad = gst_element_request_pad (audiomixer, mix_template, NULL, NULL);<br>        GstPad *a_pad = gst_element_get_static_pad(source->get_bin(), "audiosrc");<br>        if (gst_pad_link (a_pad, mixer_pad) != GST_PAD_LINK_OK ){<br>                 g_critical ("link audio source to audiomixer failed.\n");<br>                 exit(1);<br>         }<br><br>for example<br><br>filesrc -> decodbin -> queue -> audiomixer (sink0)<br><br>filesrc2 .....                               -> audiomixer(sink1)<br>....<br>....<br>...                                               -> audiomixer (sinkn)<br>My question is , how to set mute all sink less sink2 o sink3 , or set a volume property in 4 of the sink2 pad<br><br>thanks<br><br></div></div></div></div>