1、AVAudioSessionCategory说明

  • 1.1 AVAudioSessionCategoryAmbient 或 kAudioSessionCategory_AmbientSound

    • 用于非以语音为主的应用,使用这个category的应用会随着静音键和屏幕关闭而静音。
    • 并且不会中止其它应用播放声音,可以和其它自带应用如iPod,safari等同时播放声音。
    • 注意:该Category无法在后台播放声音
  • 1.2 AVAudioSessionCategorySoloAmbient 或 kAudioSessionCategory_SoloAmbientSound
    • 类似于AVAudioSessionCategoryAmbient 不同之处在于它会中止其它应用播放声音。
    • 这个category为默认category。该Category无法在后台播放声音
  • 1.3 AVAudioSessionCategoryPlayback 或 kAudioSessionCategory_MediaPlayback
    • 用于以语音为主的应用,使用这个category的应用不会随着静音键和屏幕关闭而静音。
    • 可在后台播放声音
  • 1.4 AVAudioSessionCategoryRecord 或 kAudioSessionCategory_RecordAudio
    • 用于需要录音的应用,设置该category后,除了来电铃声,闹钟或日历提醒之外的其它系统声音都不会被播放。
    • 该Category只提供单纯录音功能。
  • 1.5 AVAudioSessionCategoryPlayAndRecord 或 kAudioSessionCategory_PlayAndRecord
    • 用于既需要播放声音又需要录音的应用,语音聊天应用(如微信)应该使用这个category。
    • 该Category提供录音和播放功能。如果你的应用需要用到iPhone上的听筒,该category是你唯一的选择,
    • 在该Category下声音的默认出口为听筒(在没有外接设备的情况下)。
  • 1.6 注意

    • 并不是一个应用只能使用一个category,程序应该根据实际需要来切换设置不同的category,
    • 举个例子,录音的时候,需要设置为AVAudioSessionCategoryRecord,
    • 当录音结束时,应根据程序需要更改category为AVAudioSessionCategoryAmbient,
    • AVAudioSessionCategorySoloAmbient或AVAudioSessionCategoryPlayback中的一种。

2、录音后再播放声音太小问题解决

  • 2.1 方法一:录音结束恢复播放模式

    /********************** 开始录音 **********************************/
    - (void)onRecordSoundStart:(UIButton *)sender {
    if (![self canRecord]) {
    [[[UIAlertView alloc] initWithTitle:nil message:[NSString stringWithFormat:@"应用需要访问您的麦克风。\n请启用麦克风-设置/隐私/麦克风"]
    delegate:nil
    cancelButtonTitle:@"好"
    otherButtonTitles:nil] show];
    return;
    }
    [self initRecordSession];
    NSDictionary *settings = [[NSDictionary alloc] initWithObjectsAndKeys:
    [NSNumber numberWithFloat:44100.0], AVSampleRateKey , //采样率 8000/44100/96000
    [NSNumber numberWithInt:kAudioFormatMPEG4AAC], AVFormatIDKey, //录音格式
    [NSNumber numberWithInt:16], AVLinearPCMBitDepthKey, //线性采样位数 8、16、24、32
    [NSNumber numberWithInt:2], AVNumberOfChannelsKey, //声道 1,2
    [NSNumber numberWithInt:AVAudioQualityHigh], AVEncoderAudioQualityKey, //录音质量
    nil]; NSURL *strURL = [NSURL fileURLWithPath:[self GetRecordSoundFileName:sender.tag]];
    _recorder = [[AVAudioRecorder alloc] initWithURL:strURL settings:settings error:nil];
    _recorder.meteringEnabled = YES;
    _recorder.delegate = self;
    [_recorder prepareToRecord];
    [_recorder record];
    _timerRec = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(detectionVoice) userInfo:nil repeats:YES];
    } /********************** 结束录音 **********************************/
    - (void)onRecordSoundStop:(UIButton *)sender { AVAudioSession *session = [AVAudioSession sharedInstance];
    [session setCategory:AVAudioSessionCategoryPlayback error:nil]; //此处需要恢复设置回放标志,否则会导致其它播放声音也会变小
    [session setActive:YES error:nil];
    [_timerRec invalidate];
    if (_recorder.currentTime > 1) {
    [_recorder stop];
    PlayNodeData *model = _dataOfVideoArrary[sender.tag];
    model.hasSound = YES;
    [_btnPlay setImage:[UIImage imageNamed:@"simulate_image_play1"] forState:UIControlStateNormal];
    }
    } /********************** 录音器是否可用检查 **********************************/
    - (BOOL)canRecord {
    __block BOOL bCanRecord = YES;
    if ([[[UIDevice currentDevice] systemVersion] compare:@"7.0"] != NSOrderedAscending) {
    AVAudioSession *audioSession = [AVAudioSession sharedInstance];
    if ([audioSession respondsToSelector:@selector(requestRecordPermission:)]) {
    [audioSession performSelector:@selector(requestRecordPermission:) withObject:^(BOOL granted) {
    if (granted) {
    bCanRecord = YES;
    }
    else {
    bCanRecord = NO;
    }
    }];
    }
    } return bCanRecord;
    } /********************** 初始化录音器 **********************************/
    - (void)initRecordSession {
    AVAudioSession *session = [AVAudioSession sharedInstance];
    [session setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];
    [session setActive:YES error:nil];
    } /********************** 录音中音量更新 **********************************/
    - (void)detectionVoice {
    return;
    [_recorder updateMeters];//刷新音量数据
    //获取音量的平均值 [recorder averagePowerForChannel:0];
    //音量的最大值 [recorder peakPowerForChannel:0];
    double lowPassResults = pow(10, (0.05 * [_recorder peakPowerForChannel:0]));
    NSLog(@"%lf",lowPassResults);
    //最大50 0
    //图片 小-》大
    if (0 < lowPassResults <= 0.06) {
    ;
    }
    else if (0.06 < lowPassResults <= 0.13) {
    ;
    }
    else if (0.13 < lowPassResults <= 0.20) {
    ;
    }
    else if (0.20 < lowPassResults <= 0.27) {
    ;
    }
    }
  • 2.2 方法二:设置听筒模式

    [audioSession setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker error:&error];

