タグ付けされた質問 「ipod」

3
AVAssetReaderで波形を描く
私はassetUrlを使用してiPodライブラリから曲を読んでいます(コードではaudioUrlという名前です)私はそれをさまざまな方法で再生でき、カットでき、これで歳差運動をすることができますが...これで何をするのか本当にわかりません波形を描画するためのデータを取得するためのCMSampleBufferRef!ピーク値に関する情報が必要ですが、どうすればこの(おそらく別の)方法で取得できますか? AVAssetTrack * songTrack = [audioUrl.tracks objectAtIndex:0]; AVAssetReaderTrackOutput * output = [[AVAssetReaderTrackOutput alloc] initWithTrack:songTrack outputSettings:nil]; [reader addOutput:output]; [output release]; NSMutableData * fullSongData = [[NSMutableData alloc] init]; [reader startReading]; while (reader.status == AVAssetReaderStatusReading){ AVAssetReaderTrackOutput * trackOutput = (AVAssetReaderTrackOutput *)[reader.outputs objectAtIndex:0]; CMSampleBufferRef sampleBufferRef = [trackOutput copyNextSampleBuffer]; if (sampleBufferRef){/* what I gonna do …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.