nnn/plugins/boom

32 lines
857 B
Plaintext
Raw Normal View History

#!/usr/bin/env sh
2019-12-10 17:26:00 +00:00
# Description: Play random music from current directory. Identifies MP3, FLAC, M4A, WEBM, WMA.
2019-08-24 17:05:04 +00:00
# You may want to set GUIPLAYER.
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
2019-08-24 17:05:04 +00:00
#GUIPLAYER=smplayer
2019-08-25 00:46:31 +00:00
NUMTRACKS=100
2019-08-24 17:05:04 +00:00
if [ ! -z "$GUIPLAYER" ]; then
PLAYER="$GUIPLAYER"
2019-12-10 17:26:00 +00:00
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 &
2019-08-24 17:05:04 +00:00
# detach the player
2019-11-21 20:44:25 +00:00
sleep 1
2019-08-24 17:05:04 +00:00
else
# start MOC server
mocp -S
# clear MOC playlist
mocp -c
# add up to 100 random audio files
2019-12-10 17:26:00 +00:00
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
2019-08-24 17:05:04 +00:00
# start playing
mocp -p
fi