IOS錄音機(jī)--------by talent.L

1設(shè)置權(quán)限

Privacy - Microphone Usage Description? ? ? microphoneDesciption

2引入框架AVFoundation

3.m

#import "ViewController.h"

#import <AVFoundation/AVFoundation.h>

@interface ViewController ()<AVAudioRecorderDelegate>

{//錄音

AVAudioRecorder *audioRecorder;

//聲音播放

AVAudioPlayer *player;

//拖動條

UISlider *processSlider;

}

@end

@implementation ViewController

- (void)viewDidLoad {

[super viewDidLoad];

UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];

button.frame = CGRectMake(100, 100, 100, 100);

[button setTitle:@"錄音/停止" forState:UIControlStateNormal];

button.backgroundColor = [UIColor brownColor];

[button addTarget:self action:@selector(startAudioRecoder:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:button];

UIButton *buttonTwo = [UIButton buttonWithType:UIButtonTypeCustom];

buttonTwo.frame = CGRectMake(100, 300, 100, 100);

[buttonTwo setTitle:@"播放" forState:UIControlStateNormal];

buttonTwo.backgroundColor = [UIColor redColor];

[buttonTwo addTarget:self action:@selector(startPlayer:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:buttonTwo];

UIButton *buttonTwo1 = [UIButton buttonWithType:UIButtonTypeCustom];

buttonTwo1.frame = CGRectMake(250, 300, 100, 100);

[buttonTwo1 setTitle:@"停止" forState:UIControlStateNormal];

buttonTwo1.backgroundColor = [UIColor redColor];

[buttonTwo1 addTarget:self action:@selector(startPlayer1:) forControlEvents:UIControlEventTouchUpInside];

[self.view addSubview:buttonTwo1];

//拖動條

processSlider = [[UISlider alloc] initWithFrame:CGRectMake(90, 220, 200, 20)];

[processSlider addTarget:self action:@selector(processChanged) forControlEvents:UIControlEventValueChanged];

[self.view addSubview:processSlider];

//定時器

[NSTimer scheduledTimerWithTimeInterval:0.001 target:self selector:@selector(updateSliderValue) userInfo:nil repeats:YES];

}

//拖動條方法

-(void)processChanged

{

[player setCurrentTime:processSlider.value*player.duration];

}

//定時器方法

-(void)updateSliderValue

{

processSlider.value = player.currentTime/player.duration;

}

//錄音 和 停止

- (void)startAudioRecoder:(UIButton *)sender{

sender.selected = !sender.selected;

if (sender.selected != YES) {

[audioRecorder stop];

return;

}

//? URL是本地的URL AVAudioRecorder需要一個存儲的路徑

//? URL是本地的URL AVAudioRecorder需要一個存儲的路徑

NSString *name = @"tcdsgzg.aiff";

NSString *path = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES).firstObject stringByAppendingPathComponent:name];

//? ? NSLog(@"%@",path);

NSError *error;

//? 錄音機(jī) 初始化

audioRecorder = [[AVAudioRecorder alloc]initWithURL:[NSURL fileURLWithPath:path] settings:@{AVNumberOfChannelsKey:@2,AVSampleRateKey:@44100,AVLinearPCMBitDepthKey:@32,AVEncoderAudioQualityKey:@(AVAudioQualityMax),AVEncoderBitRateKey:@128000} error:&error];

[audioRecorder prepareToRecord];

[audioRecorder record];

audioRecorder.delegate = self;

/*

1.AVNumberOfChannelsKey 通道數(shù) 通常為雙聲道 值2

2.AVSampleRateKey 采樣率 單位HZ 通常設(shè)置成44100 也就是44.1k

3.AVLinearPCMBitDepthKey 比特率 8 16 24 32

4.AVEncoderAudioQualityKey 聲音質(zhì)量

① AVAudioQualityMin? = 0, 最小的質(zhì)量

② AVAudioQualityLow? = 0x20, 比較低的質(zhì)量

③ AVAudioQualityMedium = 0x40, 中間的質(zhì)量

④ AVAudioQualityHigh? = 0x60,高的質(zhì)量

⑤ AVAudioQualityMax? = 0x7F 最好的質(zhì)量

5.AVEncoderBitRateKey 音頻編碼的比特率 單位Kbps 傳輸?shù)乃俾?一般設(shè)置128000 也就是128kbps

*/

