Skip to content

Instantly share code, notes, and snippets.

@amr
Created January 26, 2010 21:41
Show Gist options
  • Save amr/287275 to your computer and use it in GitHub Desktop.
Save amr/287275 to your computer and use it in GitHub Desktop.
#!/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