Most efficient way to convert a large ALAC library to MP3
Fresh3 days ago
Mar 15, 20264999 viewsConfidence Score0%
0%
Problem
I have a large library of CDs ripped to alac which I use as my main music library. I'd like to convert a copy of this library to vbr mp3 for portable devices, however I don't want to have to do this on my laptop, as there is approximately 650Gb of music and I travel to much to leave my laptop sitti…
Error Output
#!/bin/sh for file in "$@" ; do name=`echo "$file" | sed -e "s/.mp4$//g"` ffmpeg -i "$file" -ac 2 -f wav - | lame --preset standard - "$name.mp3" done
Unverified for your environment
Select your OS to check compatibility.
1 Fix
Canonical Fix
Unverified Fix
New Fix – Awaiting Verification
Fix for: Most efficient way to convert a large ALAC library to MP3
Low Risk
In the examples below, is assumed as the source directory. Create a script: If you want a different location to be used for the outputs, add this before : Convert using from moreutils: Not to be confused with GNU , which uses a different syntax:
Awaiting Verification
Be the first to verify this fix
Sign in to verify this fix