{"id":13555032,"url":"https://github.com/Lesterpig/mopidy-party","last_synced_at":"2025-04-03T07:33:33.789Z","repository":{"id":36254790,"uuid":"40559203","full_name":"Lesterpig/mopidy-party","owner":"Lesterpig","description":"Mopidy web extension designed for party","archived":false,"fork":false,"pushed_at":"2024-03-09T22:21:21.000Z","size":1682,"stargazers_count":111,"open_issues_count":9,"forks_count":32,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-07T14:07:50.176Z","etag":null,"topics":["hacktoberfest","jukebox","web"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Lesterpig.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-08-11T18:47:54.000Z","updated_at":"2024-12-08T11:38:20.000Z","dependencies_parsed_at":"2023-01-16T23:51:41.812Z","dependency_job_id":"48ce944b-d090-41d1-b73c-d08658f56461","html_url":"https://github.com/Lesterpig/mopidy-party","commit_stats":{"total_commits":35,"total_committers":11,"mean_commits":"3.1818181818181817","dds":0.6857142857142857,"last_synced_commit":"4020286536a972995929338c459bf0fc23280519"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lesterpig%2Fmopidy-party","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lesterpig%2Fmopidy-party/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lesterpig%2Fmopidy-party/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lesterpig%2Fmopidy-party/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lesterpig","download_url":"https://codeload.github.com/Lesterpig/mopidy-party/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246957224,"owners_count":20860584,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest","jukebox","web"],"created_at":"2024-08-01T12:03:00.233Z","updated_at":"2025-04-03T07:33:33.447Z","avatar_url":"https://github.com/Lesterpig.png","language":"Python","funding_links":[],"categories":["JavaScript","Software","hacktoberfest","Media Streaming","媒体流"],"sub_categories":["Media Streaming - Audio Streaming","Audio Streaming","语音流"],"readme":"****************************\nMopidy-Party\n****************************\n\nMopidy web extension designed for party! Let your guests manage the sound ;)\n\n- Minimal, fast web interface designed for mobile\n- Search soundtracks and add it to the queue\n- Skip current track after a configurable number of votes (defaults to 3)\n\nSee this `blog entry \u003chttps://blog.lesterpig.com/post/build-a-connected-jukebox-from-a-raspberry-pi/\u003e`_ for some details about this package.\n\nInstallation\n============\n\nYou must install `mopidy \u003chttps://www.mopidy.com/\u003e`_ (version 3) and some backends (soundcloud, spotify, youtube...).\n\n**PROD:** you just have to install pip and then::\n\n    sudo python3 -m pip install Mopidy-Party\n\n**DEV:** After cloning the repository, install by running::\n\n    sudo python3 -m pip install -e .\n\nUsage\n=====\n\nTo use the interface, simply use your browser to visit your Mopidy instance's IP at port 6680 to see all available web interfaces.\nFor example, http://192.168.0.2:6680/\n\nDirect access to Mopidy Party should then be: http://192.168.0.2:6680/party/\n\nConfiguration\n=============\n\n::\n\n    [party]\n    enabled = true\n    votes_to_skip = 3     # Votes needed from different users to allow skipping a song.\n    max_tracks = 0        # Maximum number of tracks that can be added by a single user in a row, 0 for unlimited\n    max_results = 50      # Maximum number of tracks to show when searching / browsing on a single page\n    max_queue_length = 0  # Maximum number of tracks queued at the same time, 0 for unlimited\n    hide_pause = false    # Change to true to hide the pause button\n    hide_skip = false     # Change to true to hide the skip button\n    style = dark.css      # Stylesheet to use. Also embedded is original.css (light theme)\n\nProject resources\n=================\n\n- `Source code \u003chttps://github.com/Lesterpig/mopidy-party\u003e`_\n- `Issue tracker \u003chttps://github.com/Lesterpig/mopidy-party/issues\u003e`_\n- `Development branch tarball \u003chttps://github.com/Lesterpig/mopidy-party/archive/master.tar.gz#egg=Mopidy-Party-dev\u003e`_\n\n\nDeveloper information\n=====================\n\nThe RequestHandler 'config' makes ``mopidy.conf``'s section for the ``[party]`` configuration available via ``http GET`` requests. Useful if you want to make aspects of the controller configurable.\n\nExample: The controller uses the below request, to read the ``max_results`` value::\n\n    $http.get('/party/config?key=max_results')\n\n\nChangelog\n=========\n\nv1.2.2 (2024-03-09)\n----------------------------------------\n- Add max_queue_length, max_results config options (by grasdk)\n\nv1.2.1 (2023-08-14)\n----------------------------------------\n- Add music source name and icon in search results (by grasdk)\n- Bump fontawesome version\n\nv1.2.0 (2022-12-21)\n----------------------------------------\n- Add hide_pause, hide_skip, style config options (by grasdk)\n- Provide two default styles (dark and original)\n\nv1.1.0 (2022-10-12)\n----------------------------------------\n- Use IP from X-Forwarded-For header if available (by girst)\n- Limit maximum number of tracks per user in a row (by girst)\n- Allows fallback tracks (added by other mopidy frontends) (by girst)\n- Dark mode (by girst)\n\nv1.0.0 (2020-01-03)\n----------------------------------------\n- Port to python3 and Mopidy 3 (by girst)\n\nv0.3.1 (2018-10-17)\n----------------------------------------\n- Vendorize mopidy javascript for 3.0 upstream compatibility\n\nv0.3.0 (2018-08-03)\n----------------------------------------\n- Add browse when search string is empty and on load (supports both mopidy-local and mopidy-local-sqlite backends, by juniormonkey)\n\nv0.2.0 (2017-01-08)\n----------------------------------------\n- Add vote to skip (by RealityFork)\n\nv0.1.2 (2016-10-10)\n----------------------------------------\n- Add artists and album names in songs list\n\nv0.1.0 (2015-09-01)\n----------------------------------------\n- Initial release.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLesterpig%2Fmopidy-party","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FLesterpig%2Fmopidy-party","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLesterpig%2Fmopidy-party/lists"}