when i call a number in asterisk, I want the music to begin. but I need to do this with node.js and ami. what should i do for this?
ar Ami = require(‘asterisk-manager’);
var ami = Ami(“5038”, “192.168.10.126”, “amiuser”, “b8d402ef6ff7c2678a2348585c53fdg4”, true);
ami.action({
‘action’:‘originate’,
‘channel’:‘SIP/2011’,
//‘ConnectedLineNum’:‘xxxx’,
//‘CallerIDNum’:‘xxxxx’,
‘context’:‘default’,
‘CallerID’: ‘xxxx’,
‘exten’:‘s’,
‘priority’:1,
‘async’: true,
‘Codecs’: ‘g729’
}, function(err, res) {
console.log(err);
console.log(res);
});