Skip to content

Instantly share code, notes, and snippets.

@auyongcheemeng
Last active May 4, 2024 17:52
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save auyongcheemeng/0a0b3cdbabb19cf803da0caa7d5d0179 to your computer and use it in GitHub Desktop.
Save auyongcheemeng/0a0b3cdbabb19cf803da0caa7d5d0179 to your computer and use it in GitHub Desktop.
ffmpeg flac to alac conversion batch script (windows)
:: ffmpeg script for converting FLAC to ALAC
IF NOT EXIST alac\NUL mkdir alac
IF NOT EXIST flac\NUL mkdir flac
for %%a in ("flac\*.flac") do ffmpeg -y -i "%%a" -vn -c:a alac "alac\%%~na.m4a"
@echo off
pause
@Scattershor
Copy link

This was a lifesaver. Thank you so much.

@ChiTsng
Copy link

ChiTsng commented Oct 16, 2021

I second the previous comment. This script is so nice.

@thantwenty1
Copy link

Gotta try. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment