我正在計劃開發針對android的特定voip應用程序。Android,通過wlan撥打電話音頻流
下面是場景: 當發生電話呼叫時我想聽到在本地pc揚聲器上呼叫的人,我想通過我自己的pc麥克風/耳機與他通話。所以我需要通過wlan網絡發送我和我正在通話的人的音頻流。
事情是這樣的:
...
onCallStateChanged(int state, String phoneNumber){
while(state == PhoneListener.CALL_STATE_OFFHOOK){ //while phone call is happening
//send incoming speech via wlan to pc
//receive audiostream from pc microphone and direct it to the phone call
}
}
...
這可能與目前的Android API? (其實這應該是因爲VOIP應用程序在市場上可用) 我做Android的API中的一些研究和所有我發現是AudioManager已定名爲
public static final int STREAM_VOICE_CALL; //The audio stream for phone calls
但我不知道怎麼用它是我們應該如何訪問我可以通過網絡發送的實際音頻流。我如何設法做到這一點?
連接將通過TCP套接字來實現。
要在Android上構建VOIP應用程序,您需要獲取或構建自己的SIP堆棧和RTP堆棧以及對音頻流進行impliment編碼和decdoing。 – 2010-03-22 13:53:37