5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AVAudioPlayerNodeで特定の箇所から再生

Last updated at Posted at 2015-10-03

AudioEngineを使った音声再生をやっていて、
再生、停止とかはサンプルとかで色々わかったんだけど
スライダーで移動した際に特定の箇所から再生する方法がわからなかったんですが
最初はAVAudioPlayerNodeのリファレンス見てて[

PBAudioPlayer.m
        // ↓ここが重要
        [_playerNode scheduleSegment:_currentAudioFile
                       startingFrame:time * _currentAudioFile.fileFormat.sampleRate
                          frameCount:_currentAudioFile.length - time * _currentAudioFile.fileFormat.sampleRate
                              atTime:nil
                   completionHandler:nil];

scheduleSegmentでした
確かに時間パラメータに入ってるし。。。。
これリファレンスだと説明書きがないし。
あとAppleのリファレンスって他の言語に比べてすごいわかりづらいと思うのは俺だけだろうか見ててさっぱりわからんし、サンプルも微妙なものが多いし、どうやって調べたらいいのか正直わからん!

5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?