No description
Find a file
2012-03-01 04:34:19 -08:00
public move chat stuff to another tab 2012-03-01 02:11:45 -08:00
src move chat stuff to another tab 2012-03-01 02:11:45 -08:00
views move chat stuff to another tab 2012-03-01 02:11:45 -08:00
.gitignore suppress make watch spam, but still announce build completion 2012-02-28 20:14:42 -07:00
LICENSE License under MIT 2012-01-24 23:27:32 -08:00
Makefile Revert "make prints standard nothing to be done message" 2012-02-29 20:39:21 -07:00
package.json bump version to 0.0.2 2012-03-01 04:34:19 -08:00
README.md use relevant examples for config in README 2012-02-28 21:37:18 -08:00
TODO edit file uploader spinny gif to fit the theme 2012-03-01 01:19:39 -08:00

Groove Basin

No-nonsense music client and server for your home or office.

Run it on a server connected to your main speakers. Guests can connect with their laptops, tablets, and phones, and play and share music.

Depends on mpd for the backend. Some might call this project an mpd client.

Features

  • Lightning-fast, responsive UI. You can hardly tell that the music server is on another computer.

  • Dynamic playlist mode which automatically queues random songs, favoring songs that have not been played recently.

  • Drag and drop upload. Drag and drop playlist editing. Rich keyboard shortcuts.

  • Streaming support. You can listen to your music library - or share it with your friends - even when you are not physically near your home speakers.

Get Started

Make sure you have Node and npm installed, then:

$ npm install groovebasin
$ npm start groovebasin

At this point, Groove Basin will issue warnings telling you what to do next.

Screenshots

Searching library Multi-select and context menu Drag/drop support Keyboard shortcuts Drag and drop / multiselect upload

Mpd

Groove Basin depends on mpd.

Some new features are only available when you compile from source:

$ git clone git://git.musicpd.org/master/mpd.git

Configuration

  • audio_output - Uncomment the "httpd" one and configure the port to enable streaming. Recommended "vorbis" encoder for better browser support.

  • sticker_file - Groove Basin will not run without one set.

  • gapless_mp3_playback - "yes" recommended. <3 gapless playback.

  • volume_normalization - "yes" recommended. Replaygain scanners are not implemented for all the formats that can be played back. Volume normalization works on all formats.

  • max_command_list_size - "16384" recommended. You do not want mpd crashing when you try to remove a ton of songs from the playlist at once.

  • auto_update - "yes" recommended. Required for uploaded songs to show up in your library.

Configuring Groove Basin

See http://npmjs.org/doc/config.html#Per-Package-Config-Settings

See the "config" section of package.json for configuration options and defaults.

Example:

$ npm config set groovebasin:mpd_conf ~/.mpd/mpd.conf
$ npm config set groovebasin:http_port 80

Developing

$ sudo npm link
$ make watch
$ npm -g start groovebasin