<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi<br>
    <br>
    I'm originating calls from (mod_sofia's) internal to external
    profile and joining them into a conference.<br>
    The purpose is to play multiple video streams in a conference and
    consume the resulting canvas by a single VERTO RTC caller.<br>
    My setup works but there's a LOT useless RTP traffic (lo) coming
    from the conference to the video playback channels.<br>
    Is there any way to disable the audio/video conference feedback to
    those play-only video channels? <br>
    Perhaps an existing channel variable that I've missed, or some way
    to tweak the SDP and put a sendonly for audio and video?<br>
    <br>
    My setup is (on top of the vanilla config):<br>
    <br>
    sofia status<tt><br>
    </tt><tt>                     Name         
      Type                                       Data      State</tt><tt><br>
    </tt><tt>=================================================================================================</tt><tt><br>
                       external       profile           <a
        class="moz-txt-link-freetext"
        href="sip:mod_sofia@192.168.1.110:5080">sip:mod_sofia@192.168.1.110:5080</a>     
      RUNNING (1)<br>
    </tt><tt>                 internal       profile           <a
        class="moz-txt-link-freetext"
        href="sip:mod_sofia@192.168.1.110:5060">sip:mod_sofia@192.168.1.110:5060</a>     
      RUNNING (0)</tt><tt><br>
    </tt><tt>=================================================================================================</tt><tt><br>
    </tt><br>
    dialplan/default.xml<br>
    <tt>&lt;extension name="rtsp stream from buggy IP camera"&gt;</tt><tt><br>
    </tt><tt>        &lt;condition field="destination_number"
      expression="3600"&gt;</tt><tt><br>
    </tt><tt>                &lt;action application="answer" /&gt;</tt><tt><br>
    </tt><tt>                &lt;action application="playback"
data="av://rtsp://192.168.1.10/user=admin&amp;password=&amp;channel=1&amp;stream=0.sdp?"
      /&gt;</tt><tt><br>
    </tt><tt>        &lt;/condition&gt;</tt><tt><br>
    </tt><tt>&lt;/extension&gt;</tt><tt><br>
    </tt><tt><br>
    </tt><tt>&lt;extension name="static mp4 file"&gt;</tt><tt><br>
    </tt><tt>        &lt;condition field="destination_number"
      expression="3601"&gt;</tt><tt><br>
    </tt><tt>                &lt;action application="answer" /&gt;</tt><tt><br>
    </tt><tt>                &lt;action application="playback"
      data="av:///var/www/vid/055_640.mp4" /&gt;</tt><tt><br>
    </tt><tt>        &lt;/condition&gt;</tt><tt><br>
    </tt><tt>&lt;/extension&gt;</tt><tt><br>
    </tt><br>
    dialplan/public.xml<br>
    <tt>    &lt;extension name="public_extensions"&gt;</tt><tt><br>
    </tt><tt>      &lt;condition field="destination_number"
      expression="^(\d{4})$"&gt;</tt><tt><br>
    </tt><tt>        &lt;action application="transfer" data="$1 XML
      default"/&gt;</tt><tt><br>
    </tt><tt>      &lt;/condition&gt;</tt><tt><br>
    </tt><tt>    &lt;/extension&gt;</tt><br>
    <br>
    CLI (add 2 video streams to an existing conference)<br>
    <tt>originate <a class="moz-txt-link-abbreviated"
        href="mailto:sofia/internal/3600@192.168.1.110:5080">sofia/internal/3600@192.168.1.110:5080</a>
      &amp;conference(3500-192.168.1.110)</tt><tt><br>
    </tt><tt>originate <a class="moz-txt-link-abbreviated"
        href="mailto:sofia/internal/3601@192.168.1.110:5080">sofia/internal/3601@192.168.1.110:5080</a>
      &amp;conference(3500-192.168.1.110)</tt><tt><br>
    </tt><br>
    Thanks<br>
    <br>
    <br>
    <div class="moz-cite-prefix">Em 14/11/2016 22:08, Abaci B escreveu:<br>
    </div>
    <blockquote
