<div dir="ltr"><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>Hi guys,<br><br>I use the module GStreamer gstcefsrc (<a href="https://github.com/centricular/gstcefsrc">https://github.com/centricular/gstcefsrc</a>) to grab a website and generate an audio and video stream. This module is based on an embedded version of chromium (CEF aka embedded chromium).<br><br>My problem is related I think about the structure of my pipeline.<br><br>Indeed, this module GStreamer generates a stream containing audio and video.<br><br>Needing to transcode audio in AAC and video in H264, I demux via a second module cefdemux.<br><br>Once both A / V streams are transcoded and synchronized, I need to send them via RTMP (rtmpsink) or RTSP (rtspclientsink).<br><br>The video goes well but the sound is a problem because nothing happens.<br><br>My actual pipeline is as follows:<br><br>gst-launch-1.0 cefsrc url="<a href="https://soundcloud.com/platform/sama">https://soundcloud.com/platform/sama</a>" ! queue ! <br>cefdemux name=d d.video ! video/x-raw,format=BGRA,framerate=30/1 ! queue ! videoconvert ! x264enc bitrate=2500 tune=zerolatency pass=5 quantizer=22 speed-preset=superfast key-int-max=60 ref=2 <br>! mux. d.audio ! audio/x-raw ! audiorate ! queue ! audioconvert ! voaacenc bitrate=128000 ! flvmux streamable=true name=mux ! rtmpsink location="rtmp://<a href="http://live-cdg.twitch.tv/app/live_452136974_6g1fEZ7RxsMwVE6ADeOiVLuegDAm9w">live-cdg.twitch.tv/app/live_452136974_6g1fEZ7RxsMwVE6ADeOiVLuegDAm9w</a>"<br><br>It does not work!<br><br>If I test with another audio test source it works:<br><br>gst-launch-1.0 cefsrc url="<a href="https://soundcloud.com/platform/sama">https://soundcloud.com/platform/sama</a>" ! queue ! <br>cefdemux name=d d.video ! video/x-raw,format=BGRA,framerate=30/1 ! queue ! videoconvert ! x264enc bitrate=2500 tune=zerolatency pass=5 quantizer=22 speed-preset=superfast key-int-max=60 ref=2 <br>! mux. audiotestsrc ! audio/x-raw ! audiorate ! queue ! audioconvert ! voaacenc bitrate=128000 ! flvmux streamable=true name=mux ! rtmpsink location="rtmp://<a href="http://live-cdg.twitch.tv/app/live_452136974_6g1fEZ7RxsMwVE6ADeOiVLuegDAm9w">live-cdg.twitch.tv/app/live_452136974_6g1fEZ7RxsMwVE6ADeOiVLuegDAm9w</a>"<br><br>What can be my problem?<br><br>Thank you in advance for your return.<br><br>BR<br><br>Thierry<br></div></div></div></div>