gpt4 book ai didi

ffmpeg - 在ffmpeg中使用另一个音频文件作为模板转换音频文件

转载 作者:行者123 更新时间:2023-12-04 23:34:05 24 4
gpt4 key购买 nike

我有一些 .mp3音频文件,具有不同的“配置”,如采样率、比特率等。

对于我的应用程序,其中一个正在工作,而其余的则没有。

如何使用工作文件的“配置”转换其余部分?

two sample files 的元数据:

~/Downloads ❯ ffmpeg -i working.mp3 -i not_working.mp3
ffmpeg version 2.8.3 Copyright (c) 2000-2015 the FFmpeg developers
built with Apple LLVM version 7.0.0 (clang-700.1.76)
configuration: --prefix=/usr/local/Cellar/ffmpeg/2.8.3 --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
[mp3 @ 0x7fd2d380da00] Skipping 0 bytes of junk at 33.
[mp3 @ 0x7fd2d380da00] Estimating duration from bitrate, this may be inaccurate
Input #0, mp3, from 'working.mp3':
Metadata:
encoder : Lavf52.64.2
Duration: 00:00:00.65, start: 0.000000, bitrate: 64 kb/s
Stream #0:0: Audio: mp3, 22050 Hz, mono, s16p, 64 kb/s
[mp3 @ 0x7fd2d4008800] Skipping 0 bytes of junk at 417.
Input #1, mp3, from 'not_working.mp3':
Duration: 00:00:01.83, start: 0.025057, bitrate: 46 kb/s
Stream #1:0: Audio: mp3, 44100 Hz, stereo, s16p, 46 kb/s
Metadata:
encoder : LAME3.99r

最佳答案

您可能需要更改 channel 布局和/或采样率:

ffmpeg -i input.mp3 -c:a libmp3lame -ar 22050 -ac 1 output.mp3

尝试 3 个命令:一个没有 -ar 22050 , 一个没有 -ac 1 , 和一个如上所示。

关于ffmpeg - 在ffmpeg中使用另一个音频文件作为模板转换音频文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33938491/

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