cite="mid:CAFmZFiONH3L2TbZw8fc9OHFUxq_TgJ5r-oeNK0EKiMbK-QGzBA@mail.gmail.com"
      type="cite">
      <div dir="ltr">you can have 2 sip profiles and use originate to
        create the calls going from 1 profile to the other (one can
        listen o local ip if it helps)</div>
      <div class="gmail_extra"><br>
        <div class="gmail_quote">On Mon, Nov 14, 2016 at 6:39 PM, Saumar
          Hajjar <span dir="ltr">&lt;<a moz-do-not-send="true"
              href="mailto:saumar@uol.com.br" target="_blank">saumar@uol.com.br</a>&gt;</span>
          wrote:<br>
          <blockquote class="gmail_quote" style="margin:0 0 0
            .8ex;border-left:1px #ccc solid;padding-left:1ex">
            <div text="#000000" bgcolor="#FFFFFF"> Thanks Anthony,<br>
              <br>
              For your second suggestion, is it possible to "loop a call
              into the conference with SIP on the same box" using just
              CLI commands - or do I need a external SIP client for
              this?
              <div>
                <div class="h5"><br>
                  <br>
                  <div class="m_2537123661856923470moz-cite-prefix">Em
                    14/11/2016 20:11, Anthony Minessale escreveu:<br>
                  </div>
                  <blockquote type="cite">
                    <div dir="ltr">Your only real option is make the
                      calls from another box or loop them into the
                      conference with SIP on the same box.
                      <div>The conference file playing mechanism is not
                        designed for simultaneous files to play.</div>
                      <div><br>
                      </div>
                      <div><br>
                      </div>
                    </div>
                    <div class="gmail_extra"><br>
                      <div class="gmail_quote">On Thu, Nov 10, 2016 at
                        12:00 PM, Saumar Hajjar <span dir="ltr">&lt;<a
                            moz-do-not-send="true"
                            href="mailto:saumar@uol.com.br"
                            target="_blank">saumar@uol.com.br</a>&gt;</span>
                        wrote:<br>
                        <blockquote class="gmail_quote" style="margin:0
                          0 0 .8ex;border-left:1px #ccc
                          solid;padding-left:1ex">Hi,<br>
                          <br>
                          I'm working in a PoC and I'm considering FS.<br>
                          <br>
                          I'd like to create a conference and have
                          several video files playing<br>
                          simultaneously in the canvas.<br>
                          I already tried: conference name play
                          av:///var/www/vid/video.mp4 and it<br>
                          works great.<br>
                          But I need multiple files playing and
                          apparently the above command<br>
                          queues a video file (or freezes if it's a rtsp
                          stream... Later I'll<br>
                          confirm this and file a Jira)<br>
                          <br>
                          I also tried creating a loopback leg, joining
                          the conference, and<br>
                          playing a video just to this particular
                          member. But it fails because the<br>
                          member doesn't support video.<br>
                          <br>
                          Basically I'd like to do something like the
                          examples found at the bottom<br>
                          of<br>
                          <a moz-do-not-send="true"
