1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-29 05:18:51 +00:00
dotfiles/bin/optiflac

16 lines
363 B
Plaintext
Raw Normal View History

2020-10-13 20:14:57 +00:00
#!/bin/sh
2020-08-04 03:17:43 +00:00
mkdir out
args="-af aresample=resampler=soxr:precision=32:dither_method=triangular -sample_fmt s16"
fd -e flac -d1 -x ffmpeg -hide_banner -i {} -c:v copy -c:a flac -compression_level 12 "$args" "$@" out/{}
cd out || exit 1
comparedir ..
cd .. || exit 1
fd -e flac -d1 -x flac -f8 {} -o out/{}
cd out || exit 1
comparedir ..
cd .. || exit 1
2020-08-04 03:17:43 +00:00
rm -r out