1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-28 12:58:57 +00:00

Fish: optiflac (took me way too long to function)

This commit is contained in:
Phantop 2020-04-26 21:17:41 -04:00
parent afe4c30f1c
commit 836d4db9f7

View file

@ -0,0 +1,15 @@
# Defined in /tmp/fish.YGBcMf/optiflac.fish @ line 2
function optiflac
mkdir out
for i in *.flac
ffmpeg -i $i -c:v copy -c:a flac -compression_level 12 -af aformat=s16:44100 out/$i
end
cd out
for i in (ff -e flac)
if test (du $i | cut -f1) -lt (du ../$i | cut -f1)
echo $i
mv $i ../$i
end
end
cd ..
end