simple CLI client for nodeplayer
- Run program with argument
-l
- Run a command that produces a song list (e.g. search,
-s
or list playlist,-p
) - Add song to queue from list by id (e.g.
-a 42
)
Playlists are .json
files placed into ~/.nodeplayer-client/playlists/
. The
format looks like this:
[
{
"album": "AlbumName 1",
"artist": "ArtistName 1",
"backendName": "gmusic",
"duration": "123456",
"format": "opus",
"songID": "long-id-here",
"title": "TitleName 1"
},
{
"album": "AlbumName 2",
"artist": "ArtistName 2",
"backendName": "youtube",
"duration": "123456",
"format": "mp3",
"songID": "long-id-here",
"title": "TitleName 2"
},
...
]