]> Sergey Matveev's repositories - nnn.git/commitdiff
Add m4a files
authorArun Prakash Jana <engineerarun@gmail.com>
Tue, 10 Dec 2019 17:26:00 +0000 (22:56 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Tue, 10 Dec 2019 17:27:06 +0000 (22:57 +0530)
plugins/boom

index 40931b4782b7fdf5b888d3b0b23bce671d407202..0ca9ab738d5c709b56ec07fbc26fc3a2afdaa229 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env sh
 
-# Description: Play random music from current directory. Identifies MP3, FLAC, WEBM, WMA.
+# Description: Play random music from current directory. Identifies MP3, FLAC, M4A, WEBM, WMA.
 #              You may want to set GUIPLAYER.
 #
 # Shell: POSIX compliant
@@ -12,7 +12,7 @@ NUMTRACKS=100
 
 if [ ! -z "$GUIPLAYER" ]; then
     PLAYER="$GUIPLAYER"
-    find . -type f \( -iname "*.mp3" -o -iname "*.flac" -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" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" "$PLAYER" > /dev/null 2>&1 &
 
     # detach the player
     sleep 1
@@ -24,7 +24,7 @@ else
     mocp -c
 
     # add up to 100 random audio files
-    find . -type f \( -iname "*.mp3" -o -iname "*.flac" -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" \) | sort -R | head -n $NUMTRACKS | xargs -d "\n" mocp -a
 
     # start playing
     mocp -p