• iOS 音频开发经验汇总


    iOS 音频开发经验汇总

    一.音乐播放类概念

    iOS 下能支持歌曲和声音播放的的类有几个:

    1. SystemSound
    2. AVFoundtion库中的AVAudioPlayer #重要

    3. MediMPMusicPlayerController

    经常使用音频控件
    3. MPMediaPickerController 本地音乐库选择器
    5. MPVolumeView 播放进度条

    这里有一个PPT在解释几种概念:

    https://ccrma.stanford.edu/~jsanchez/NSSpain.pdf
    这教程中同一时候用不同机制播放样例:
    https://github.com/jsanchezsierra/AudioLab

    声音可视化的设计

    假设想要程序中输出声音,波形,频谱以及其他特效,
    一定要看一下这一篇教程:

    iPodVisualizer

    http://www.raywenderlich.com/36475/how-to-make-a-music-visualizer-in-ios

    它是种用AVAudioPlayer 的averagePowerForChannel 这样接口来输出波形文件。
    MPMusicPlayerController没有发现支持这一功能
    这里写图片描写叙述

    aurioTouch

    另外Apple官方给出一个输出样例:aurioTouch 录音数据的波形,当中带普通波形文件,以及经过FFT运算得到频谱数据。能够參考。

    源代码在此:https://developer.apple.com/library/prerelease/ios/samplecode/aurioTouch/Introduction/Intro.html

    以及更新版(苹果已经移走这个版本号)
    https://github.com/caseytcaprice/aurioTouch2

    依据
    https://github.com/irtemed88/PitchDetector

    PitchDetector

    画得更加完美的波形文件:
    https://github.com/irtemed88/PitchDetector

    SpeakHere

    Apple官方给的样例,显示录音实时波开:
    https://developer.apple.com/library/ios/samplecode/SpeakHere/Introduction/Intro.html

    AvTouch

    更简单的声音转波形的样例
    https://developer.apple.com/library/ios/samplecode/avTouch/Introduction/Intro.html

    选择系统歌曲文件

    音乐App的歌曲来源有三种。一个是本地沙盒自带歌曲,还有一个网络歌曲,

    选择系统音乐库

    第三个就系统音乐库带的歌曲,

    它能够由 MPMediaPickerController 类来调用

    - (IBAction)addPressed:(id)sender {
        MPMediaType mediaType = MPMediaTypeMusic;
        MPMediaPickerController *picker = [[MPMediaPickerController alloc] initWithMediaTypes:mediaType];
        picker.delegate = self;
        [picker setAllowsPickingMultipleItems:YES];
        picker.prompt = NSLocalizedString(@"Select items to play", @"Select items to play");
        [self presentViewController:picker animated:YES completion:nil];
    }
    

    它通过MPMediaPickerControllerDelegate接口返回一个
    MPMediaItemCollection 选择的歌曲列列表,仅仅需对MPMediaPickerController调用例如以下接口就可以进行播放,以及上一首,下一首

    [self.player setQueueWithItemCollection:self.collection];

    假设是AVAudioPlayer来播放须要做得很多其他一点。

    就可以把MPMediaItemCollection里歌曲URL取出来。直接传给AVAudioPlayer就可以,这个URL格式相似于

    ipod-library://item/item.m4a?id=1529654720874100371

    - (void) mediaPicker: (MPMediaPickerController *) mediaPicker didPickMediaItems: (MPMediaItemCollection *) collection {
    
    
        MPMediaItem *item = [[collection items] objectAtIndex:0];
        NSURL *url = [item valueForProperty:MPMediaItemPropertyAssetURL];
    
        // Play the item using AVPlayer
        self.avAudioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil];
        [self.avAudioPlayer play];
    }
    

    列表播放

    MMMediaPlayer是自己主动支持,播放下一首,上一首可用例如以下方法:

    上一首:

    - (IBAction)rewindPressed:(id)sender {
        if ([self.player indexOfNowPlayingItem] == 0) {
            [self.player skipToBeginning];
        } else {
            [self.player endSeeking];
            [self.player skipToPreviousItem];
        }
    }

    下一首:

    - (IBAction)fastForwardPressed:(id)sender {
        NSUInteger nowPlayingIndex = [self.player indexOfNowPlayingItem];
        [self.player endSeeking];
        [self.player skipToNextItem];
        if ([self.player nowPlayingItem] == nil) {
            if ([self.collection count] > nowPlayingIndex+1) {
                // added more songs while playing
                [self.player setQueueWithItemCollection:self.collection];
                MPMediaItem *item = [[self.collection items] objectAtIndex:nowPlayingIndex+1];
                [self.player setNowPlayingItem:item];
                [self.player play];
            }
            else {
                // no more songs
                [self.player stop];
                NSMutableArray *items = [NSMutableArray arrayWithArray:[self.toolbar items]];
                [items replaceObjectAtIndex:3 withObject:self.play];
                [self.toolbar setItems:items];
            }
        }
    }

    暂停和恢复播放:

    - (IBAction)playPausePressed:(id)sender {
        [self.pause setTintColor:[UIColor blackColor]];
        MPMusicPlaybackState playbackState = [self.player playbackState];
        NSMutableArray *items = [NSMutableArray arrayWithArray:[self.toolbar items]];
        if (playbackState == MPMusicPlaybackStateStopped || playbackState == MPMusicPlaybackStatePaused) {
            [self.player play];
            [items replaceObjectAtIndex:3 withObject:self.pause];
        } else if (playbackState == MPMusicPlaybackStatePlaying) {
            [self.player pause];
            [items replaceObjectAtIndex:3 withObject:self.play];
        }
        [self.toolbar setItems:items animated:NO];
    }

    AVAudioPlayer 有播放结束的调用,因此在的上一首播完,重设一下一首歌就可以

    音乐后台播放

    假设须要后台播放音乐,须要在应有的info.plist声明
    否则会被系统强行干掉。


    Alt text

    网络音频播放

    AVAudioPlayer 不直接支持网络音频播放,能够先下载数据到一个NSData ,然后进行播放。

    NSData *mydata=[[NSDataalloc]initWithContentsOfURL:[NSURLURLWithString:command]];
    
        AVAudioPlayer *player=[[AVAudioPlayeralloc]initWithData:mydata error:nil];
    
        [player prepareToPlay];
    
        [player play];

    但这样的对于流媒体就无能为例了。因此能够使用更新的AVPlayer,它能直接播放(可是底层接口较少)

    AVPlayer * _player = [[AVPlayer alloc] initWithURL:[NSURL URLWithString:@"http://stream.jewishmusicstream.com:8000"]];

    音乐按键控制

    AudioPlayer 能够接收 线控及蓝牙耳机的按键控制,
    前题的要真的有一首的歌曲播放时,才干捕获按键。

    这个能够在AppDelegate 中remoteControlReceivedWithEvent来捕获各种按键。

    - (void)remoteControlReceivedWithEvent:(UIEvent *)event
    {
        NSLog(@"remoteControlReceivedWithEvent %d",event.subtype);
    
        switch (event.subtype) {
            case UIEventSubtypeRemoteControlPlay:
                [self postNotificationWithName:remoteControlPlayButtonTapped];
                break;
            case UIEventSubtypeRemoteControlPause:
                [self postNotificationWithName:remoteControlPauseButtonTapped];
                break;
            case UIEventSubtypeRemoteControlStop:
                [self postNotificationWithName:remoteControlStopButtonTapped];
                break;
            case UIEventSubtypeRemoteControlNextTrack:
                [self postNotificationWithName:remoteControlForwardButtonTapped];
                break;
            case UIEventSubtypeRemoteControlPreviousTrack:
                [self postNotificationWithName:remoteControlBackwardButtonTapped];
                break;
            default:
                [self postNotificationWithName:remoteControlOtherButtonTapped];
                break;
        }
    }

    理论上。能够在后台不断播放一段音频(音量设为0)来实如今应用中捕获耳机按键。

    比方蓝点工坊就用这种方法把蓝牙耳机充当自拍器用。

    可是这样的使用方法是过不了App Store 的审核 。所以仅仅能用Ad hoc发行方法。

    详细參考:
    https://github.com/MosheBerman/ios-audio-remote-control

    它是在后台不断播放一个网络电台节目来达到目的。实际蓝点工坊測试測放App自带一个声音文件,如caf效果是一样的。

  • 相关阅读:
    一本通 P1806 计算器
    英语单词
    Dubbo springboot注解
    java连接zookeeper集群
    zookeeper集群
    入住博客园!
    解决 windows MySQL安装过程中提示计算机丢失vcruntime140_1.dll
    django 订单并发修改库存乐观悲观锁
    毒鸡汤
    Java反射机制
  • 原文地址:https://www.cnblogs.com/cynchanpin/p/7205009.html
Copyright © 2020-2023  润新知