モノタッチを使用して iPhone アプリケーションを作成しています。マイクから受信したオーディオを gsm ファイルにエンコードする必要があります。
オーディオは既に wav にエンコードされていますが、より具体的なニーズのために、GSM に録音する必要があります。マイクから gsm にエンコードする方法、または wav を gsm に変換する方法を説明しているドキュメントを誰かが教えてくれたり、見せてくれたりしたら、それは素晴らしいことです。
タイ、アクセル
- - アップデート - -
に MicrosoftGSM のエントリがありますがMonoTouch.AudioToolbox.AudioFormatType
、1718449215 OSStatus エラーが発生します。その理由は、私の他の議論が正しくないからだと思います。GSM保存の仕様がわかりません。動作しないコードは次のとおりです。
//set up the NSObject Array of values that will be combined with the keys to make the NSDictionary
NSObject[] values = new NSObject[]
{
NSNumber.FromFloat (44100.0f), //Sample Rate
NSNumber.FromInt32 ((int)MonoTouch.AudioToolbox.AudioFormatType.MicrosoftGSM),
NSNumber.FromInt32(2),
NSNumber.FromInt32((int)AVAudioQuality.High),
};
//Set up the NSObject Array of keys that will be combined with the values to make the NSDictionary
NSObject[] keys = new NSObject[]
{
AVAudioSettings.AVSampleRateKey,
AVAudioSettings.AVFormatIDKey,
AVAudioSettings.AVNumberOfChannelsKey,
AVAudioSettings.AVEncoderAudioQualityKey,
};
//Set Settings with the Values and Keys to create the NSDictionary
settings = NSDictionary.FromObjectsAndKeys (values, keys);