Skip to content

Instantly share code, notes, and snippets.

@sidewinder94
Created January 13, 2017 13:41
Show Gist options
  • Save sidewinder94/f6ec5d4c035284bc2681edfcddd39826 to your computer and use it in GitHub Desktop.
Save sidewinder94/f6ec5d4c035284bc2681edfcddd39826 to your computer and use it in GitHub Desktop.
Convert a folder using ffmpeg in Powershell
#Replace the extensions if needed
Get-ChildItem -File | Foreach {ffmpeg.exe -i $_.FullName -vn -acodec copy ($_.FullName -replace "\.mp4", ".aac")}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment