gpt4 book ai didi

ffmpeg 无法打开使用 Audacity 导出的简单 Microsoft wav 文件

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

我已经使用 Audacity 将声音文件导出到 microsoft wav。
我正在尝试使用 ffmpeg 打开此文件:

ffmpeg -i steps-stereo-16b-44khz.wav /tmp/test.ogg

这是我得到的输出:
fmpeg version 1.2.1 Copyright (c) 2000-2013 the FFmpeg developers
built on Jun 12 2013 13:46:11 with Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn)
configuration: --prefix=/opt/local --enable-swscale --enable-avfilter --enable-libmp3lame --enable-libvorbis --enable-libopus --enable-libtheora --enable-libschroedinger --enable-libopenjpeg --enable-libmodplug --enable-libvpx --enable-libspeex --enable-libass --enable-libbluray --enable-gnutls --enable-libfreetype --mandir=/opt/local/share/man --enable-shared --enable-pthreads --cc=/usr/bin/clang --arch=x86_64 --enable-yasm --enable-gpl --enable-postproc --enable-libx264 --enable-libxvid
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
[dca @ 0x7fd30c013600] Not a valid DCA frame

... SNIP ...

[dca @ 0x7fd5bc013600] Invalid bit allocation index
[dca @ 0x7fd5bc013600] error decoding block
Last message repeated 3 times
[dca @ 0x7fd5bc013600] Didn't get subframe DSYNC
[dca @ 0x7fd5bc013600] error decoding block
[wav @ 0x7fd5bc013000] max_analyze_duration 5000000 reached at 5009070 microseconds
[wav @ 0x7fd5bc013000] decoding for stream 0 failed
[wav @ 0x7fd5bc013000] Could not find codec parameters for stream 0 (Audio: dts ([1][0][0][0] / 0x0001), 192000 Hz, 2 channels, fltp, 0 kb/s): no decodable DTS frames
Consider increasing the value for the 'analyzeduration' and 'probesize' options
steps-stereo-16b-44khz.wav: could not find codec parameters

如果我将相同的文件导出到 .ogg 或 .aiff,没问题,以下工作正常:
ffmpeg -i steps-stereo-16b-44khz.aiff /tmp/test.ogg

知道有什么问题吗?

我的 wav file 的链接所以你可以尝试重现。

注意我的最终目标是分割音频文件。我知道我可以大胆地将文件直接导出到 .ogg。这只是一个测试用例。

编辑

使用 sox 等其他程序获取文件信息效果很好:
sox --info steps-stereo-16b-44khz.wav

Input File : 'steps-stereo-16b-44khz.wav'
Channels : 2
Sample Rate : 44100
Precision : 16-bit
Duration : 00:00:02.10 = 92608 samples = 157.497 CDDA sectors
File Size : 370k
Bit Rate : 1.41M
Sample Encoding: 16-bit Signed Integer PCM

最佳答案

您可以获得ffmpeg使用一些额外的输入选项来识别它:

ffmpeg -acodec pcm_s16le -i steps-stereo-16b-44khz.wav output.ogg

这是 ffmpeg 中的一个错误。 , ticket #2810: unsupported wav , 那 has been fixed不久前。您可以 compile ffmpeg或获取 recent build以利用修复。

请注意,对于 ogg 输出,默认编码器是 flac ,因此您可能需要添加 -codec:a libvorbis作为输出选项。

关于ffmpeg 无法打开使用 Audacity 导出的简单 Microsoft wav 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17809407/

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