mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-16 11:52:47 +00:00
8 lines
238 B
Bash
Executable file
8 lines
238 B
Bash
Executable file
#!/bin/sh
|
|
mkdir foo
|
|
ifuse --documents com.foobar2000.mobile foo || exit 1
|
|
# https://github.com/smxi/acxi/raw/stable/acxi
|
|
acxi -s ~/Music/HiFi -d "$PWD/foo" -o opus -q 128 --clean sync -F 16 -c mp3,m4a,opus,ogg
|
|
fusermount -u foo
|
|
rmdir foo
|