[asterisk-users] Support for IP Camera streaming (RTSP) channel to a conference

2012-12-02 Thread Deepak Hegde
Hello,

I am trying to stream an IP Camera output (h264) into a conference. The IP 
Camera supports RTSP. 
Searching around the web, I believe the RTSP support (was) available through 
app_rtsp (external to Asterisk distribution).
This, I believe, has problems and has issues compiling in Asterisk 11 (I tried 
compiling it in Asterisk 11 and it failed).
I may not be able to use DiaStar or i6net's VXI etc as the hardware is a low 
end appliance with limited resources.


Would anybody be able to suggest how to go about it?

 
Warm Regards,
Deepak
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] Support for IP Camera streaming (RTSP) channel to a conference

2012-12-02 Thread Matt Riddell
On 3/12/2012, at 3:55 AM, Deepak Hegde deepak...@yahoo.com wrote:
 Hello,
 
 I am trying to stream an IP Camera output (h264) into a conference. The IP 
 Camera supports RTSP. 
 Searching around the web, I believe the RTSP support (was) available through 
 app_rtsp (external to Asterisk distribution).
 This, I believe, has problems and has issues compiling in Asterisk 11 (I 
 tried compiling it in Asterisk 11 and it failed).
 I may not be able to use DiaStar or i6net's VXI etc as the hardware is a low 
 end appliance with limited resources.
 
 
 Would anybody be able to suggest how to go about it?


You're probably better off asking in the Asterisk-Video mailing list.

Probably best to ask Sergio :-)

--
Cheers,

Matt Riddell
___

http://www.venturevoip.com/news.php (Daily Asterisk News)
http://www.venturevoip.com/pabx_on_disk.php (PABX on a Disk)
http://www.venturevoip.com/exchange.php (Full ITSP Solution)
http://www.venturevoip.com/cc.php (Call Centre Solutions)






--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Impromptu conferencing

2012-12-02 Thread Brandon B.
The feature can be enabled on outbound and inbound calls by connecting both
channels of a connected call to a conference room after the connection is
made. This accomplishes your need to not do anything vs. giving the called
person instructions, transferring the call to a conference room and then
dialing into it immediately. For example, if the conference room is 999 for
phone 999, and phone 999 uses the context [all-outbound-for-999] for
outbound calls and [all-inbound-for-999], then:

[all-outbound-for-999]
; outbound dialing through a conference room
exten = _NXXNXX,1,MeetMeCount(999,COUNT-999);
exten = _NXXNXX,2,GotoIf($[${COUNT-999}=1]?10);
exten = _NXXNXX,3,Set(CALLERID(num)=555999);
exten = _NXXNXX,4,Set(CALLERID(name)=Phone 999);
exten = _NXXNXX,5,Dial(${TRUNK}/${EXTEN},99,G(6));
exten = _NXXNXX,6,MeetMe(999,FAqx);
exten = _NXXNXX,7,MeetMe(999,Fqx);

; bypass the conference room for multiple outbound calls
exten = _NXXNXX,10,Set(CALLERID(num)=555999);
exten = _NXXNXX,11,Set(CALLERID(name)=Phone 999);
exten = _NXXNXX,12,Dial(${TRUNK}/${EXTEN});

[all-inbound-for-999]
; inbound extension through a conference room
exten = 999,1,MeetMeCount(999,COUNT-999);
exten = 999,2,GotoIf($[${COUNT-999}=1]?10);
exten = 999,3,Dial(SIP/99,999,G(6));
exten = 999,4,Hangup;
exten = 999,6,MeetMe(999,FAqx);
exten = 999,7,MeetMe(999,Fqx);

; bypass the conference room for multiple inbound calls
exten = 999,10,Dial(SIP/999);



On Thu, Nov 8, 2012 at 2:01 AM, martin f krafft madd...@madduck.net wrote:

 also sprach Administrator TOOTAI ad...@tootai.net [2012.11.08.0954
 +0100]:
  Does anyone have a working example they would be willing to
  share?
 
  As said by James, you just have to transfer all parties in
  a conference room and then you call this conference.

 The scenario is usually that we are in a discussion and need a third
 party. I suppose I can tell the initial correspondent I will now
 transfer you to a conference room, enter this PIN when asked, then
 hang up, dial the next, and do the same.

 What I would like to do is to convert the current channel into
 a conference room, go on hold and dial a third party, and when
 I come back to the conference room, I bring along the third party.

 Put differently: I don't really want my correspondents to have to do
 anything, just wait and listen to MOH.

 --
 martin | http://madduck.net/ | http://two.sentenc.es/

 nullum magnum ingenium sine mixtura dementiae fuit.
  -- seneca

 spamtraps: madduck.bo...@madduck.net

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users