bib2html.py: Add incollection bibtype
[shutils.git] / mp-play
diff --git a/mp-play b/mp-play
index 96e08d9f909ba3b37c25df3ca1f079bb819e8e13..42215b7b2504e96cf478b0682b8a5eb7bcd491c0 100755 (executable)
--- a/mp-play
+++ b/mp-play
@@ -6,6 +6,9 @@ player="/usr/bin/mplayer"
 if [ -x  "/usr/bin/mplayer2" ]; then
        player="/usr/bin/mplayer2"
 fi
+if [ -x  "/usr/bin/mpv" ]; then
+       player="/usr/bin/mpv"
+fi
 
 playeropts=""
 $player -af help | grep -q bs2b && playeropts="${playeropts} -af-add bs2b"
@@ -76,8 +79,8 @@ fi
 
 # Create playlist
 find "$@" -maxdepth $maxlevel -type f \
-       -iname "*.mp3" -or -iname "*.avi" -or -iname "*.flv" \
-       -or -iname "*.mp4" -or -iname "*.ogg" \
+       -iname "*.mp3" -or -iname "*.avi" -or -iname "*.flv" -or -iname "*.flac" \
+       -or -iname "*.mp4" -or -iname "*.ogg" -or -iname "*.m4a" \
        | sort > $playlist
 
 [ "$optSorttime" == "1" ] && cat "$playlist" | xargs ls --sort=time | sponge "$playlist"