mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-12 18:02:46 +00:00
25 lines
643 B
Fish
25 lines
643 B
Fish
|
# Defined in /tmp/fish.3hjAN7/flacr.fish @ line 2
|
||
|
function flacr
|
||
|
mkdir out
|
||
|
ls *.flac | parallel ffmpeg-static -i {} -c:v copy -c:a flac -compression_level 12 -af aresample=resampler=soxr:precision=32:dither_method=triangular -sample_fmt s16 $argv out/{}
|
||
|
cd out
|
||
|
for i in *
|
||
|
if test (du $i | cut -f1) -lt (du ../$i | cut -f1)
|
||
|
echo $i
|
||
|
mv $i ../$i
|
||
|
end
|
||
|
end
|
||
|
cd ..
|
||
|
cp *.flac out
|
||
|
cd out
|
||
|
ls | parallel flacc {}
|
||
|
for i in *
|
||
|
if test (du $i | cut -f1) -lt (du ../$i | cut -f1)
|
||
|
echo $i
|
||
|
mv $i ../$i
|
||
|
end
|
||
|
end
|
||
|
cd ..
|
||
|
rm -r out
|
||
|
end
|