次の設定を使用して、AVAudiorecorder で wav ファイルを録音しようとしています。作成されたファイルは私の Mac と iPhone では正常に再生されますが、それを blackberry デバイスにメールしてそこから再生しようとすると、フォーマットがサポートされていないと表示されます..何が間違っているのでしょうか?? オーディオレコーダーの設定を初期化するときに何かが足りないと思うので、設定辞書のみを投稿しています
NSDictionary *settings = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithFloat: 44100.0],AVSampleRateKey,
[NSNumber numberWithInt: kAudioFormatLinearPCM],AVFormatIDKey,// kAudioFormatLinearPCM
[NSNumber numberWithInt:16],AVLinearPCMBitDepthKey,
[NSNumber numberWithInt: 2], AVNumberOfChannelsKey,
[NSNumber numberWithBool:NO],AVLinearPCMIsBigEndianKey,
[NSNumber numberWithBool:NO],AVLinearPCMIsFloatKey,
[NSNumber numberWithInt: AVAudioQualityMedium],AVEncoderAudioQualityKey,nil];