I am using AVAssetWriterInput to take an mp3 file from the user, and email it (DRM free only). I got the process to work when using PCM, but when I try mp3, or m4a, or caf, I either get a file that doesn't work, or I get empty data. I think it is due to my output settings. The output settings used that draw no data are below. I am open to changing all of it. Thanks!
NSDictionary *outputSettings = [NSDictionary dictionaryWithObjectsAndKeys:
[ NSNumber numberWithInt: kAudioFormatMPEG4AAC], AVFormatIDKey,
[ NSNumber numberWithInt: 1 ], AVNumberOfChannelsKey,
[ NSNumber numberWithFloat: 44100.0 ], AVSampleRateKey,
[ NSData dataWithBytes: &channelLayout length: sizeof( AudioChannelLayout ) ], AVChannelLayoutKey,
[ NSNumber numberWithInt: 64000 ], AVEncoderBitRateKey,
nil];