Is there a simple command line SIP dialer for unix which can connect to SIP server, make a call and play some media file (wav/mp3)? In ideal I would look like this:

sip-dailer +1xxxxxxxxxx /path/to/message.mp3
link|improve this question
I've done some research into SIP. My sense is that it's very vendor specific. You might have to purchase a specific unix compatible SIP server. – SLY Feb 5 '11 at 16:02
Would you accept as an answer a unix compatible SIP server? – SLY Feb 5 '11 at 16:03
feedback

4 Answers

If you already have Asterisk running, setting up a task to dial a number and wait for the other side to answer and play an audio file is not that hard. But 'having Asterisk running' does not answer 'simple'.

Google suggests pjsua.

link|improve this answer
feedback

There is a free (GPL) tool called SIPp (distributed as sip-tester by Debian and its derivatives that will allow you do something along these lines.

For example:

./sipp -sn uac <IP address>

tells it to use the built in UAC scenario and to send the request to the IP address specified.

Once the call is answered it can play audio, but this needs to be provided as a raw RTP stream (passing a .pcap capture file works well) and you will need to build your own 'scenario' for this, which involves writing/modifying a bit of XML.

link|improve this answer
This comment was super useful for me. I wrote up a detailed set of instructions on getting SIPp up and running here. Thanks! – muirbot Mar 7 at 23:57
feedback

linphonec support remote_ring option(wav file to play to advertise remote ringing). You can configure Asterisk.

link|improve this answer
Thanks, I tried it and it was quiet simple, there is a special command play for playing WAVs, and config where you can set sip_proxy. Almost what I need. – troex Feb 6 '11 at 6:37
feedback

Maybe have a look at http://www.pjsip.org/pjsua.htm. While I am not sure it has an autoplay-option for outgoing calls, I guess you could fiddle with input devices a little bit to make it possible.

link|improve this answer
I've seen this, very interesting library but it's not ready-to-use solution, though there are good python examples howto use it – troex Feb 5 '11 at 19:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.