Music player on Linux without playlists, just a directory navigation and file playing

6,268

Solution 1

I use moc, it does have a playlist window, but you can hide it and just play from the directory listing. It's what I turned to after giving up on new Amarok.

Solution 2

I use quodlibet. A nice little player with comprehensive file-type support and fabulous metadata editing abilities. It has a "File System" view, which meets your criterion.

Solution 3

mpg123 and mpg321 are commandline MP3 players. You could associate them with MP3 files in Thunar/Nautilus/file-manager-of-choice. They take a list of files/URLs to play as arguments:

$ mpg123 /path/to/mp3s/*.mp3
# plays all mp3 files in directory /pat/to/mp3s (generally in order of filename)

$ find /path/to/mp3s -name '*.mp3' -print0 | xargs -0 mpg123
# plays all mp3 files in /path/to/mp3s and subdirectories

See man mpg123 or man mpg321 for details.

Solution 4

I haven't seen 1by1, but personally I use cplay when I want to both navigate and listen using the player.

For odd tracks, I have vlc associated with sound files, so I can navigate in Thunar (or whatever) and just double click on the file.

Share:
6,268

Related videos on Youtube

Java42
Author by

Java42

Updated on September 17, 2022

Comments

  • Java42
    Java42 almost 2 years

    I am searching for a mp3 player for Linux that resembles 1by1 on features: light, free, with no playlists, just selection of files to play using a directory navigator. Any suggestion?

  • DaveParillo
    DaveParillo over 14 years
    Wow. You switched from Amarok to moc?? That is extremely hardcore. +1 just for having more guts than me.
  • user1721803
    user1721803 over 14 years
    Well, I had to, have you seen the new Amarok? Besides, moc is pretty user friendly, it's just a bit picky who it's friends are :).
  • quack quixote
    quack quixote about 14 years
    i don't use QL, but i've used Ex Falso and Mutagen (the ID3 tagger & tagging library from the same project) for years. really the only reason i haven't used QL is that my speakers are usually connected to a Windows system.
  • nedned
    nedned about 14 years
    They've actually been working on a Windows port. Looks like it's available for download already, but I haven't tried it: code.google.com/p/quodlibet/wiki/Requirements