href="https://freeswitch.org/confluence/display/FREESWITCH/FreeSWITCH+1.6+Video"
                            target="_blank" rel="noreferrer">https://freeswitch.org/conflue<wbr>nce/display/FREESWITCH/FreeSWI<wbr>TCH+1.6+Video</a>.<br>
                          Probably I'm missing some trivial stuff... I
                          really appreciate any<br>
                          advice on this.<br>
                          <br>
                          Thanks in advance,<br>
                          <br>
                          Saumar<br>
                          <br>
                          ______________________________<wbr>______________________________<wbr>_____________<br>
                          Professional FreeSWITCH Consulting Services:<br>
                          <a moz-do-not-send="true"
                            href="mailto:consulting@freeswitch.org"
                            target="_blank">consulting@freeswitch.org</a><br>
                          <a moz-do-not-send="true"
                            href="http://www.freeswitchsolutions.com"
                            target="_blank" rel="noreferrer">http://www.freeswitchsolutions<wbr>.com</a><br>
                          <br>
                          Official FreeSWITCH Sites<br>
                          <a moz-do-not-send="true"
                            href="http://www.freeswitch.org"
                            target="_blank" rel="noreferrer">http://www.freeswitch.org</a><br>
                          <a moz-do-not-send="true"
                            href="http://confluence.freeswitch.org"
                            target="_blank" rel="noreferrer">http://confluence.freeswitch.o<wbr>rg</a><br>
                          <a moz-do-not-send="true"
                            href="http://www.cluecon.com"
                            target="_blank" rel="noreferrer">http://www.cluecon.com</a><br>
                          <br>
                          FreeSWITCH-users mailing list<br>
                          <a moz-do-not-send="true"
                            href="mailto:FreeSWITCH-users@lists.freeswitch.org"
                            target="_blank">FreeSWITCH-users@lists.freeswi<wbr>tch.org</a><br>
                          <a moz-do-not-send="true"
                            href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users"
                            target="_blank" rel="noreferrer">http://lists.freeswitch.org/ma<wbr>ilman/listinfo/freeswitch-user<wbr>s</a><br>
                          UNSUBSCRIBE:<a moz-do-not-send="true"
                            href="http://lists.freeswitch.org/mailman/options/freeswitch-users"
                            target="_blank" rel="noreferrer">http://lists.frees<wbr>witch.org/mailman/options/<wbr>freeswitch-users</a><br>
                          <a moz-do-not-send="true"
                            href="http://www.freeswitch.org"
                            target="_blank" rel="noreferrer">http://www.freeswitch.org</a><br>
                        </blockquote>
                      </div>
                      <br>
                      <br clear="all">
                      <div><br>
                      </div>
                      -- <br>
                      <div class="m_2537123661856923470gmail_signature"
                        data-smartmail="gmail_signature">
                        <div dir="ltr">
                          <div>
                            <div dir="ltr">
                              <div>
                                <div dir="ltr">Anthony Minessale II    
                                    ♬ @anthmfs  ♬ @FreeSWITCH  ♬
                                  <div><br>
                                    <div>☞ <a moz-do-not-send="true"
                                        href="http://freeswitch.org/"
                                        target="_blank">http://freeswitch.org/</a>
                                       ☞ <a moz-do-not-send="true"
                                        href="http://cluecon.com/"
                                        target="_blank">http://cluecon.com/</a>
                                       ☞ <a moz-do-not-send="true"
                                        href="http://twitter.com/FreeSWITCH"
                                        target="_blank">http://twitter.com/FreeSWITCH</a></div>
                                    <div>
                                      <div>☞ <a moz-do-not-send="true"
                                          href="http://irc.freenode.net"
                                          target="_blank">irc.freenode.net</a>
                                        #freeswitch ☞ <u><a
                                            moz-do-not-send="true"
                                            href="http://freeswitch.org/g+"
                                            target="_blank">http://freeswitch.org/g+</a></u><br>
                                        <br>
                                      </div>
                                      <div>ClueCon Weekly Development
                                        Call <br>
                                      </div>
                                      <div>☎ <a moz-do-not-send="true"
                                          href="mailto:sip%3A888@conference.freeswitch.org"
                                          target="_blank">sip:888@conference.<wbr>freeswitch.org</a>
                                         ☎ <a moz-do-not-send="true"
                                          href="tel:%2B19193869900"
                                          target="_blank"
                                          value="+19193869900">+19193869900</a> </div>
                                      <div><br>
                                      </div>
                                    </div>
                                  </div>
                                  <div><a moz-do-not-send="true"
                                      style="color:rgb(17,85,204);font-size:12.8000001907349px"
href="https://www.youtube.com/watch?v=9XXgW34t40s" target="_blank">https://www.youtube.com/watch?<wbr>v=9XXgW34t40s</a></div>
                                  <div><a moz-do-not-send="true"
                                      href="https://www.youtube.com/watch?v=NLaDpGQuZDA"
                                      target="_blank">https://www.youtube.com/watch?<wbr>v=NLaDpGQuZDA</a><br>
                                  </div>
                                </div>
                              </div>
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>
                    <br>
                    <fieldset
                      class="m_2537123661856923470mimeAttachmentHeader"></fieldset>
                    <br>
                    <pre>______________________________<wbr>______________________________<wbr>_____________
