ncmpy

ncmpy is a [Python + Curses]-based MPD client.

features

screenshots

glance.png queue.png database.png lyrics.png artist-album.png search.png

github page

http://github.com/cykerway/ncmpy (Download source tarball here)

git repository

git://github.com/cykerway/ncmpy.git

install on Arch Linux

yaourt -S ncmpy

install on Arch Linux (git version)

yaourt -S ncmpy-git

note

For better OSD quality, try osd-lyrics.

tips

To get a list of high-rating music, try (assuming the path name doesn't contain the symbol |):

        sqlite3 ./sticker.sql 'select * from sticker where value >= 4;' | cut -d '|' -f 2 > ./list
        

As soon as you have the file list, you can do more things like putting those songs in a separate folder:

(Here I use tar to keep folder structure)

        tar -cvf - -T list | tar -C <dst-folder> --strip-components=<strip-depth> -xvf -
        

where strip-depth depends on the db path.