diff --git a/funkwhale-cli.sh b/funkwhale-cli.sh index a1b611f..768699a 100755 --- a/funkwhale-cli.sh +++ b/funkwhale-cli.sh @@ -405,6 +405,17 @@ funkwhale_pseudofs_load() done } +funkwhale_pseudofs_transcode_switch() +{ + echo "Transcode to" + transcode_ch=$(echo "none\nogg\nmp3" | fzy) + if [ "$transcode_ch" = 'none' ]; then + find "fwfs_$instance" -type f -exec sed -i 's/to=.*/to=/' {} + + else + find "fwfs_$instance" -type f -exec sed -i "s/to=.*/to=$transcode_ch/" {} + + fi +} + trackspls='Tracks' albumsmenu='Albums' artistmenu='Artists'