From: Stefan Huber Date: Sun, 10 Nov 2013 12:39:14 +0000 (+0100) Subject: mp-play: use mpv, play m4a X-Git-Url: https://git.sthu.org/?p=shutils.git;a=commitdiff_plain;h=0bbbd725857971abbebeae0cc520ed785b1fc69d mp-play: use mpv, play m4a --- 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"