溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS AVAudioRecorder參數(shù)設置

發(fā)布時間:2020-06-24 19:18:06 來源:網(wǎng)絡 閱讀:2661 作者:leeyulong 欄目:移動開發(fā)

 //------------------ 設置錄音格式及參數(shù) --------------------------
       NSDictionary *settings = [[NSDictionary alloc] initWithObjectsAndKeys:
                                 [NSNumber numberWithInt:AVAudioQualityMin], AVEncoderAudioQualityKey,
                                 [NSNumber numberWithInt:kAudioFormatLinearPCM], AVFormatIDKey,
                                 [NSNumber numberWithFloat:8000.0], AVSampleRateKey,
                                 [NSNumber numberWithInt:16],  AVLinearPCMBitDepthKey,
                                 [NSNumber numberWithInt:1],   AVNumberOfChannelsKey,
                                 [NSNumber numberWithBool:NO], AVLinearPCMIsBigEndianKey,
                                 [NSNumber numberWithBool:NO], AVLinearPCMIsFloatKey, nil];

//        NSDictionary *settings = [[NSDictionary alloc] initWithObjectsAndKeys:
//                                   [NSNumber numberWithInt:kAudioFormatLinearPCM],AVFormatIDKey,//格式
//                                   [NSNumber numberWithFloat:8000.0],AVSampleRateKey, //采樣率8000次
//                                   [NSNumber numberWithInt:1], AVNumberOfChannelsKey, //通道的數(shù)目
//                                   [NSNumber numberWithInt:16],AVLinearPCMBitDepthKey, //采樣位數(shù) 默認 16
//                                   [NSNumber numberWithBool:NO],AVLinearPCMIsBigEndianKey, //大端還是小端 是內(nèi)存的組織方式
//                                   [NSNumber numberWithBool:NO],AVLinearPCMIsFloatKey, //采樣信號是整數(shù)還是浮點數(shù)
//                                   //Encoder
//                                   [NSNumber numberWithInt:12800],AVEncoderBitRateKey, //解碼率
//                                   [NSNumber numberWithInt:8],AVEncoderBitDepthHintKey, //位深度
//                                   [NSNumber numberWithInt:8],AVEncoderBitRatePerChannelKey, //聲道采樣率
//                                   [NSNumber numberWithInt:AVAudioQualityLow],AVEncoderAudioQualityKey, //音頻編碼質(zhì)量
//                                   nil];

[[AVAudioRecorder alloc] initWithURL:[NSURL fileURLWithPath:cafFilePath] settings:settings error:&error];

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI