gpt4 book ai didi

linux - FFMpeg;混合两个音频流时出错

转载 作者:行者123 更新时间:2023-12-04 22:57:50 26 4
gpt4 key购买 nike

我正在使用以下命令通过 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 frames is not implemented. Update your FFmpeg version to thenewest one from Git. If the problem still occurs, it means that yourfile has a feature which has not been implemented.

Error decoding a SILK frame.

Error decoding an Opus frame.


我的 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
我哪里错了?

最佳答案

您应该更新您的 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 .

关于linux - FFMpeg;混合两个音频流时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66312117/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com