0

我正在尝试处理文件并运行以下命令

ffmpeg -i input.webm output.webm

我正在使用videoconverter.js的 ffmpeg 库来做这件事。我试图了解什么是错误的或如何解决它。

我最终得到这个:

Worker has received command
Received command: -i input.webm output.webm.  Processing with 268435456 bits.
ffmpeg version 2.2.1 Copyright (c) 2000-2014 the FFmpeg developers
  built on Jun  9 2014 20:24:32 with emcc (Emscripten GCC-like replacement) 1.12.0 (commit 6960d2296299e96d43e694806f5d35799ef8d39c)
  configuration: --cc=emcc --prefix=/Users/bgrinstead/Sites/videoconverter.js/build/ffmpeg/../dist --extra-cflags='-I/Users/bgrinstead/Sites/videoconverter.js/build/ffmpeg/../dist/include -v' --enable-cross-compile --target-os=none --arch=x86_32 --cpu=generic --disable-ffplay --disable-ffprobe --disable-ffserver --disable-asm --disable-doc --disable-devices --disable-pthreads --disable-w32threads --disable-network --disable-hwaccels --disable-parsers --disable-bsfs --disable-debug --disable-protocols --disable-indevs --disable-outdevs --enable-protocol=file --enable-libvpx --enable-gpl --extra-libs='/Users/bgrinstead/Sites/videoconverter.js/build/ffmpeg/../dist/lib/libx264.a /Users/bgrinstead/Sites/videoconverter.js/build/ffmpeg/../dist/lib/libvpx.a'
  libavutil      52. 66.100 / 52. 66.100
  libavcodec     55. 52.102 / 55. 52.102
  libavformat    55. 33.100 / 55. 33.100
  libavdevice    55. 10.100 / 55. 10.100
  libavfilter     4.  2.100 /  4.  2.100
  libswscale      2.  5.102 /  2.  5.102
  libswresample   0. 18.100 /  0. 18.100
  libpostproc    52.  3.100 / 52.  3.100
[vp8 @ 0xed8c00] Warning: not compiled with thread support, using thread emulation
Guessed Channel Layout for  Input Stream #0.0 : mono
Input #0, matroska,webm, from 'input.webm':
  Metadata:
    encoder         : Chrome
  Duration: N/A, start: 0.000000, bitrate: N/A
    Stream #0:0(eng): Audio: opus, 48000 Hz, mono (default)
    Stream #0:1(eng): Video: vp8, yuv420p, 640x480, SAR 1:1 DAR 4:3, 30 fps, 30 tbr, 1k tbn, 1k tbc (default)
[abuffer @ 0xedd670] Unable to parse option value "(null)" as sample format
    Last message repeated 1 times
    Last message repeated 1 times
[abuffer @ 0xedd670] Error setting option sample_fmt to value (null).
[graph 1 input from stream 0:0 @ 0xedd600] Error applying options to the filter.
Error opening filters!
Finished processing (took 673ms)

由于“无法将选项值“(null)”解析为样本格式',最终结果被停止。我将如何解决这个问题?

4

1 回答 1

2

您的ffmpeg构建使用的是旧的且不受支持的版本 2.2.1。原生支持 Opus 解码太老了(这个版本需要 libopus 来解码 Opus)。升级到从开发分支(“git master”)派生的构建或至少使用最新版本。

如果可能,您还应该使用现代的 libvpx。请注意,对于最近的 FFmpeg,您需要删除--disable-bsfs,因为 VP9 现在是 Webm 的默认视频编码器,它需要 vp9_superframe 比特流过滤器(它是自动应用的)。或者,您可以强制使用 VP8 编码-c:v libvpx

考虑为 Webm 添加 libopus(首选)或 libvorbis 支持;否则你将使用非常糟糕和实验性的 FFmpeg 原生 Vorbis 编码器。

于 2016-08-01T02:12:10.883 回答