user3359171
user3359171

Reputation: 1

how to record incoming calls in asterisk

I want to record incoming calls in asterisk

Upvotes: 0

Views: 622

Answers (1)

arheops
arheops

Reputation: 15259

Use mixmonitor, after that use wait(100000) or some other forever loop.

https://wiki.asterisk.org/wiki/display/AST/Application_MixMonitor

Or use h-extension(execute on hangup), but be care, you can hangs your asterisk forever.

http://www.voip-info.org/wiki/view/Asterisk+h+extension

Since you have c++ tag, also you have option create new application with needed behavour using c/c++. See asterisk source code for record/mixmonitor.

Upvotes: 0

Related Questions