IOS中录音后再播放声音太小问题解决的更多相关文章

  1. iOS AVAudioPlayer播放音频时声音太小

    iOS AVAudioPlayer播放音频时声音太小 //引入AVFoundation类库,设置播放模式就可以了 do { try AVAudioSession.sharedInstance().ov ...

  2. eclipse下java中凝视字体太小和xml中中文字体太小问题解决方法

    我们在win7下进行android应用开发.须要搭建对应的开发环境.如今普遍基本上都是eclipse+adt+sdk,在本人搭建完环境后,发现eclipse下.java中的凝视和xml中的中文字体变得 ...

  3. iOS中书写代码规范35条小建议

    1.精简代码, 返回最后一句的值,这个方法有一个优点,所有的变量都在代码块中,也就是只在代码块的区域中有效,这意味着可以减少对其他作用域的命名污染.但缺点是可读性比较差 NSURL *url = ({ ...

  4. iOS中转义后的html标签如何还原

    最近用swift做一个公司的小项目,遇到一个问题,就是通过api获取的html文本中的标签都已经被转义了, <p class="MsoNormal" align=" ...

  5. ligerUI布局时,Center中的Tab高度太小问题解决

    1.0 引用的js,css <link href="/Content/scripts/ligerUI/skins/Aqua/css/ligerui-all.css" rel= ...

  6. ORA-06502: PL/SQL: 数字或值错误 : 字符串缓冲区太小解决办法

    1.今天写的存储过程在执行过程中,报如下错误. exec PRO_T_008pro_update_add_delete(17,1,1,1,1,45.0,54.0,45.0,45.0,45.0,54.0 ...

  7. iOS录音后播放声音变小的解决方法

    目前需求是录音之后再播放出来.经常会出现播放声音变很小的情况. 解决方法: if (recorder.recording){ [recorder stop]; } [[AVAudioSession s ...

  8. iOS 多个异步网络请求全部返回后再执行具体逻辑的方法

    对于dispatch多个异步操作后的同步方法,以前只看过dispatch_group_async,看看这个方法的说明: * @discussion * Submits a block to a dis ...

  9. IOS 实现 AAC格式 录音 录音后自动播放

    废话不说了 不知道aac可以百度一下 下面直接上代码,一个h文件 一个m文件 搞定! #import <AVFoundation/AVFoundation.h> #import <U ...

随机推荐

  1. Hybrid APP混合开发

    写在前面: 由于业务需要,接触到一个Hybrid APP混合开发的项目.当时是第一次接触混合开发,有一些经验和总结,欢迎各位一起交流学习~ 1.混合开发概述 Hybrid App主要以JS+Nativ ...

  2. Linux查看物理CPU个数、核数,逻辑CPU个数

    学习swoole的时候,建议开启的worker进程数为cpu核数的1-4倍.于是就学习怎么查看CPU核数 # 查看物理CPU个数 cat /proc/cpuinfo| grep "physi ...

  3. Common 通用类库

    /// <summary> /// 传入虚拟路径 返回全路径的html字符串 /// </summary> /// <param name="context&q ...

  4. (转)C# 特性(Attribute)详细介绍

    本文转载自:http://www.cnblogs.com/luckdv/articles/1682488.html 1.什么是Atrribute 首先,我们肯定Attribute是一个类,下面是msd ...

  5. java代码swing编程 制作一个单选按钮的Frame

    不善于思考,结果费了时间,也没有效果 下面的框框可以做出来. package com.kk; import javax.swing.JFrame; import javax.swing.JLabel; ...

  6. QTP11使用DOM XPath以及CSS识别元素对象

    我们知道,像DOM,Html,CSS,XPath等对对象的识别策略广泛运用于一些开源的工具,例如:Selenium,Watir,Watir-Webdriver,以前qtp版本是不支持这些东西的,现在q ...

  7. Java中Object.hashCode contract

    面试时在这个问题上犯了个错误,只重写了equals方法,而没有覆盖hashCode()方法. 回来重读了Effective Java的Item 9,里面提到Object.hashCode contra ...

  8. 问题:table 可否实现对角线;结果:用div+css模拟表格对角线

    首先声明: 这只是探讨一种CSS模拟表格对角线的用法,实际在工作中可能觉得这样做有点小题大作,这不是本主题讨论的重点.如果对此深以为然的朋友,请一笑过之... 有时在插入文档时,要用到表格对角线,常见 ...

  9. BST树、B-树、B+树、B*树

    BST树 即二叉搜索树: 1.所有非叶子结点至多拥有两个儿子(Left和Right): 2.所有结点存储一个关键字: 3.非叶子结点的左指针指向小于其关键字的子树,右指针指向大于其关键字的子树: 如: ...

  10. sys添加调用模块的路径;遍历可以调用模块的路径

    import sys sys.path.append("D:") for i in sys.path: print(i)