Skip to content

hoffoo/pickup

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pickup

This is pickup (in go), a web frontend for Music Player Daemon by Andy O'Neill andy@potatoriot.com.

Pickup is my white whale... I've been playing with the idea since 2007. I have a large music collection, and my navigation of choice is by album, with easy search available. The "albums" interface in Google Play Music (web) is pretty close, but the google play uploader sucks and misses half of my songs.

Status

It works, just about. You can add albums and tracks to the playlist, control volume, skip tracks, start/stop playback. You can view the playlist. It runs on the Raspberry Pi with room to run mpd as well. Because of the client-side architecture it is very fast. I hope to start iterating on the look-and-feel a bit soon now that it is functional.

Getting Started In Ubuntu

apt-get install golang-go
mkdir $HOME/go
export GOPATH=$HOME/go
go get github.com/werkshy/pickup

cd $HOME/go/src/github.com/werkshy/pickup
go build
./pickup --help
./pickup

Getting Started Cross-Compiling for Raspberry Pi

In ubuntu, you need to build go yourself to cross-compile. Using these instructions download the source, run ./all.bash to get your native toolchain.

Next run this to build the ARM toolchain for the pi:

GOOS=linux GOARCH=arm GOARM=5 ./all.bash

Now you can cross compile pickup for the pi

cd ~/go/src/github.com/werkshy/pickup
GOOS=linux GOARCH=arm GOARM=5 go build

Now copy the whole pickup directory to your pi and run

./pickup

Background

I've written functional prototypes of this in C++, Python, C++ again (I was trying to run it on an NSLU2 embedded Linux machine with 32MB RAM) and now Go. It started off as a standalone player, then grew an xmms2 backend, and now is going to use mpd for playback, since I already use mpd everywhere and it just works. I'm writing it now in Go because I want to learn Go and I want to have this system. This is my first real project in go: any code review, criticism or contributions would be much appreciated.

Design Requirements

  • Run on embedded hardware. NSLU2 would be nice, Raspberry Pi would be fine.
  • Display results quickly even when the music is stored on a slow-ish network drive (i.e. some caching of available music).
  • Include more metadata than pure MPD, e.g. related artists, reviews etc. Can be loaded on the fly or stored locally.
  • Show random albums to play. Shuffle-by-album.
  • Assume /some/netsted/path/Artist/Album/Track.extension file format
  • Must have: play now / add to main playlist
  • Must have: play internet streams (e.g. DI Radio)
  • Must have: responsive frontend, single-page-app feel.

Design Approach

  • The Go implementation is a simple backend serving JSON to a javascript frontend, (single-page app in Backbone.js.)
  • The frontend loads the entire music collection up front. This takes less than a second and makes navigating around the collection extremely fast.

Roadmap

See Pickup on Trello

Screenshot

Screenshot

About

MPD Web Client in Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 79.7%
  • Go 14.8%
  • CSS 5.4%
  • Shell 0.1%