phone-call

Allow iOS app users to place calls and texts to each other through Twilio numbers, Parse backend

不打扰是莪最后的温柔 提交于 2019-12-08 14:28:10
问题 EDIT: This question is very moot with the rollout of Twilio Proxy! Check that out instead. It basically does what I wanted to do but way better, and with less manual organization on my own end. I am building an app with a feature that let's you call or text another user you are matched with. However, I don't want to give out user's information, so I am trying to mask the user's numbers with a number I have through Twilio. I am using Parse as my backend, which allows me to run cloud code and

Making Calls through Android phone via bluetooth enabled micro controller

本秂侑毒 提交于 2019-12-08 12:18:48
问题 my end goal is have a microcontroller with bluetooth make calls through any bluetooth enabled phone via bluetooth. I currently have an android phone and it would be great if i could place calls onto that, but i am willing to purchase any phone. This is for my senior design and i have a lack of knowledge when it comes to the guts of cell phones. I currently can talk from my microcontroller to an Android app called BlueTerm, which is just a terminal for bluetooth, so i know the micro side is

How to let Android user to decide whether to answer a call or not?

ぐ巨炮叔叔 提交于 2019-12-08 08:17:43
问题 I'm writing a small app where I don't want the current activity to automatically switch to the phonecall app upon an incoming call. I would like the user to decide whether to do it or not from my app UI. I know I can listen to state changes in the telephony but I don't know how to prevent from the phonecall app to take focus. 来源: https://stackoverflow.com/questions/5744720/how-to-let-android-user-to-decide-whether-to-answer-a-call-or-not

Get custom ringtone incoming call of Android

淺唱寂寞╮ 提交于 2019-12-08 07:18:56
问题 I can use below code to get current ringtone of incoming call Uri defaultRintoneUri = RingtoneManager.getActualDefaultRingtoneUri( getApplicationContext(), RingtoneManager.TYPE_RINGTONE); defaultRingtone = RingtoneManager.getRingtone(getApplicationContext(), defaultRintoneUri); But I want to get custom ringtone which is set by other application. How can I get it? 回答1: If the ringtone is used only for that application, then probably that ringtone file is private and owned only by that

Make a phone call from a server--what services are out there? [closed]

随声附和 提交于 2019-12-08 06:39:50
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I am looking to make a phone call from software and have the software read a message to the recipient. I have been using Asterisk, but have found it somewhat are to maintain and it was a pain to configure. I'm wondering if there are any services where you can send it a piece of text and a phone number and it

skype for business outgoing call and play audio file

牧云@^-^@ 提交于 2019-12-08 04:07:30
问题 Goal is to develop an interface of a systems monitoring solution to a module, which calls an on-call duty person and plays some speech/audio file from file system. i have an skype for business 2015 (fomerly lync) user with phone options enabled. i am also able to call phone a number. but then the question is, how to wait until the dialed person accepts the phone call and play an audio file (or better is the System.Speech variant instead of playing an audio file) and after that the person has

Failed to push call stats, status code: 403 | ERROR TCMetricsPublisher | Twilio

点点圈 提交于 2019-12-07 15:20:43
问题 I am integrating the voip , thus integrated twilio. I also setup the server code on heroku successfully. I create the token successfully, and getting the callback on handler as well. When I run the application on device, then callback in delegate comes Device: <TCPresenceEvent 0x17de3840 name=jenny, available=YES> didReceivePresenceUpdate After some time, below error occurred: [ERROR TCMetricsPublisher] Failed to push call stats, status code: 403 Delegates callback: I got the callback in

Android: how can I launch phone call in my activity, and then back to it?

心不动则不痛 提交于 2019-12-07 08:45:48
问题 I can launch the phone call by Intent: String url = "tel:3334444"; Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(url)); But it will stay in the phone call screen. What I want is staying at my app activity. Is it possible that launching the phone call in background? Or return to the previous activity immediately. 回答1: You need to implement Phonecall state in side of your activity // //Handling phone states private PhoneStateListener phoneListener = new PhoneStateListener() { public

Asterisk AGI - Originate a call using php agi

拈花ヽ惹草 提交于 2019-12-07 05:31:40
问题 Is anybody knows , how we can Originate an external number call using PHP AGI script ? 回答1: You have got two possible options. One is use the "Originate" command. See http://www.voip-info.org/wiki/view/Asterisk+manager+Example:+Originate for an example. The other one, which is what I favor in my solutions, since it does not require AMI, is using spooled call files. See https://wiki.asterisk.org/wiki/display/AST/Asterisk+Call+Files for how to do them. The trick, and I cannot stress it enough,

How to play audio file when call starts?

时间秒杀一切 提交于 2019-12-07 03:56:03
问题 I am initiating a voice call from my application. Now i want that when the user on the other side picks up the call, i want to play a recorded audio file. How to go about this? Please help! 回答1: I have found a workaround with this. I play an audio file on device's speakers with full sound when the phone state changes to TelephonyManager.CALL_STATE_OFFHOOK This ensures that the user on the other side can hear the recording. 回答2: In simple and clear words you cant stream any sound on an