Tagged Questions

3
votes
2answers
854 views

How to get bitrate of audio file in cocoa

I need to get bitrate information from audio files, for some reason AudioFileGetProperty function with kAudioFilePropertyBitRate constant always returns 0 for me. The same with ...
2
votes
1answer
507 views

How do you read/write/update m4u and mp3 file meta data using cocoa/objective c?

Are there some particular library files available on OS/X that are relevant, I am just not sure where to start.
1
vote
2answers
163 views

Getting raw sample data of m4a file to draw waveform

I'm using AudioToolbox to access m4a audio files with following code: UInt32 packetsToRead = 1; //Does it makes difference? void *buffer = malloc(maxPacketSize * packetsToRead); for (UInt64 ...