Created
July 10, 2025 00:40
-
-
Save ssg/b036801a956bd052172d5990a15fc066 to your computer and use it in GitHub Desktop.
PowerShell snippet to convert all your mp3 files in current directory to opus using FFMpeg
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
dir *.mp3 -r | % { ffmpeg -hide_banner -i $_ -y -ab 256k $([Io.Path]::ChangeExtension($_.Name, ".opus")) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment