Skip to content

Instantly share code, notes, and snippets.

@basso
basso / Convert.ps1
Created June 24, 2018 21:00 — forked from sidewinder94/Convert.ps1
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")}