<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi all.<br>
    <br>
    I have many TV streams (Mpeg2) in udp multicast.<br>
    I want to have stream in H264+AAC in udp multicast with 3
    resolutions: 1:1 (original),1:2,1:4. Now I do it with 3 processes of
    gst-launch, but for optimization of CPU usage I think I can do it in
    one process.<br>
    After several tries I get 3 videos with 3 resolutions, but i can't
    get audio for all threads, only for one.<br>
    I'm using gstreamer 1.00+ version:<br>
    $ gst-launch-1.0 --version<br>
    gst-launch-1.0 version 1.8.3<br>
    GStreamer 1.8.3<br>
    <br>
    My configuration:<br>
    <code class="java plain">gst-launch-</code><code class="java value">1.0</code>
    <code class="java plain">udpsrc uri=udp:</code><code class="java
      comments">//239.50.50.50:1234 ! queue ! tsparse ! queue ! tsdemux
      name=demux \<br>
      demux. ! queue ! mpegvideoparse ! queue ! decodebin ! queue !
      deinterlace ! \<br>
      tee name=tee1 ! queue ! videoscale method=0 ! videorate !
      video/x-raw, width=640, height=512, framerate=25/1 ! x264enc !
      h264parse ! mpegtsmux name=muxer alignment=7 \<br>
      demux. ! queue !  decodebin ! queue ! audioconvert ! audioresample
      ! queue ! audio/x-raw, rate=48000, channels=1 ! audiorate !
      voaacenc bitrate=32000 ! queue ! aacparse ! queue ! tee name=tee2
      ! queue ! muxer. \<br>
      muxer. ! rtpmp2tpay ! udpsink host=127.0.0.1 port=1111 \<br>
      tee1. ! queue ! videoscale method=0 ! videorate ! video/x-raw,
      width=320, height=256, framerate=25/1 ! x264enc ! h264parse !
      mpegtsmux name=muxer1 alignment=7 muxer1. ! rtpmp2tpay ! udpsink
      host=127.0.0.1 port=1112 \<br>
      tee1. ! queue ! videoscale method=0 ! videorate ! video/x-raw,
      width=160, height=128, framerate=25/1 ! x264enc ! h264parse !
      mpegtsmux name=muxer2 alignment=7 muxer2. ! rtpmp2tpay ! udpsink
      host=127.0.0.1 port=1113</code><br>
    <br>
    I can't join mpedtsmux and tee.<br>
    <br>
    So I want to decode video, get 3 copies, each copy scale to some
    resolution, encode, decode + encode audio and join to each copy of
    video, output each copy in udp unicast to some port.<br>
    <br>
    Help, maybe someone have working solution for my task.<br>
  </body>
</html>