Forked from NapoleonWils0n/MPlayer play files recursively in a directory.txt
Created
August 15, 2017 03:00
-
-
Save canabady/5b7e51880087f4610c742e9c378168f3 to your computer and use it in GitHub Desktop.
mplayer: play files recursively in a directory
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
MPlayer play files recursively in a directory. | |
I wanted to have my files played in alphabetical order and only avi files (since a couple .srt subtitle files were in there…), so I came up with this : | |
mplayer -playlist <(find "$PWD" -name "*.avi" -type f | sort) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment