31

我无法将视频文件转码为 webm,因为我的机器无法找到 libvorbis。当我运行以下命令时:

ffmpeg -y -i /public/uploads/tmp/1382112521-11953-7661/webm_Untitled.mov -vcodec libvpx -acodec libvorbis -s 640x360  -b 1500k -ab 160000 -f webm -g 30 -aspect 1.7777777777777777 /public/uploads/tmp/1382112521-11953-7661/tmpfile.webm

我得到错误

Unknown encoder 'libvorbis'

不过,我已经在我的机器上安装了 libvorbis(当我尝试“brew install libvorbis”时,它告诉我:警告:libvorbis-1.3.3 已经安装)。

我怎么解决这个问题?

这是完整的日志:

ffmpeg -y -i /public/uploads/tmp/1382112521-11953-7661/webm_Untitled.mov -vcodec libvpx -acodec libvorbis -s 640x360  -b 1500k -ab 160000 -f webm -g 30 -aspect 1.7777777777777777 /public/uploads/tmp/1382112521-11953-7661/tmpfile.webm
ffmpeg version 1.2.1 Copyright (c) 2000-2013 the FFmpeg developers
  built on Oct 18 2013 12:20:19 with Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM 3.2svn)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/1.2.1 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-avresample --enable-vda --cc=cc --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid --enable-libvpx
  libavutil      52. 18.100 / 52. 18.100
  libavcodec     54. 92.100 / 54. 92.100
  libavformat    54. 63.104 / 54. 63.104
  libavdevice    54.  3.103 / 54.  3.103
  libavfilter     3. 42.103 /  3. 42.103
  libswscale      2.  2.100 /  2.  2.100
  libswresample   0. 17.102 /  0. 17.102
  libpostproc    52.  2.100 / 52.  2.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/public/uploads/tmp/1382112521-11953-7661/webm_Untitled.mov':
  Metadata:
    major_brand     : qt  
    minor_version   : 0
    compatible_brands: qt  
    creation_time   : 2013-09-27 20:08:57
  Duration: 00:00:02.14, start: 0.000000, bitrate: 17460 kb/s
    Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080, 17292 kb/s, 29.88 fps, 29.83 tbr, 90k tbn, 180k tbc
    Metadata:
      creation_time   : 2013-09-27 20:08:57
      handler_name    : Core Media Data Handler
    Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 123 kb/s
    Metadata:
      creation_time   : 2013-09-27 20:08:57
      handler_name    : Core Media Data Handler
Please use -b:a or -b:v, -b is ambiguous
Unknown encoder 'libvorbis'
4

4 回答 4

70

2020年编辑:

Homebrew 现在默认安装 libvorbis,所以你可以运行:

brew install ffmpeg

如果您使用的是 Homebrew,请尝试以下操作:

brew install ffmpeg --with-libvorbis

...或者,如果您已经尝试使用 Homebrew 安装 ffmpeg...

brew reinstall ffmpeg --with-libvorbis

如果你也想要 libvpx:

brew reinstall ffmpeg --with-libvpx --with-libvorbis
于 2014-03-05T21:19:36.220 回答
4

--enable-libvorbis如果您想要 libvorbis 支持,您的 ffmpeg 构建未编译ffmpeg,但您有一些选择:

注意: Opus 已经淘汰了 Vorbis,因此请考虑改用 libopus——尤其是在编码为VP9 / VP8 (WebM) 时。


下载构建

这是一个简单的选择。已经编译的 macOS 版本的 ffmpeg可用,并带有 libvorbis 支持。您可以只下载可执行文件并选择将其放入/usr/local/bin.


家酿

Hombrew核心 FFmpeg 公式默认包含对 libvorbis 的支持(截至 2019-03-01)。首先,安装 Homebrew,然后运行:

brew install ffmpeg

但是,核心公式不再支持其他非默认选项,例如--with-aom,因此如果您想自定义它,请参阅下面的选项。

自制-ffmpeg

这是一个第三方水龙头,它提供了一个 Homebrew 公式,您可以启用许多其他选项。首先,安装 Homebrew,然后:

  1. ffmpeg如果您是从 Homebrew 核心安装的,请卸载:

    brew uninstall ffmpeg
    
  2. 然后从 homebrew-ffmpeg 安装 ffmpeg:

    brew tap homebrew-ffmpeg/ffmpeg
    brew install homebrew-ffmpeg/ffmpeg/ffmpeg
    

有关更多选项和信息,请参阅homebrew-ffmpeg


编译

有关手动编译的完整说明,请参阅FFmpeg Wiki:macOS

于 2013-10-18T17:10:23.163 回答
3

Homebrew在 2018 年末停止支持--with-libvorbis选项。包含用于 Linux、macOS 和 Windows 的 libvorbis 的预编译二进制文件:https ://ffmpeg.org/download.html

于 2019-03-01T06:54:53.440 回答
0

使用这里重建 ffmpeg 的建议解决了这个问题:

./configure --disable-encoder=vorbis --enable-libvorbis; make; make install

http://xiphmont.livejournal.com/51160.html

于 2013-10-18T18:20:12.350 回答