FFMPEG,像素化帧和webm格式

时间:2012-08-27 20:21:09

标签: ffmpeg webm

似乎每次分割.webm视频时,一半或更多的帧都会像素化并失真。

我的配置如下所示:

FFmpeg version 0.6.6-4:0.6.6-0ubuntu0.11.04.1, Copyright (c) 2000-2010 the Libav developers
  built on Jun 12 2012 16:35:16 with gcc 4.5.2
  configuration: --extra-version=4:0.6.6-0ubuntu0.11.04.1 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enable-bzlib --enable-libgsm --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-pthreads --enable-zlib --enable-libvpx --disable-stripping --enable-runtime-cpudetect --enable-vaapi --enable-gpl --enable-postproc --enable-swscale --enable-x11grab --enable-libdc1394 --enable-shared --disable-static

有没有人有类似这方面的经验?当我在同一系统上使用标准ffmpeg播放器播放相同的视频时,它们看起来很好。

1 个答案:

答案 0 :(得分:2)

如果您只是将.webm文件拆分为2个.webm文件,则需要在命令行中添加-vcodec copy -acodec copy,例如

ffmpeg -i input.webm -vcodec copy -acodec copy -ss 10 -t 10 output.webm

否则ffmpeg也会使用默认的比特率(即低比特率)对视频进行转码,这会导致像素化。而且,它使得分裂更加缓慢。