X-Git-Url: https://git.sthu.org/?p=shutils.git;a=blobdiff_plain;f=mp-play;h=e41a80701b5c56c1d83d673dec8e27fcec1af627;hp=96e08d9f909ba3b37c25df3ca1f079bb819e8e13;hb=0bbbd725857971abbebeae0cc520ed785b1fc69d;hpb=e1848caa002c648e916283cda251032391f71861 diff --git a/mp-play b/mp-play index 96e08d9..e41a807 100755 --- 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" @@ -77,7 +80,7 @@ fi # Create playlist find "$@" -maxdepth $maxlevel -type f \ -iname "*.mp3" -or -iname "*.avi" -or -iname "*.flv" \ - -or -iname "*.mp4" -or -iname "*.ogg" \ + -or -iname "*.mp4" -or -iname "*.ogg" -or -iname "*.m4a" \ | sort > $playlist [ "$optSorttime" == "1" ] && cat "$playlist" | xargs ls --sort=time | sponge "$playlist"