Got a few alac files off the net and looked around for converting solutions. Might be of use to some.
Players which handle alac
VLC plays them
QMMP (right-click on player/settings/plugins/FFmpeg plugin/highlight/Preferences/Tick alac )
deadbeef
aqualung
xine
audacious
Personally i love alac but if you need/want to convert them here goes...
to batch convert quickly to flac/wav
cd (change directory) to you alac files in your terminal then enter
Code:for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.flac"; done
To decompress to wav use same as above just change word flac for wav
===============================================
and wav to alac
Code:for f in *.wav; do ffmpeg -i "$f" -acodec alac "${f%.wav}.m4a"; done
ALSO now ffmpeg handles converting to alac
==========================================
==========================================
or for single file with FFMPEG
============= ==============
wav to m4a ==>
and to convert from alac (m4a) to wav or flacCode:ffmpeg -i <input> -acodec alac <output>.m4a
Code:ffmpeg -i <input>.m4a <output>.wav
Code:ffmpeg -i <input>.m4a <output>.flac
there is also a way to do this with shntool would anyone know how to?



Adv Reply

Bookmarks