Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

how to convert wma files for iTunes

I will appreciate any help from anyone who shows me how to play wma audio files in Itunes. I do not want to use an outside non-Apple audio video converter. The quick time program plays the audio file but I do not know how to bring it in the Itunes Library.

Thank you

MacBook, Mac OS X (10.6.8), wma files will not play in Itunes

Posted on Oct 16, 2012 12:59 PM

Reply
77 replies

Aug 29, 2014 4:00 PM in response to sir-benjamino

I didn't really like any of these solutions so I put together a simple one liner using ffmpeg that will convert the files.

This one will recursively convert all files in sub directories:

find . -type d | while read -r dir; do pushd "$dir";for f in *.wma; do ffmpeg -y -i "$f" -c:a libfdk_aac -b:a 192k "${f%.wma}.m4a";done;ls;popd; done;


And this one can do just one directory by running it in the directory you need

for f in *.wma; do ffmpeg -y -i "$f" -c:a libfdk_aac -b:a 192k "${f%.wma}.m4a"; done;


ffmpeg is pretty easy to install:

http://www.renevolution.com/how-to-install-ffmpeg-on-mac-os-x/


And more details on the conversion process here:

http://sinclairmediatech.com/converting-wma-to-high-quality-m4a-audio/

Sep 13, 2014 1:05 PM in response to shuddha

If you're not afraid of the terminal there is an app that comes pre-installed on OSX called ffmpeg that will convert DRM-free wma to a number of different formats (including mp3 and AAC).


Open the terminal (use spotlight to search for terminal) change to the directory where your music is located


cd ~/Music/music


(adjust for where you actually stored your music so if you copied your music to a folder on your desktop it would be


cd ~/Desktop/music


Then you want to run ffmpeg on every .wma file in your music directory


for file in */**/*.wma; do ffmpeg -i "$file" -a "${file%.wma}.mp3"; done


It'll take a while but eventually all your files will be converted to mp3. now you can import into iTunes and delete the old folder.

Oct 19, 2014 2:03 PM in response to funfinger

iTunes would not even recognize my wma files - had to convert in order to import. Downloaded Adapter (free) and it took maybe 30 seconds to convert them all. Program is *extremely* user friendly - people who are having trouble with it must have corrupt files because all you need to do is drag & drop them and it does the rest. Could not ask for better. http://www.macroplant.com/adapter/?utm_source=Adapter+%28Mac%29&utm_medium=deskt op+app&utm_campaign=Adapter+%28Mac%29+2.1.2

May 10, 2016 7:56 PM in response to shuddha

Well here is what I did. I would drag my WMA files into my music in I-Tunes and it would ask if I wanted to convert and "yes" and it would say it was converted but I could not find the file and play it. I also would try and open with I-tunes and I-tunes would open but the file would not play. So I created a Play list in I-Tunes, named it WMA files. Opened up the folder with the WMA files, selected all and drag to the play list "WMA" again it ask if I wanted to convert and I said yes, they converted and showed up in the play list and I'm listing to them now in I-Tunes. I also selected them all in the WMA Play list and drag them back to a folder on my USB drive and the new converted file .m4a will now play in my car USB plug in where my WMA would not.

how to convert wma files for iTunes

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.