mirror of
http://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-22 10:31:28 +00:00
implement transcode switcher
This commit is contained in:
parent
bffd430fc8
commit
e9bf201065
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue