FFMpeg;混合两个音频流时出错
Posted
技术标签:
【中文标题】FFMpeg;混合两个音频流时出错【英文标题】:FFMpeg; Error when mixing two audio stream 【发布时间】:2021-05-24 11:36:45 【问题描述】:我正在使用 ffmpeg 使用此命令录制两个流:
ffmpeg -protocol_whitelist pipe,udp,rtp -fflags +genpts -f sdp -i pipe:0 \
-map 0:v:0 -c:v copy \
-filter_complex \
"[0:a:0]volume=0.5[a0]; \
[0:a:1]volume=0.5[a1]; \
[a0][a1]amerge=inputs=2,pan=stereo|c0<c0+c2|c1<c1+c3[out]" \
-map [out] -c:a libopus \
-flags +global_header out.webm
[0:v:0]
是我的视频流,[0:a:0]
和 [0:a:1]
是我的音频流,我想将它们混合起来并与视频流相关联。
但不幸的是,有时我会收到这个丑陋的错误,它会导致最终视频中的静音。我的意思是,当我收到此错误时,我的最终视频会变为静音。
未实现 LBRR 帧。将您的 FFmpeg 版本更新为 来自 Git 的最新版本。如果问题仍然存在,则表示您的 文件有一个尚未实现的功能。
解码 SILK 帧时出错。
解码 Opus 帧时出错。
我的ffmpeg版本是:
ffmpeg version 3.4.8-0ubuntu0.2 Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 7 (Ubuntu 7.5.0-3ubuntu1~18.04)
configuration: --prefix=/usr --extra-version=0ubuntu0.2 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --enable-gpl --disable-stripping --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librubberband --enable-librsvg --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzmq --enable-libzvbi --enable-omx --enable-openal --enable-opengl --enable-sdl2 --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libopencv --enable-libx264 --enable-shared
libavutil 55. 78.100 / 55. 78.100
libavcodec 57.107.100 / 57.107.100
libavformat 57. 83.100 / 57. 83.100
libavdevice 57. 10.100 / 57. 10.100
libavfilter 6.107.100 / 6.107.100
libavresample 3. 7. 0 / 3. 7. 0
libswscale 4. 8.100 / 4. 8.100
libswresample 2. 9.100 / 2. 9.100
libpostproc 54. 7.100 / 54. 7.100
我哪里错了?
【问题讨论】:
重复Failed to convert webm audio file to mp4 using FFMPEG 【参考方案1】:您应该更新您的ffmpeg
。显然你在 ubuntu 中默认安装它是这样的:
apt-get install ffmpeg
安装您提到的版本。 你可以像这样从 git repo 安装它:
apt-get install libvorbis-dev
apt-get install libvpx-dev
git clone https://github.com/FFmpeg/FFmpeg ffmpeg
cd ffmpeg
./configure --extra-cflags=-I/opt/local/include --extra-ldflags=-L/opt/local/lib --enable-nonfree --enable-libvpx --enable-libvorbis
make
make install
你可以通过这个安装的时候测试一下:
./ffmpeg
请注意你不能像以前那样运行ffmpeg
。您必须将其发送至/root/ffmpeg/ffmpeg
。
【讨论】:
更简单的方法是 download an already compiled ffmpeg 或查看 FFmpeg Wiki: Compile and Install on Ubuntu 以获取包含 libopus 的说明。如果您只启用 libvpx 和 libvorbis,则不需要--enable-gpl --enable-version3 --enable-nonfree
。以上是关于FFMpeg;混合两个音频流时出错的主要内容,如果未能解决你的问题,请参考以下文章