Here's what I want: I have a folder with MP3 files. I would like to play all the files in the folder, alphabetically. And I need a way to pause, skip to next file, and that's pretty much it.

I don't want to use my music player to organize my music library, I don't need connection to network services, and I don't even need ID3 support.

On Windows, WinAmp 2 did what I wanted. What's my best option on Ubuntu?

link|improve this question

57% accept rate
1  
moc, man. moc. it's the most efficient music player eva. u can even use it without x window. – Gödel Oct 20 '10 at 11:04
feedback

10 Answers

up vote 12 down vote accepted

If you are looking for something lightweight than Rhytmbox, then try audacious Install audacious

sudo apt-get install audacious

It is also present in Ubuntu Software Center. HTH

link|improve this answer
+1 for audacious! – dag729 Oct 20 '10 at 15:08
Audacious has got a lot of options, but the default interface is indeed just what you asked for. – RobinJ Aug 10 '11 at 10:18
feedback

Personally I use moc in such cases. If you don’t mind it being in text mode, I recommend it.

link|improve this answer
feedback

You could use Totem, you can load/save playlists and it's pretty straight forward (and installed by default).

Edit: You might also want to have a look at XMMS, which is pretty similar to WinAmp.

link|improve this answer
3  
+1 Totem is the default player and is perfectly fine for this; open the sidebar to get the playlist controls. Personally I much prefer it to the clunky heavyweight music manager apps. – bobince Oct 21 '10 at 1:32
feedback

I have been using exaile music player like it a lot

link|improve this answer
feedback

For your situation I'd recommend DeadBeeF. It's light, fast and, silly name aside, it can do exactly what you want. Just point the player to the folder you want to play, arrange the files alphabetically via the 'Title' column and let it play your music.

link|improve this answer
feedback

Straight out, I'd say use Rhythmbox (It's installed by default). It automatically scans your music folder and adds files when you drop them in there. Nothing fancy, it just works.

link|improve this answer
2  
The huge interface of Rhythmbox is what prompted this question in the first place. But I see your point. – itsadok Oct 20 '10 at 10:22
2  
@itsadok, if you dislike the huge "full" interface, then rhythmbox has minimalistic "small" interface. ;) It's switched on in the menu, View / Small display. Enjoy! – ulidtko May 18 '11 at 19:47
Never knew that about the small display. I don't use Rhythmbox anymore but cool tip ulidtko! – zookalicious May 18 '11 at 20:58
feedback

I'd recommend decibel-audio-player. Simple, lightweight, efficient and made just to play music. Best replace for winamp2 for me. It's available through standard repository and at launchpad.

link|improve this answer
this is actually quite a nifty app. 1+ – kounryusui Oct 20 '10 at 12:09
feedback

Try moosic which has no ui at all. ;-)

(Well, it has a ui, but it can run in the background as a daemon.)

link|improve this answer
feedback

I would recommend cmus! It is a console-only player, and quite flexible when it comes to alphabetic ordering. To add all files in a directory, use:

  1. :add ~/my_music (replace ~/my_music with your actual music folder)
  2. :set lib_sort=filename (if you only want to sort by directory/filename)
link|improve this answer
feedback

mplayer - simply fire up a console and put in: mplayer /path_to_mp3s/*.mp3

You can control it by keyboard, <spacebar> to pause, <page up> to skip to next song etc.

It's console based, so you can set up convenient aliases for it. For example:

alias mp3='mplayer *.mp3' plays all mp3 in current directory.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.