ffmpeg编解码器转换;无法配置编码器 [英] ffmpeg codec conversion; can't configure encoder

查看:1325
本文介绍了ffmpeg编解码器转换;无法配置编码器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我只是想将我拥有的vp9 webm转换为vp8 webm.这是我正在使用的命令.

I am simply trying to convert a vp9 webm I have into a vp8 webm. this is the command I'm using.

ffmpeg -i in.webm -c:v vp8 out.webm

vp8编码器返回一个奇怪的错误

the vp8 encoder returns a strange error

Input #0, matroska,webm, from 'in.webm':
  Metadata:
    encoder         : google
  Duration: 00:02:34.60, start: 0.000000, bitrate: 404 kb/s
    Stream #0:0(eng): Video: vp9 (Profile 0), yuv420p(tv, bt709/unknown/unknown), 640x360, SAR 1:1 DAR 16:9, 30 fps, 30 tbr, 1k tbn, 1k tbc (default)
Stream mapping:
  Stream #0:0 -> #0:0 (vp9 (native) -> vp8 (vp8_v4l2m2m))
Press [q] to stop, [?] for help
[vp8_v4l2m2m @ 0x56195db9f9f0] Could not find a valid device
[vp8_v4l2m2m @ 0x56195db9f9f0] can't configure encoder
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!

如果我对是否安装了正确的编码器和解码器有任何疑问,请输入ffmpeg -codecs | grep "vp[8-9]":

In case I get any questions about whether I have the right encoders and decoders installed here is the output of ffmpeg -codecs | grep "vp[8-9]":

 DEV.L. vp8                  On2 VP8 (decoders: vp8 vp8_v4l2m2m vp8_cuvid ) (encoders: vp8_v4l2m2m )
 D.V.L. vp9                  Google VP9 (decoders: vp9 vp9_v4l2m2m vp9_cuvid )

推荐答案

您的ffmpeg版本有一个Video4Linux包装器,可用于硬件VP8编码器,但没有实际的硬件VP8编码器.

Your ffmpeg build has a Video4Linux wrapper available for a hardware VP8 encoder, but no actual hardware VP8 encoder available.

对于VP8/VP9的软件编码,您需要启用并链接libvpx.您可以从 https://johnvansickle.com/ffmpeg/

For software encoding of VP8/VP9, you'll need libvpx enabled and linked. You can get a static git binary from https://johnvansickle.com/ffmpeg/

这篇关于ffmpeg编解码器转换;无法配置编码器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