我已经尝试使用ffmpeg的各种参数来完成这项工作,但结果却导致了一个staticy音频文件。
我尝试过的一些内容是:
ffmpeg -i file.wma file.wav
ffmpeg -sameq -i file.wma file.wav
ffmpeg -i file.wma -ar 44100 -ac 1 -ab 64000 file.wav
ffmpeg -i file.wma -vn 64000 file.wav
这是音频文件的链接: (删除了断开的链接)
答案 0 :(得分:13)
我正在使用ffmpeg -i Untitled.wma Untitled.wav
,使用Ubuntu存储库中的ffmpeg。
版本输出:
FFmpeg version SVN-r0.5.1-4:0.5.1-1ubuntu1.2, Copyright (c) 2000-2009 Fabrice Bellard, et al.
configuration: --extra-version=4:0.5.1-1ubuntu1.2 --prefix=/usr --enable-avfilter --enable-avfilter-lavf --enable-vdpau --enable-bzlib --enable-libgsm --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libvorbis --enable-pthreads --enable-zlib --disable-stripping --disable-vhook --enable-runtime-cpudetect --enable-gpl --enable-postproc --enable-swscale --enable-x11grab --enable-libdc1394 --enable-shared --disable-static
libavutil 49.15. 0 / 49.15. 0
libavcodec 52.20. 1 / 52.20. 1
libavformat 52.31. 0 / 52.31. 0
libavdevice 52. 1. 0 / 52. 1. 0
libavfilter 0. 4. 0 / 0. 4. 0
libswscale 0. 7. 1 / 0. 7. 1
libpostproc 51. 2. 0 / 51. 2. 0
built on Sep 16 2011 17:04:18, gcc: 4.4.3
FFmpeg SVN-r0.5.1-4:0.5.1-1ubuntu1.2
libavutil 49.15. 0 / 49.15. 0
libavcodec 52.20. 1 / 52.20. 1
libavformat 52.31. 0 / 52.31. 0
libavdevice 52. 1. 0 / 52. 1. 0
libavfilter 0. 4. 0 / 0. 4. 0
libswscale 0. 7. 1 / 0. 7. 1
libpostproc 51. 2. 0 / 51. 2. 0
也许有帮助。
答案 1 :(得分:-1)
使用Mplayer将wma转换为wav
mplayer -ao pcm:file-name-in-wav.wav file-name-in-wma.wma
或
使用FFMpeg
ffmpeg -i myfile.wma myfile.wav