Create run_music_background

create run_music_background file
This commit is contained in:
cedricAbonnel
2021-12-12 11:02:26 +01:00
committed by GitHub
parent 9975394bf5
commit b328622c29

15
run_music_background Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
path_files=/home/cedric24c/Musique/non_stop_music
files=($path_files/*)
volume=0.06
echo Process number $$
echo Path files : $path_files
echo Number of files in the path : ${#files[@]}
while [ 1 ];do
file=${files["$[RANDOM % ${#files[@]}]"]}
echo Now playing $file
play -v $volume "$file" &> /dev/null
done