Skip to content

Instantly share code, notes, and snippets.

@basso
Forked from sidewinder94/Convert.ps1
Created June 24, 2018 21:00
Show Gist options
  • Save basso/5f073715ba45dbf43e85e9be94be8c23 to your computer and use it in GitHub Desktop.
Save basso/5f073715ba45dbf43e85e9be94be8c23 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