From flbaker at sbcglobal.net Tue Jan 29 08:34:43 2019 From: flbaker at sbcglobal.net (Fraser Baker) Date: Tue, 29 Jan 2019 16:34:43 +0000 Subject: [pm-h] MMS for Landlines Message-ID: Hi: I have been looking for an MMS perl module that will send say an audio file with a message to a land line and then play the audio file when the land line is answered. So far, I have come up empty. Fraser -------------- next part -------------- An HTML attachment was scrubbed... URL: From jackson.tim at gmail.com Tue Jan 29 08:44:05 2019 From: jackson.tim at gmail.com (Tim Jackson) Date: Tue, 29 Jan 2019 10:44:05 -0600 Subject: [pm-h] MMS for Landlines In-Reply-To: References: Message-ID: Twilio can be used to do this. https://metacpan.org/pod/WWW::Twilio::API https://metacpan.org/pod/WWW::Twilio::TwiML Nobody in the US really offers RCS/MMS to landlines (outside of few providers who are expanding to offer SMS/MMS, but that's still not what you're after). -- Tim On Tue, Jan 29, 2019 at 10:34 AM Fraser Baker wrote: > Hi: > > I have been looking for an MMS perl module that will send say an audio > file with a message to a land line and then play the audio file when the > land line is answered. > > So far, I have come up empty. > > Fraser > _______________________________________________ > Houston mailing list > Houston at pm.org > https://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mrdvt92 at yahoo.com Tue Jan 29 09:59:52 2019 From: mrdvt92 at yahoo.com (Michael R. Davis) Date: Tue, 29 Jan 2019 12:59:52 -0500 Subject: [pm-h] MMS for Landlines In-Reply-To: References: Message-ID: <9698FA5C-920E-4F06-A6E5-5494AB9B621B@yahoo.com> Fraser, > play the audio file when the land line is answered. Twilio supports this service. I don't know their rates but they are very competitive on SMS rates. I wrote a Twilio SMS driver on CPAN. If you have hardware like a RAS (e.g. Patton) you might be able to do something without the middleman service but I doubt it would be as cheap as what Twilio provides. I looked into doing something like this over a modem at one time but it did not seem possible. Michael R. Davis mrdvt92 CPAN mrdvt -------------- next part -------------- An HTML attachment was scrubbed... URL: From jlbprof at gmail.com Tue Jan 29 11:50:08 2019 From: jlbprof at gmail.com (Julian Brown) Date: Tue, 29 Jan 2019 13:50:08 -0600 Subject: [pm-h] MMS for Landlines In-Reply-To: <9698FA5C-920E-4F06-A6E5-5494AB9B621B@yahoo.com> References: <9698FA5C-920E-4F06-A6E5-5494AB9B621B@yahoo.com> Message-ID: In days long past, I wrote code to interact with modems, including dialing and connecting via SLIP or PPP, but also to send audio messages. Unfortunately it was on Windows and at a previous employer so I no longer have access to the code, and I do not remember the details. Modem work is definitely doable but so old it may not have stack overflow help for you. Julian On Tue, Jan 29, 2019 at 12:00 PM Michael R. Davis wrote: > Fraser, > > play the audio file when the land line is answered. > > Twilio supports this service. I don't know their rates but they are very > competitive on SMS rates. I wrote a Twilio SMS driver on CPAN. > > If you have hardware like a RAS (e.g. Patton) you might be able to do > something without the middleman service but I doubt it would be as cheap as > what Twilio provides. > > I looked into doing something like this over a modem at one time but it > did not seem possible. > > Michael R. Davis > mrdvt92 > > CPAN mrdvt > _______________________________________________ > Houston mailing list > Houston at pm.org > https://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jackson.tim at gmail.com Tue Jan 29 14:31:31 2019 From: jackson.tim at gmail.com (Tim Jackson) Date: Tue, 29 Jan 2019 16:31:31 -0600 Subject: [pm-h] MMS for Landlines In-Reply-To: References: <9698FA5C-920E-4F06-A6E5-5494AB9B621B@yahoo.com> Message-ID: There's always Asterisk + a SIP trunk, PRI, or FXO port if you want to go the real DIY approach. (or another whole suite of opensource VoIP platforms). -- Tim On Tue, Jan 29, 2019 at 1:50 PM Julian Brown wrote: > In days long past, I wrote code to interact with modems, including dialing > and connecting via SLIP or PPP, but also to send audio messages. > > Unfortunately it was on Windows and at a previous employer so I no longer > have access to the code, and I do not remember the details. Modem work is > definitely doable but so old it may not have stack overflow help for you. > > Julian > > > On Tue, Jan 29, 2019 at 12:00 PM Michael R. Davis > wrote: > >> Fraser, >> > play the audio file when the land line is answered. >> >> Twilio supports this service. I don't know their rates but they are very >> competitive on SMS rates. I wrote a Twilio SMS driver on CPAN. >> >> If you have hardware like a RAS (e.g. Patton) you might be able to do >> something without the middleman service but I doubt it would be as cheap as >> what Twilio provides. >> >> I looked into doing something like this over a modem at one time but it >> did not seem possible. >> >> Michael R. Davis >> mrdvt92 >> >> CPAN mrdvt >> _______________________________________________ >> Houston mailing list >> Houston at pm.org >> https://mail.pm.org/mailman/listinfo/houston >> Website: http://houston.pm.org/ >> > _______________________________________________ > Houston mailing list > Houston at pm.org > https://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mrdvt92 at yahoo.com Tue Jan 29 17:32:06 2019 From: mrdvt92 at yahoo.com (Michael R. Davis) Date: Wed, 30 Jan 2019 01:32:06 +0000 (UTC) Subject: [pm-h] MMS for Landlines In-Reply-To: References: <9698FA5C-920E-4F06-A6E5-5494AB9B621B@yahoo.com> Message-ID: <59051470.719764.1548811926386@mail.yahoo.com> On Tue, Jan 29, 2019 at 12:00 PM Michael R. Davis wrote:> Fraser, >> play the audio file when the land line is answered. > > Twilio supports this service.? They call the service Programmable Voice?https://www.twilio.com/voice???? The REST API is very simple and there are a few Perl libs to interface with parts of their API.?https://metacpan.org/search?q=twilio?? The?https://metacpan.org/pod/WWW::Twilio::API?lib has an example to "make a phone call"? My SMS Lib is?https://metacpan.org/pod/SMS::Send::NANP::Twilio?? Michael R. Davis? mrdvt92? CPAN mrdvt? -------------- next part -------------- An HTML attachment was scrubbed... URL: From mikeflan at att.net Tue Jan 29 17:54:19 2019 From: mikeflan at att.net (Mike Flannigan) Date: Tue, 29 Jan 2019 19:54:19 -0600 Subject: [pm-h] MMS for Landlines In-Reply-To: References: <9698FA5C-920E-4F06-A6E5-5494AB9B621B@yahoo.com> Message-ID: <32c7e79c-c531-8e31-b080-900db8b51831@att.net> This brings back memories. I remember a Perl guy who had a habit of filling up the Inbox of anybody he took a disliking to. For some unknown reason he took a disliking to me - imagine that :-)? I had to write a script, not Perl as I recall, that signed on the modem every 15 minutes, downloaded the e-mails, and threw away all his e-mails.? That went on for about a week and then he finally quit when it never filled up. Mike On 1/29/2019 1:50 PM, Julian Brown wrote: > In days long past, I wrote code to interact with modems, including > dialing and connecting via SLIP or PPP, but also to send audio messages. > > Unfortunately it was on Windows and at a previous employer so I no > longer have access to the code, and I do not remember the details.? > ?Modem work is definitely doable but so old it may not have stack > overflow help for you. > > Julian > > > On Tue, Jan 29, 2019 at 12:00 PM Michael R. Davis > wrote: > > Fraser, > > play the audio file when the land line is answered. > > Twilio supports this service. I don't know their rates but they > are very competitive on SMS rates. I wrote a Twilio SMS driver on > CPAN. > > If you have hardware like a RAS (e.g. Patton) you might be able to > do something without the middleman service but I doubt it would be > as cheap as what Twilio provides. > > ?I looked into doing something like this?over a modem at one > time?but it did not seem possible. > > Michael R. Davis > mrdvt92 > > CPAN mrdvt > _______________________________________________ > Houston mailing list > Houston at pm.org > https://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ > > > _______________________________________________ > Houston mailing list > Houston at pm.org > https://mail.pm.org/mailman/listinfo/houston > Website: http://houston.pm.org/ -------------- next part -------------- An HTML attachment was scrubbed... URL: