1
NSMutableDictionary *dictionary=[[NSMutableDictionary alloc]init];
[dictionary setValue:[NSNumber numberWithInt:kAudioFormatAppleIMA4] forKey:AVFormatIDKey];
[dictionary setValue:[NSNumber numberWithFloat:44100.0] forKey:AVSampleRateKey];
[dictionary setValue:[NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];
我使用AVAudioRecorder
對象進行輸入,我需要將它轉換爲udp數據包。怎麼做?如何將收到的音頻轉換爲udp數據包?
我想發送實時語音,因爲它是到另一個設備,所以如何做到這一點。正如你所提到的dataWithContentsOfURL,所以你的意思是我應該將它存儲在文件中,然後發送它?但我不希望這樣。 – user1397935
您的發送數據應該是nsdata格式 –