1

我正在尝试使用 FFMPEG(2.3.3 版)和 Python 进行编码(VP8 编解码器)和编写视频。但是,在我完成视频编码后,我得到了这些对角绿色条纹伪影,但我找不到原因。

我在内存中有一系列以 numpy ndarrays 形式存在的帧,我使用以下方法综合生成这些帧用于测试目的:

def _generate_test_images(self, samples=50):
    '''
    Creates an image array gradually changing from black to white
    '''
    pixelValues = np.linspace(0, 255, samples)

    imageList = [np.full((100, 100, 3), pixelValue, dtype=np.uint8)
                 for pixelValue in pixelValues]

    return np.array(imageList)

然后我使用 Python 子进程模块打开到 FFMPEG 的管道并写入图像数据。我曾尝试使用 stdin.write 并进行通信,但两者都会产生绿色条纹问题。以下是我与 FFMPEG 交互的方式:

    import subprocess as sp
    params = get_params() #provides info like threads, frame size, etc.

    command = list()
    command.extend(['/opt/ffmpeg/bin/ffmpeg'])
    command.extend(['-y'])
    command.extend(['-f', 'rawvideo'])
    command.extend(['-vcodec', 'rawvideo'])
    command.extend(['-s', params['frameSize']])
    command.extend(['-pix_fmt', 'bgr24'])
    command.extend(['-r', '1'])
    command.extend(['-an'])
    command.extend(['-i', '-'])
    command.extend(['-an'])
    command.extend(['-codec:v', 'libvpx'])
    command.extend(['-quality', 'good'])
    command.extend(['-cpu-used', '0'])
    command.extend(['-b:v', params['bitrate']])
    command.extend(['-qmin', '4'])
    command.extend(['-qmax', '42'])
    command.extend(['-maxrate', '1M'])
    command.extend(['-bufsize', '2M'])
    command.extend(['-threads', params['threads']])
    command.extend(['-f', 'webm'])
    command.extend([params['target']])

    pipe = sp.Popen(command, stdin=sp.PIPE, stdout=sp.PIPE, stderr=sp.PIPE, bufsize=-1)
    pipe.communicate(input=frameArray.tostring())

但是,当我的视频完成编码后,这就是我所看到的:

带有绿色条纹伪影的图像

这是什么原因造成的?

4

1 回答 1

3

This usually has to do with width not divisible by 4 or 8 or some other similar number.

于 2014-11-05T22:31:20.850 回答