I thought dbPowerAmp used Nero, or is that just for AAC?
post #16 of 23
3/31/09 at 12:35am
Be a part of the community.
It's free, join today!
|
Ahh that's interesting. Anyone actually tried ffmpeg's stab at ALAC encoding? Is it any better than dBpoweramp's windows implementation? Is it multi core aware?
I Do like that dBpoweramp's uses all 4 cores at once, Itunes is hopelessly single threaded, but seems to put the start/stop times in more accurately than dBpoweramp.. |

using ffmpeg for flac to alac goes like this
for a single file
ffmpeg -i input file.flac -acodec alac output file.m4a
alac to flac
ffmpeg -i input file.m4a output file.flac
batch convert from flac to alac In terminal cd to the folder where your files are then enter
for f in *.flac; do ffmpeg -i "$f" -acodec alac "${f%.flac}.m4a"; done
batch convert from alac to flac In terminal cd to the folder where your files are then enter
for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.flac"; done