Advertisement
Guest User

ExportMusic convert to flac (Fixed)

a guest
May 31st, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.23 KB | None | 0 0
  1. read ffmpeg
  2. read destinationPath
  3. [ ! -x "$ffmpeg" ] || [ ! -d "$destinationPath" ] && exit 1
  4.  
  5. while read file
  6. do
  7.     < /dev/null "$ffmpeg" -loglevel error -i "$file" -vn -acodec flac -y "$destinationPath/${file##*/}.flac"
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement