yoyosir
yoyosir

Reputation: 458

How to analyze the audio file recorded in audio queue services in iOS?

I know the file path. How am I going to open it? I want the LPCM format like the one in the buffer when recording the audio.

Upvotes: 0

Views: 344

Answers (2)

AudioGraph is a good, working example:

https://github.com/tkzic/audiograph

Upvotes: 0

hotpaw2
hotpaw2

Reputation: 70693

You can use the iOS Extended Audio File Serveces API to read the uncompressed audio samples.

Upvotes: 2

Related Questions