Skip to content

Instantly share code, notes, and snippets.

@patrickgill
Created September 10, 2017 06:24
Show Gist options
  • Save patrickgill/96e2692723c41dc5857f2c5852bb90ff to your computer and use it in GitHub Desktop.
Save patrickgill/96e2692723c41dc5857f2c5852bb90ff to your computer and use it in GitHub Desktop.
Convert files in current directory to FLAC
$files = Get-ChildItem .
foreach ($file in $files) {
ffmpeg -i $file $($file.BaseName + ".flac")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment