AVAudioRecorderを使用してデバイスにオーディオを録音しようとしています。そのファイルはWebサーバーに送信され、その結果のファイルをWebブラウザーで再生したいと思います。
デバイスでさまざまな設定の組み合わせを試しました...ファイルを正しいAAC形式にエンコードするものは何もないようです。
QuickTimeは、このファイルの再生方法がわからないと言っています。
サンプルコード
private void InitializeRecordingSession() {
string fileName = string.Format("{0}.m4a", Guid.NewGuid());
string tmpdir = Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "/audio";
if (!Directory.Exists(tmpdir))
Directory.CreateDirectory(tmpdir);
audioFilePath = Path.Combine(tmpdir, fileName);
Console.WriteLine("Audio File Path: " + audioFilePath);
var url = NSUrl.FromFilename(audioFilePath);
var settings = new AVAudioRecorderSettings() {
AudioFormat = AudioFormatType.MPEG4AAC,
SampleRate = 44100,
NumberChannels = 1,
AudioQuality = AVAudioQuality.High,
};
recorder = AVAudioRecorder.ToUrl(url, settings, out error);
//Set Recorder to Prepare To Record
recorder.PrepareToRecord();
}
編集-このコードを行の前に置くことによって
recorder = AVAudioRecorder.ToUrl(url, settings, out error);
すべてがうまくいった。
NSError error;
AVAudioSession audioSession = AVAudioSession.SharedInstance();
audioSession.SetCategory(AVAudioSession.CategoryRecord, out error);
audioSession.SetActive(true, out error);