扫码关注官方订阅号
AVAudioRecorder录制的音频用AVAudioPlayer播放出来声音很小,采样率什么的各种属性都改来改去过了,还是很小,请问是咋回事?
光阴似箭催人老,日月如移越少年。
AVAudioSession *audioSession = [AVAudioSession sharedInstance]; NSError *err = nil; [audioSession setCategory :AVAudioSessionCategoryPlayback error:&err]; 弄好了,在播放前这样就可以了
楼上正解多谢楼上
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
NSError *err = nil;
[audioSession setCategory :AVAudioSessionCategoryPlayback error:&err];
弄好了,在播放前这样就可以了
楼上正解
多谢楼上