Created
June 1, 2018 05:02
-
-
Save david-wm-sanders/c531cd7debaf9dde01c399f434368d92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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