Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - attank

Pages: [1]
1
Hello,

I am trying to play file to conference when user joined but no success...

I do not know how to create utility leg and play file to it (I am getting usually "Conference call with no call endpoint"...)

Thanks in advance for any help.


/*
 * conf.js
 */


function onMessage(msg)
{
    if (msg.event == "joined")
    {
        playFile(msg, "/usr/local/yate/sounds/conference/8000/conf-alone.alaw");
    }
}

function playFile(msg, file)
{
//  how to play ???????????????...
}

Message.install(onMessage, "chan.notify", 50);

Pages: [1]