20160824音频开发从AVSpeechSynthesisVoice开始及AVAudioPlayer开发的几个问题处理方法

本文探讨了iOS音频开发中的AVFoundation框架,从AVSpeechSynthesisVoice出发展示了文本转语音的方法,并详细讨论了如何处理静音、音频中断(如电话呼入)等问题,提供了关键代码示例和解决方案。
摘要由CSDN通过智能技术生成

我一直对音频开发还是比较有兴趣的,所以想深入了解一下,在ios中最重要的框架还是AVFoundation。

从AVSpeechSythesisVoice开始,先来几行代码,可以从文本转化为语音。

    AVSpeechUtterance *utterance = [[AVSpeechUtterance alloc] initWithString:@"hello world,please attention http://blog.csdn.net/u011397277"];
    utterance.rate = 0.4f;
//    utterance.voice = [AVSpeechSynthesisVoice voiceWithLanguage:@"en-US"];
    utterance.pitchMultiplier = 0.8f;
    utterance.postUtteranceDelay = 0.1f;
    
    [self.synthesizer speakUtterance:utterance];

-(AVSpeechSynthesizer *)synthesizer
{
    if (!_synthesizer) {
        _synthesizer = [[AVSpeechSynthesizer alloc] init];
    }
    return _synthesizer;
}
是不是很神奇,就几行代码实现了,需要导入头文件

#import <AVFoundation/AVFoundation.h>

如果大家有兴趣,可以查看这些源码,对音频的学习有很大的帮助。

github地址:https://github.com/tapharmonic/Learning-AV-Foundation


我在以前的工作中,遇到过这样的问题。应用正在播放音乐,当电话铃声响起,手机被静音,点击手机的锁屏键,插上耳机线,我们的应用应该如何处理

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值