Skip to content

Instantly share code, notes, and snippets.

View Kyrielight's full-sized avatar
🛡️
ノンビリ過ごしてます

マシュ Kyrielight

🛡️
ノンビリ過ごしてます
View GitHub Profile
@Kyrielight
Kyrielight / alac_it.bat
Last active April 30, 2018 02:40
[WHOLE DIR] Simple (assuming) script that converts all FLAC files in a dir to ALAC. Uses ffmpeg and AtomicParsley.
@ECHO OFF
setlocal enabledelayedexpansion
rem Make mirror directory structure with xcopy
xcopy /t /e "%cd%\FLAC" "%userprofile%\Desktop\ALAC\"
rem Move copy into new destination
move "%userprofile%\Desktop\ALAC" "%cd%"
setlocal disabledelayedexpansion
for /R FLAC %%f in (*.flac) do (