Skip to content

Instantly share code, notes, and snippets.

@ssg
Created July 10, 2025 00:40
Show Gist options
  • Save ssg/b036801a956bd052172d5990a15fc066 to your computer and use it in GitHub Desktop.
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
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