Professional FreeSWITCH Consulting Services: 
<a moz-do-not-send="true" class="m_2537123661856923470moz-txt-link-abbreviated" href="mailto:consulting@freeswitch.org" target="_blank">consulting@freeswitch.org</a>
<a moz-do-not-send="true" class="m_2537123661856923470moz-txt-link-freetext" href="http://www.freeswitchsolutions.com" target="_blank">http://www.<wbr>freeswitchsolutions.com</a>

Official FreeSWITCH Sites
<a moz-do-not-send="true" class="m_2537123661856923470moz-txt-link-freetext" href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a>
<a moz-do-not-send="true" class="m_2537123661856923470moz-txt-link-freetext" href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.<wbr>org</a>
<a moz-do-not-send="true" class="m_2537123661856923470moz-txt-link-freetext" href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a>

FreeSWITCH-users mailing list
<a moz-do-not-send="true" class="m_2537123661856923470moz-txt-link-abbreviated" href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.<wbr>freeswitch.org</a>
<a moz-do-not-send="true" class="m_2537123661856923470moz-txt-link-freetext" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a>
UNSUBSCRIBE:<a moz-do-not-send="true" class="m_2537123661856923470moz-txt-link-freetext" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.<wbr>freeswitch.org/mailman/<wbr>options/freeswitch-users</a>
<a moz-do-not-send="true" class="m_2537123661856923470moz-txt-link-freetext" href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a></pre>
    </blockquote>
    

  </div></div></div>


______________________________<wbr>______________________________<wbr>_____________

Professional FreeSWITCH Consulting Services:

<a moz-do-not-send="true" href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a>

<a moz-do-not-send="true" href="http://www.freeswitchsolutions.com" target="_blank" rel="noreferrer">http://www.<wbr>freeswitchsolutions.com</a>



Official FreeSWITCH Sites

<a moz-do-not-send="true" href="http://www.freeswitch.org" target="_blank" rel="noreferrer">http://www.freeswitch.org</a>

<a moz-do-not-send="true" href="http://confluence.freeswitch.org" target="_blank" rel="noreferrer">http://confluence.freeswitch.<wbr>org</a>

<a moz-do-not-send="true" href="http://www.cluecon.com" target="_blank" rel="noreferrer">http://www.cluecon.com</a>



FreeSWITCH-users mailing list

<a moz-do-not-send="true" href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.<wbr>freeswitch.org</a>

<a moz-do-not-send="true" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank" rel="noreferrer">http://lists.freeswitch.org/<wbr>mailman/listinfo/freeswitch-<wbr>users</a>

UNSUBSCRIBE:<a moz-do-not-send="true" href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank" rel="noreferrer">http://lists.<wbr>freeswitch.org/mailman/<wbr>options/freeswitch-users</a>

<a moz-do-not-send="true" href="http://www.freeswitch.org" target="_blank" rel="noreferrer">http://www.freeswitch.org</a>
</blockquote></div>
</div>


<fieldset class="mimeAttachmentHeader"></fieldset>
<pre wrap="">_________________________________________________________________________
Professional FreeSWITCH Consulting Services: 
<a class="moz-txt-link-abbreviated" href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a>
<a class="moz-txt-link-freetext" href="http://www.freeswitchsolutions.com">http://www.freeswitchsolutions.com</a>

Official FreeSWITCH Sites
<a class="moz-txt-link-freetext" href="http://www.freeswitch.org">http://www.freeswitch.org</a>
<a class="moz-txt-link-freetext" href="http://confluence.freeswitch.org">http://confluence.freeswitch.org</a>
<a class="moz-txt-link-freetext" href="http://www.cluecon.com">http://www.cluecon.com</a>

FreeSWITCH-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a>
<a class="moz-txt-link-freetext" href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a>
UNSUBSCRIBE:<a class="moz-txt-link-freetext" href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a>
<a class="moz-txt-link-freetext" href="http://www.freeswitch.org">http://www.freeswitch.org</a></pre>

</blockquote>

</body></html>