Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lebrunthibault/dd278f77915ec20822104de3f48831ae to your computer and use it in GitHub Desktop.
Save lebrunthibault/dd278f77915ec20822104de3f48831ae to your computer and use it in GitHub Desktop.
# cd in folder
$files = Get-ChildItem . -File "*.m4a"
foreach ($f in $files) { ffmpeg -i $f.name ($f.name.split(".")[0] + ".mp3") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment