mplayer: Play All Mp3 Files In Reverse Order

by Vivek Gite on May 6, 2008 · 4 comments

mplayer lacks an option for selecting files in a reverse order. So here is a quick way to playback all mp3 files in reverse order:
$ ls -1 -r *.mp3 > mp3.rev
$ mplayer -playlist mp3.rev

Where,

  • -r reverse order while sorting
  • -1 list one file per line
  • -playlist file : Play files according to a playlist file

Let's hear your shell hack in the comments.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

We're here to help you make the most of sysadmin work. So, subscribe!

{ 4 comments… read them below or add one }

1 chika May 22, 2008

LoL…

mplayer not only on Linux, how abt ‘dir’ command can do this for windows?

Reply

2 Neil May 22, 2008

You could squeeze that into one line with:


$ mplayer `ls -r *.mp3`

Reply

3 vivek May 23, 2008

Neil,

I’ve over 3000+ mp’3 in dir. it won’t work as shell will end up with argument limit error. If you got 10-30 files; your command should work.

Reply

4 Shawn September 27, 2008

This will work as well.
ls -1 -r *.mp3 | mplayer -playlist -

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 15 + 7 ?
Please leave these two fields as-is:
Are you a human being? Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: