-
-
Save basso/5f073715ba45dbf43e85e9be94be8c23 to your computer and use it in GitHub Desktop.
Convert a folder using ffmpeg in Powershell
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
#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