我有一堆以结尾的文件.at9
,文件给了我这个:
; file m330000001_0202fix.at9
m330000001_0202fix.at9: RIFF (little-endian) data, WAVE audio, 4 channels 48000 Hz
我尝试使用ffmpeg
将它们转换为 ogg 但收到此错误:
; ffmpeg -i m330000001_0202fix.at9 m330000001_0202fix.ogg
ffmpeg version 3.3.6 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 7 (GCC)
configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg --docdir=/usr/share/doc/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --optflags='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic' --extra-ldflags='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld ' --extra-cflags='-I/usr/include/nvenc ' --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3 --enable-bzlib --disable-crystalhd --enable-fontconfig --enable-frei0r --enable-gcrypt --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libcdio --enable-indev=jack --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libmp3lame --enable-nvenc --enable-openal --enable-opencl --enable-opengl --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libvorbis --enable-libv4l2 --enable-libvidstab --enable-libvpx --enable-libx264 --enable-libx265 --enable-libxvid --enable-avfilter --enable-avresample --enable-postproc --enable-pthreads --disable-static --enable-shared --enable-gpl --disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-libmfx --enable-runtime-cpudetect
libavutil 55. 58.100 / 55. 58.100
libavcodec 57. 89.100 / 57. 89.100
libavformat 57. 71.100 / 57. 71.100
libavdevice 57. 6.100 / 57. 6.100
libavfilter 6. 82.100 / 6. 82.100
libavresample 3. 5. 0 / 3. 5. 0
libswscale 4. 6.100 / 4. 6.100
libswresample 2. 7.100 / 2. 7.100
libpostproc 54. 5.100 / 54. 5.100
[AVIOContext @ 0x55f4dd4344a0] unknown subformat:d242e147ba368d4d88fc61654f8c836c {47e142d2-36ba-4d8d-88fc-61654f8c836c}
[wav @ 0x55f4dd42b720] Could not find codec parameters for stream 0 (Audio: none, 48000 Hz, 4 channels (FC), 72 kb/s): unknown codec
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, wav, from 'm330000001_0202fix.at9':
Duration: 00:01:24.01, bitrate: 240 kb/s
Stream #0:0: Audio: none, 48000 Hz, 4 channels (FC), 72 kb/s
Stream mapping:
Stream #0:0 -> #0:0 (? (?) -> vorbis (libvorbis))
Decoder (codec none) not found for input stream #0:0
我在这里缺少什么?
答案1
AT9 文件有一个 RIFF 波形头,但它们不是 WAVE 文件,它们实际上是 PlayStation 音频文件 (ATRAC9)。
通常推荐的编码/解码工具是由 Sony 创建的名为 的工具at9tool.exe
,但该工具仅适用于 Windows,并且是专有的。它可以在 Wine 下使用。
还有一个可以解码AT9的工具,VGA音频。它可以为 Linux 构建。