Is it possible to monitor an Asterisk ConfBridge from a URL / Browser?

1

I have an Asterisk server set up with minimal configuration, including the following confbridge definition / extension:

*confbridge.conf*

[testbridge]
type=bridge
video_mode=follow_talker
max_members=20
mixing_interval=10
internal_sample_rate=auto
record_conference=yes

*extension.conf*

exten => 6100,1,Answer()
same => n,Set(CONFBRIDGE(user,admin)=yes)
same => n,Set(CONFBRIDGE(user,marked)=yes)
same => n,ConfBridge("Ad-hoc",testbridge,default_user,sample_user_menu)

Is it possible to monitor the video / audio of the conference without joining via a client?

Lorin S.

Posted 2013-09-18T16:46:12.427

Reputation: 226

Answers

0

You can create new call, one side of call put in conference, other side of call put to sound card(create dummy one) or mixer. After that create streaming from that sound device, read stream in browser(use icecast).

Anyway i see 2 issues here:

  • I have tried that before (i am guru in asterisk) and not found way got delay <2seconds.

  • For setup all that need spend realy alot of time and looks like need be at least expert level in asterisk.

Other solution - use flash or java softphone for webpage and just call in automaticaly into conference. Need much less skill in asterisk, but need got that calling component(or pay for it) and need have average level in javascript.

arheops

Posted 2013-09-18T16:46:12.427

Reputation: 977