Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lociii/jukebox
Democratic Jukebox - your democratic music player
https://github.com/lociii/jukebox
Last synced: 3 months ago
JSON representation
Democratic Jukebox - your democratic music player
- Host: GitHub
- URL: https://github.com/lociii/jukebox
- Owner: lociii
- License: mit
- Archived: true
- Created: 2011-11-19T14:52:50.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2016-10-08T09:09:09.000Z (about 8 years ago)
- Last Synced: 2024-07-18T02:12:39.244Z (5 months ago)
- Language: Python
- Homepage:
- Size: 264 KB
- Stars: 300
- Watchers: 19
- Forks: 62
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.txt
- License: LICENSE.rst
Awesome Lists containing this project
README
Unmaintained
============The big time of local mp3 libraries is over. Therefore this project has been abandoned and is currently unmaintained.
Maybe have a look at https://qca.st/ which provides jukebox functionalities for music streaming services.Democratic Jukebox - your democratic music player
==================================================Ever wanted to listen to music with a larger group of people e.g. in your office? Who decides what to play?
Make your music player democratic and give everyone the chance to promote their favourite song.Jukebox provides a web interface to search your music library and vote for songs to be played.
The more votes a song gets, the sooner you will listen to it.At one point in your life your play queue might get empty. Don't worry, the jukebox will keep on playing.
The playback system figures out who is online using the web interface or API and plays music to their liking.**Required system libraries**
libshout3, libshout3-dev and python-dev are required to build the dependecy `python-shout `_.
.. image:: http://static.jensnistler.de/jukebox.png
:height: 404px
:width: 872px
:scale: 100%
:alt: Democratic Jukebox - your democratic music playerGeneral
========- Jukebox is available in english, german and brazilian portuguese
- Jukebox uses Facebook, Twitter and Github for authentication (see `django-social-auth `_ for more authentication providers)Setup
==================Install `virtualenvwrapper `_ via `pip `_ if not alreay done:
::
sudo pip install virtualenvwrapper
Set up a project for jukebox:
::
mkproject jukebox
Install the jukebox in your fresh virtual environment:
::
workon jukebox
pip install jukeboxNow it's time to configure the jukebox
1. Enter admin credentials and select authentication providers
2. Create the database
3. Index your musicThat's all
::
jukebox jukebox_setup
jukebox syncdb
jukebox migrate
jukebox jukebox_index --path=/path/to/libraryThe django builtin development webserver will be sufficient to serve your office or party. Just start it up:
::
jukebox runserver ip:port
Now you're ready to put music in the queue.
Playback
=========Currently there are two methods of playing the music chosen in jukebox.
**shoutcast**
Stream your music to a shoutcast compatible server
::
pip install jukebox-shout
See `jukebox_shout `_ for details and startup command.
**mpg123**
Play your music locally on the machine running the jukebox.
::
pip install jukebox-mpg123
See `jukebox_mpg123 `_ for details and startup command.
**Contribute!**
Feel free to write additional playback modules and I'll add them to the list above.
Live indexing
===============There is no need to update your index every time a new song is added to your library, just use the live indexer package.
::
pip install jukebox-live-indexer
See `jukebox_live_indexer `_ for details and startup command.
API
=============jukebox_core provides a fully fledged REST API for authenticated users. See `API reference `_
Search filters
===============Jukebox supports google-like search filter. Available search fields: title, artist, album, genre, year.
::
title:(love to dance) artist:bobby
artist:(bobby baby) lucky
title:(in ten years) genre:electronicLicense
========MIT License. See `License `_
Contribute!
============You want to contribute to this project? Just fork the repo and do this:
::
mkproject jukebox
git clone [email protected]:[username]/jukebox.git .
git remote add upstream git://github.com/lociii/jukebox.git
pip install -r requirements.txt
cd jukeboxFollow up configuring jukebox like described in Setup. Use ./manage.py instead of the jukebox command.
You can now create a branch to make your actual changes and send a pull request. See `this article `_ for how to do this.
Contributors
=============
- Brazilian portuguese translation by `Luan Fonseca de Farias `_
- Bugfixes by `Peter Hoffmann `_
- Bugfixes by `Amir H. Hajizamani `_
- Bugfixes by `Gabriel Duman `_
- Bugfixes by `Steffen Zieger `_
- Bugfixes by `Jonas Baumann `_
- Bugfixes by `imithun `_Release Notes
==============0.1.0
- Initial release
0.1.1
- Fixed installer bugs
- Added personal history
- Added system tests for api0.2.0
- Language switch
- Sortable lists
- Google-like search operators
- Autoplay tries to play appropriate music
- Improved web interface0.2.1
- fixed issue with autoplay
0.3.0
- Added jukebox_watch
- Added list of voters
- Minor improvements0.3.1
- Improved exception handling
- Added rss for current song
- Minor bug fixes0.3.2
- Update dependencies
- Fix authentication problems
- Switch from inotify to watchdog0.3.3
- Fix manifest
0.3.4
- Fix to skip unauthorized sessions
- Updated wsgi handler0.3.5
- Update mutagen (Thanks guys for removing old packages)
- Fixed minor bugs (Thanks to `saz `_)0.3.7
- Fix buggy pypi package
0.4.0
- Split jukebox in different packages
- Strip artist from album data0.4.1
- Add missing wsgi file