代码如下。图像由 PyAV 库解码。在图片的顶部有一个水平的绿色条。大概1个像素高度。你知道如何避免这种情况吗?我已经看到很多关于 VLC 播放器禁用硬件加速的建议。它已经在 pygame 中被禁用。我在 Windows10 64 位上工作。
import av
import pygame
import time
container = av.open('video.mp4') # libx264 en-/decoded, pixel format yuv420p
container.streams.video[0].thread_type = 'AUTO'
frameSequence = container.decode(video=0)
for _ in range(100):
image = next(frameSequence) #skip some frames
pygame.init()
trueResolution = pygame.display.list_modes()[0] # corresponds to video, as it FULL HD
#also tested with HD
pygame.display.set_mode(trueResolution)
ovl = pygame.Overlay(pygame.YV12_OVERLAY,trueResolution)
ovl.display((image.planes[0], image.planes[1], image.planes[2]))
time.sleep(10)
我还尝试用其他行替换每个平面中的第一行,以检查图像是否已损坏。结果是一样的,所以图像似乎是正确的。
UPD1。视频链接https://drive.google.com/file/d/1t6d5weBVeW4EWzGI1gytmUBwXF91dNC9/view?usp=sharing
图片上方带有绿线的屏幕截图
万千封印
相关分类