作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在与 AVAssetReader 和 AVAssetWriter 合作制作多轨电影。所以我使用 [AVAssetReaderAudioMixOutput copyNextSampleBuffer] 和 [AVAssetWriterInput appendSampleBuffer] 完成了它。
但我不断收到错误:[AVAssetReaderTrackOutput copyNextSampleBuffer] 无法复制下一个示例缓冲区,除非 Assets 读取器处于“读取”状态。如何解决这个问题。
最佳答案
MPMediaQuery *meidaQuery = [[[MPMediaQuery alloc] init] autorelease];
MPMediaItem *mediaItem = [[meidaQuery items] objectAtIndex:0];
AVURLAsset *urlAsset = [AVURLAsset URLAssetWithURL:[mediaItem valueForProperty:MPMediaItemPropertyAssetURL] options:nil];
AVAssetReader *assetReader = [AVAssetReader assetReaderWithAsset:urlAsset error:nil];
AVAssetTrack *assetTrack = [[urlAsset tracksWithMediaType:AVMediaTypeAudio] objectAtIndex:0];
AVAssetReaderTrackOutput *assetReaderTrackOutput = [AVAssetReaderTrackOutput assetReaderTrackOutputWithTrack:assetTrack outputSettings:NULL];
[assetReader addOutput:assetReaderTrackOutput];
[assetReader startReading];
CMSampleBufferRef sampleBufferRef = [assetReaderTrackOutput copyNextSampleBuffer];
关于iphone- [AVAssetReaderAudioMixOutput copyNextSampleBuffer] 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5360977/
我正在与 AVAssetReader 和 AVAssetWriter 合作制作多轨电影。所以我使用 [AVAssetReaderAudioMixOutput copyNextSampleBuffer]
我是一名优秀的程序员,十分优秀!