5

I want to make a automated call application, which will dial some mobile numbers, and give the response to them, and also record there voice in wave and text format. is it possible in PHP, or there is any buildin function or classes for doing that?

Harish Kurup
  • 7,257
  • 19
  • 65
  • 94

3 Answers3

5

Check out Tropo, they have PHP support.

Konstantin Haase
  • 25,687
  • 2
  • 57
  • 59
2

ribbit offers an API for making calls, playing files, etc (php link)

Dan Heberden
  • 10,990
  • 3
  • 33
  • 29
  • is ribbit free like tropo, i wass using tropo but the problem is that it is not that flexible as i wanted all the data input from user to be saved in my database... – Harish Kurup Jun 11 '10 at 06:41
  • i have not used ribbit...i have used tropo, which i found little bit easy... thank u @Dan Heberden.. – Harish Kurup Jun 14 '10 at 06:12
2

You can use asterisk and implement an IVR flow using AGI php scripts.

Asterisk is an open source telephony project. You install the software on a linux box, then you connect some phone lines (PSTN, ISDN, SIP, whatever).

Asterisk can be controlled by using AGI php scripts to build custom interactions (dial number XXX, play wave "Press one to do this, two to do that", read DTMF input from user, etc).

diciu
  • 29,133
  • 4
  • 51
  • 68
  • thank u @diciu...i have not used asterisk... i am using tropo..as it is bit easy for me to understand....hence i selected the above answer.... – Harish Kurup Jun 14 '10 at 06:13
  • Hi, I have checked out Asterisks but I'm not sure it's what I need. I didn't fully comprehend it but it think it's for bug companies. I just need a voice call notification system. Not too different from basic SMS notification and not more than 10 seconds. Please how do i go about this? If asterisk is not ideal service for me, what else can i use? – Obi Ik Feb 17 '15 at 08:19