Hi !
I'm using gstreamer on iMx6 platform, and I need to stream a video source with an audio source together via ethernet.
I'm using the following pipeline where I take a video file (iMX6.mp4) and an audio file (yb.mp3) muxed together and sinked by tcpserversink.
gst-launch filesrc location=/demo/iMX6.mp4 typefind=true ! aiurdemux ! queue ! vpudec ! vpuenc codec=6 ! queue ! mux. filesrc location=/yb.mp3 typefind=true ! beepdec ! audioconvert ! 'audio/x-raw-int, channels=2' ! mfw_mp3encoder ! queue ! mux. mpegtsmux name=mux ! queue ! tcpserversink host=192.168.2.62 port=5000
When I try to reproduce the streaming with VLC (opening tcp://192.168.2.62:5000) I hear only the mp3 file without video.
Where am I wrong ?