Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save david-wm-sanders/c531cd7debaf9dde01c399f434368d92 to your computer and use it in GitHub Desktop.
Save david-wm-sanders/c531cd7debaf9dde01c399f434368d92 to your computer and use it in GitHub Desktop.
$files = Get-ChildItem -File | Where-Object{$_.Extension -match "(wma)$" } | Select-Object -ExpandProperty BaseName
$files | ForEach-Object{ffmpeg.exe -i "$_.wma" "$_.mp3"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment