Skip to content

Instantly share code, notes, and snippets.

@allmeta
Created November 5, 2022 15:34
Show Gist options
  • Save allmeta/ad64b46c3effac458ced949d5f13da9d to your computer and use it in GitHub Desktop.
Save allmeta/ad64b46c3effac458ced949d5f13da9d to your computer and use it in GitHub Desktop.
flac to aiff
for /f "delims=" %i in ('dir /b/s *.flac') do ffmpeg -i "%i" -map_metadata 0 -write_id3v2 1 -c:v copy "%~dpni.aiff" -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment