Created
January 2, 2011 20:04
-
-
Save skriticos/762772 to your computer and use it in GitHub Desktop.
One liner to play media files in folder tree with mplayer (shuffeled and full screen)
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/bash | |
# play files in random order | |
find . -type f \( -name "*.mkv" -o -name "*.avi" -o -name "*.flv" \) -print0 | xargs -0 mplayer -shuffle -fs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment