Browse Source

Update boom

master
Arun Prakash Jana 4 years ago
parent
commit
e72dbec95a
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      plugins/boom

+ 6
- 3
plugins/boom View File

@@ -12,11 +12,11 @@ NUMTRACKS=100


if [ ! -z "$GUIPLAYER" ]; then if [ ! -z "$GUIPLAYER" ]; then
PLAYER="$GUIPLAYER" PLAYER="$GUIPLAYER"
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 &
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf | head -n $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 &


# detach the player # detach the player
sleep 1 sleep 1
else
elif which mocp >/dev/null 2>&1; then
# start MOC server # start MOC server
mocp -S mocp -S


@@ -24,8 +24,11 @@ else
mocp -c mocp -c


# add up to 100 random audio files # add up to 100 random audio files
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" mocp -a
find . -type f \( -iname "*.mp3" -o -iname "*.flac" -o -iname "*.m4a" -o -iname "*.webm" -o -iname "*.wma" \) | shuf | head -n $NUMTRACKS | xargs -d "\n" mocp -a


# start playing # start playing
mocp -p mocp -p
else
printf "moc missing"
read -r _
fi fi

Loading…
Cancel
Save