Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ffmpeg wma to wav

Tags:

ffmpeg

I've tried all sorts of parameters with ffmpeg to make this work, but they all result in a staticy audio file as a result.

some of what i've tried are:

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

Here's a link to the audio file: (Removed broken link)

like image 214
Michael Avatar asked Dec 23 '11 00:12

Michael


1 Answers

It is working with ffmpeg -i Untitled.wma Untitled.wav for me, using ffmpeg from the Ubuntu repositories.

Version output:

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

Maybe it helps.

like image 137
hacksteak25 Avatar answered Oct 14 '22 00:10

hacksteak25