PlayerPiano is a streaming music client for Pandora. It uses the pianobar project to load the data and play music through OS X's audio sound system. The goal is to provide a very low-overhead player that integrates with the OS wherever possible. It doesn't use WebKit or Flash to stream audio, so PlayerPiano takes almost no CPU or RAM to run.
Currently, PlayerPiano requires that a build of the pianobar command-line application be placed within the application bundle (this was done to get the app running quickly). In the future, I'd like to link against the pianobar libraries directly to better control the interface for interacting with Pandora. See the wishlist below if you're interested in hacking on PlayerPiano.
- VillainousStyle
- our fork of pianobar
- Growl
git clone git://github.com/amazingsyco/PlayerPiano.git
cd PlayerPiano
git submodule init
git submodule update
- Open the Xcode project for PlayerPiano and build the application
You need to add your Pandora account information to the settings. To do this, you need to execute two commands from the command line:
defaults write com.villainware.PlayerPiano pandoraEmail your@email.com
defaults write com.villainware.PlayerPiano pandoraPassword yourPassword
Once you do this, restart PlayerPiano.
You can get the currently playing song by reading the tab-separated values file at ~/Library/Application Support/PlayerPiano/nowplaying.tsv, in the format of song-artist-album. You can also subscribe for a distributed notification which gets fired when the track changes, named "com.villainware.PlayerPiano.PPPianobarControllerDidBeginPlayingTrackNotification".
See the LICENSE.md file for license information.
- Steve Streza
- Josh Weinberg
- Matt Ball
- Add UI for creating and switching between multiple accounts
- Add media playback key control
- Add a Share button for posting the song to Twitter/Facebook/Last.fm/AIM/etc