Created
January 26, 2010 21:41
-
-
Save amr/287275 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Shuffles given playlist outside mplayer instead of using -shuffle | |
# | |
# Usage: | |
# | |
# mplayer-shuffle-playlist <playlist-file> [mplayer-options] ... | |
# | |
PLAYLIST=$(mktemp mplayer-shuffle-playlist.XXXXX) | |
shuf $1 > $PLAYLIST | |
shift | |
mplayer -playlist $PLAYLIST $@ | |
rm -f $PLAYLIST |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment