3

我已经设法使用 Bonjour 从一台 iPhone 向另一台 iPhone 发送和接收 NSData。我已经编写了使用音频队列录制音频的回调,并在发送方使用以下回调发送了 NSData:

    void AudioInputCallback(void * inUserData,
                    AudioQueueRef inAQ,
                    AudioQueueBufferRef inBuffer,
                    const AudioTimeStamp * inStartTime,
                    UInt32 inNumberPacketDescriptions,
                    const AudioStreamPacketDescription * inPacketDescs)
{
RecordState * recordState = (RecordState*)inUserData;
if (!recordState->recording)
{
    printf("Not recording, returning\n");
}

// if (inNumberPacketDescriptions == 0 && recordState->dataFormat.mBytesPerPacket != 0)
// {
//     inNumberPacketDescriptions = inBuffer->mAudioDataByteSize / recordState->dataFormat.mBytesPerPacket;
// }

printf("Writing buffer %lld\n", recordState->currentPacket);

OSStatus status = AudioFileWritePackets(recordState->audioFile,
                                        false,
                                        inBuffer->mAudioDataByteSize,
                                        inPacketDescs,
                                        recordState->currentPacket,
                                        &inNumberPacketDescriptions,
                                        inBuffer->mAudioData);
NSLog(@"DATA = %@",[NSData dataWithBytes:inBuffer->mAudioData length:inBuffer->mAudioDataByteSize]);

[[NSNotificationCenter defaultCenter] postNotificationName:@"Recording" object:[NSData dataWithBytes:inBuffer->mAudioData length:inBuffer->mAudioDataByteSize]];

if (status == 0)
{
    recordState->currentPacket += inNumberPacketDescriptions;
}

AudioQueueEnqueueBuffer(recordState->queue, inBuffer, 0, NULL);
}

在上面的代码中,我设法将转换为 NSData 的 inBuffer->mAudioData 发送到另一部 iPhone 上。我也在接收器 iPhone 上收到了相同的数据。

但现在我不知道如何阅读这个 NSData。如何将此数据转换为音频格式并在扬声器上收听此音频。我需要在接收端使用音频队列还是使用简单的 AVPlayer 来收听声音。如果有人可以帮助解决,那将是一个很大的帮助。

4

1 回答 1

0

要使用 NSData 只需使用 NSData writeToFile:atomically: 方法。传入 NSTemporary() 路径并附加一个路径组件,如“temp.mp4”。此时,您有一个包含有效数据的文件路径,可用于加载音频资产。AVAudioPlayer 可以支持从 URL 加载。

或使用 iOS 7.0+

您可以直接使用 NSData 对象初始化 AVAudioPlayer。

初始化(数据数据:NSData,fileTypeHint utiString:字符串?)抛出

等。人...

于 2015-12-06T19:41:52.057 回答