commit c30556b2fcb2807ae1599b4e827a2bf021a329d0 parent 8881586969730f65158fa68afc49e04832b2ef37 Author: gearsix <gearsix@tuta.io> Date: Thu, 27 Oct 2022 17:11:51 +0100 added win/flac2mp3 Diffstat:
A | src/windows/flac2mp3.ps1 | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/windows/flac2mp3.ps1 b/src/windows/flac2mp3.ps1 @@ -0,0 +1 @@ +ForEach ($flac in Get-ChildItem -Recurse -Filter *.flac) { ffmpeg -i $flac.FullName -ab 320k -map_metadata 0 -id3v2_version 3 $flac.FullName.Replace('flac', 'mp3') } +\ No newline at end of file