Skip to content

Instantly share code, notes, and snippets.

@tomerof
Created October 6, 2023 07:19
Show Gist options
  • Save tomerof/da33746c6042438b1871983d331248b8 to your computer and use it in GitHub Desktop.
Save tomerof/da33746c6042438b1871983d331248b8 to your computer and use it in GitHub Desktop.
useful ffmpeg commands

use ffmpeg to convert .flac to .mp3 (powershell)

dir *.flac | foreach {ffmpeg -i $_.FullName -ab 320k -map_metadata 0 -id3v2_version 3 $_.FullName.Replace('flac', 'mp3')}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment