Created
September 12, 2021 01:18
-
-
Save espio999/9251da3087a6a10833c5d9edd85a15fe to your computer and use it in GitHub Desktop.
Convert to AAC-LC with qaac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$s_folder = "D:\temp\2020\20201204\source" | |
$d_folder = "D:\temp\2020\20201204\destination" | |
$bps = 48 | |
$csv = import-csv -path .\test.csv | |
foreach ($myline in $csv){ | |
$s_path = $s_folder + '\' + $myline.source | |
$d_path = $d_folder + '\' + $myline.destination | |
.\qaac64.exe $s_path -o $d_path -v $bps -r $myline.sampling --artist $myline.artist --album $myline.album --genre $myline.genre | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment