web-dev-qa-db-ja.com

WebmへのffmpegMP4の問題

Mp4をwebmに変換しようとすると、エラーが発生します。

Encoder (codec vp8) not found for output stream #0:0

グーグル検索は私がlibvpxをインストールする必要があると私に言います、しかし私はそれをしました。

これが残りです:

Logans-MacBook-Pro:desktop loganmccoy$ ffmpeg -i video.mp4 -acodec libvorbis -aq 5 -ac 2 -qmax 25 -threads 2 myvideo.webm
ffmpeg version 2.8 Copyright (c) 2000-2015 the FFmpeg developers
  built with Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/2.8 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --Host-cflags= --Host-ldflags= --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-vda
  libavutil      54. 31.100 / 54. 31.100
  libavcodec     56. 60.100 / 56. 60.100
  libavformat    56. 40.101 / 56. 40.101
  libavdevice    56.  4.100 / 56.  4.100
  libavfilter     5. 40.101 /  5. 40.101
  libavresample   2.  1.  0 /  2.  1.  0
  libswscale      3.  1.101 /  3.  1.101
  libswresample   1.  2.101 /  1.  2.101
  libpostproc    53.  3.100 / 53.  3.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'video.mp4':
  Metadata:
    major_brand     : M4V 
    minor_version   : 1
    compatible_brands: M4V mp42isom
    creation_time   : 2015-09-21 06:30:12
  Duration: 00:00:10.58, start: 0.000000, bitrate: 1264 kb/s
    Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709), 1280x720, 1253 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default)
    Metadata:
      creation_time   : 2015-09-21 06:30:12
      handler_name    : Mainconcept MP4 Video Media Handler
      encoder         : AVC Coding
File 'myvideo.webm' already exists. Overwrite ? [y/N] y
Output #0, webm, to 'myvideo.webm':
  Metadata:
    major_brand     : M4V 
    minor_version   : 1
    compatible_brands: M4V mp42isom
    Stream #0:0(eng): Video: vp8, none, q=2-31, 128 kb/s (default)
    Metadata:
      creation_time   : 2015-09-21 06:30:12
      handler_name    : Mainconcept MP4 Video Media Handler
Stream mapping:
  Stream #0:0 -> #0:0 (h264 (native) -> ? (?))
Encoder (codec vp8) not found for output stream #0:0

何か案は?

4
Pat

Libvpxをインストールした可能性がありますが、ffmpegビルドに--enable-libvpx(および--enable-libvorbisまたは--enable-libopus)がないため、それをサポートするように構成されていません。

コンパイルffmpeg ができますが、最も簡単な方法は単純に ffmpegの静的ビルドをダウンロード :libvpxをサポートしています。

1
llogan