//? ? NSLog(@"%@",path);

}

- (void)audioRecorderDidFinishRecording:(AVAudioRecorder *)recorder successfully:(BOOL)flag{

NSLog(@"錄音結(jié)束");

//? 文件操作的類

NSFileManager *manger = [NSFileManager defaultManager];

NSString *path = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];

//? 獲得當(dāng)前文件的所有子文件subpathsAtPath

NSArray *pathlList = [manger subpathsAtPath:path];

//? 需要只獲得錄音文件

NSMutableArray *audioPathList = [NSMutableArray array];

//? 遍歷所有這個文件夾下的子文件

for (NSString *audioPath in pathlList) {

//? ? 通過對比文件的延展名(擴(kuò)展名 尾綴) 來區(qū)分是不是錄音文件

if ([audioPath.pathExtension isEqualToString:@"aiff"]) {

//? ? ? 把篩選出來的文件放到數(shù)組中

[audioPathList addObject:audioPath];

}

}

NSLog(@"%@",audioPathList);

}

-(void)startPlayer:(UIButton *)btn{

NSString *name = @"tcdsgzg.aiff";

NSString *path = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES).firstObject stringByAppendingPathComponent:name];

NSData *data = [[NSData data]initWithContentsOfFile:path];

player = [[AVAudioPlayer alloc]initWithData:data error:nil];

//設(shè)置是否可以倍速(或者放慢速度)播放

player.enableRate = YES;

//設(shè)置播放速度 一般0.5-2.0

player.rate = 0.5;

[player play];

}

-(void)startPlayer1:(UIButton *)btn{

[player pause];

}

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末摹闽,一起剝皮案震驚了整個濱河市拜姿,隨后出現(xiàn)的幾起案子评抚,更是在濱河造成了極大的恐慌愚争,老刑警劉巖喂窟,帶你破解...
    沈念sama閱讀 211,376評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)啃憎,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,126評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來似炎,“玉大人辛萍,你說我怎么就攤上這事∠勖辏” “怎么了贩毕?”我有些...
    開封第一講書人閱讀 156,966評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長仆嗦。 經(jīng)常有香客問我辉阶,道長,這世上最難降的妖魔是什么瘩扼? 我笑而不...
    開封第一講書人閱讀 56,432評論 1 283
  • 正文 為了忘掉前任睛藻,我火速辦了婚禮,結(jié)果婚禮上邢隧,老公的妹妹穿的比我還像新娘。我一直安慰自己冈在,他們只是感情好倒慧,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,519評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著包券,像睡著了一般纫谅。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上溅固,一...
    開封第一講書人閱讀 49,792評論 1 290
  • 那天付秕,我揣著相機(jī)與錄音,去河邊找鬼侍郭。 笑死询吴,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的亮元。 我是一名探鬼主播猛计,決...
    沈念sama閱讀 38,933評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼爆捞!你這毒婦竟也來了奉瘤?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,701評論 0 266
  • 序言:老撾萬榮一對情侶失蹤煮甥,失蹤者是張志新(化名)和其女友劉穎盗温,沒想到半個月后藕赞,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,143評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡卖局,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,488評論 2 327
  • 正文 我和宋清朗相戀三年斧蜕,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片吼驶。...
    茶點(diǎn)故事閱讀 38,626評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡惩激,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蟹演,到底是詐尸還是另有隱情风钻,我是刑警寧澤,帶...
    沈念sama閱讀 34,292評論 4 329
  • 正文 年R本政府宣布酒请,位于F島的核電站骡技,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏羞反。R本人自食惡果不足惜布朦,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,896評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望昼窗。 院中可真熱鬧是趴,春花似錦、人聲如沸澄惊。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,742評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽掸驱。三九已至肛搬,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間毕贼,已是汗流浹背温赔。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留鬼癣,地道東北人陶贼。 一個月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像待秃,于是被迫代替她去往敵國和親骇窍。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,494評論 2 348

推薦閱讀更多精彩內(nèi)容