菜鸟教程小白 发表于 2022-12-13 05:19:19

ios - AVPlayerItemVideoOutput copyPixelBuffer 总是返回 1280x720


                                            <p><p>我像这样实例化 AVPlayerItemVideoOutput:</p>

<pre><code>let videoOutput = AVPlayerItemVideoOutput(pixelBufferAttributes: )
</code></pre>

<p>然后像这样检索像素缓冲区:</p>

<pre><code>@objc func displayLinkDidRefresh(link: CADisplayLink) {
      let itemTime = videoOutput.itemTime(forHostTime: CACurrentMediaTime())

      if videoOutput.hasNewPixelBuffer(forItemTime: itemTime) {
            if let pixelBuffer = videoOutput.copyPixelBuffer(forItemTime: itemTime, itemTimeForDisplay: nil) {

            }
      }
    }
</code></pre>

<p>但由于某种原因 <code>CVPixelBufferGetHeight(pixelBuffer)</code> 或宽度。当 iPhone 的相机(横向或纵向)始终高度 = 1280 宽度 = 720 时拍摄视频时始终返回 1280x720。即使视频是4k。如果我从 instagram 或从互联网下载的任何其他视频(不是直接使用相机应用程序创建)加载方形视频,则当分辨率小于 720p 时,宽度和高度会正确打印。但是不同的分辨率,例如。 1008x1792 会抛出 CVPixelBufferGetHeight(pixelBuffer) = 1280</p>

<p>用相机拍摄的视频......它总是会抛出较低的分辨率。我尝试了 4k 和 1080 设置(您可以在 iOS 设置 > 相机中进行更改)。仍然.. 即使在 1080 中,我得到 1280x720 像素缓冲区。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我发现我使用的 UIPickerController 被设置为默认将所选视频从库中转码为中等设置。在这种情况下,它是 1280x720</p>

<p>我最终改变了选择器的这个属性</p>

<pre><code>picker.videoQuality = .typeHigh
picker.videoExportPreset =AVAssetExportPresetHighestQuality
</code></pre>

<p>尽管实际进行更改的属性是 <code>videoExportPreset</code> 另一个我不知道它的作用,即使文档指定它是用于录制视频时 <em>OR</em> 你选择一个视频。 </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - AVPlayerItemVideoOutput copyPixelBuffer 总是返回 1280x720,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/53716000/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/53716000/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - AVPlayerItemVideoOutput copyPixelBuffer 总是返回 1280x720