mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-05 06:25:00 +00:00
14 lines
470 B
Fish
Executable file
14 lines
470 B
Fish
Executable file
#!/usr/bin/fish
|
|
set HIFI ~/Music/HiFi
|
|
set LOFI ~/Music/LoFi
|
|
test -f /usr/share/man/man3/Parallel::ForkManager.3 || sudo eopkg it perl-parallel-forkmanager
|
|
|
|
if not test -d $LOFI
|
|
cd $HIFI
|
|
fd -t d -x mkdir -p $LOFI/{}
|
|
fd -e flac -x opusenc --bitrate 72 {} $LOFI/{.}.opus
|
|
end
|
|
|
|
set args -s $HIFI -d $LOFI -o opus -q 72 --clean sync -F 8 -a mp3,m4a,opus
|
|
acxi $args $argv || wget https://github.com/smxi/acxi/raw/stable/acxi -O- -o/dev/null | perl -- - $args $argv
|