{"id":18733923,"url":"https://github.com/mgoltzsche/mopidy-webm3u","last_synced_at":"2026-03-09T13:31:20.908Z","repository":{"id":225935033,"uuid":"767283736","full_name":"mgoltzsche/mopidy-webm3u","owner":"mgoltzsche","description":"A Mopidy extension for reading M3U playlists from an HTTP server","archived":false,"fork":false,"pushed_at":"2024-05-19T02:15:38.000Z","size":25,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-16T04:45:51.220Z","etag":null,"topics":["m3u","m3u-playlist","m3u8","m3u8-playlist","mopidy","mopidy-backend","python","webm3u"],"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/mgoltzsche.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":"2024-03-05T02:27:41.000Z","updated_at":"2024-07-17T11:25:04.000Z","dependencies_parsed_at":"2025-01-15T15:47:08.583Z","dependency_job_id":"89d12d42-5085-48c7-ab6c-fbc0920bc56b","html_url":"https://github.com/mgoltzsche/mopidy-webm3u","commit_stats":null,"previous_names":["mgoltzsche/mopidy-webm3u"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgoltzsche%2Fmopidy-webm3u","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgoltzsche%2Fmopidy-webm3u/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgoltzsche%2Fmopidy-webm3u/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgoltzsche%2Fmopidy-webm3u/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mgoltzsche","download_url":"https://codeload.github.com/mgoltzsche/mopidy-webm3u/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241968622,"owners_count":20050428,"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":["m3u","m3u-playlist","m3u8","m3u8-playlist","mopidy","mopidy-backend","python","webm3u"],"created_at":"2024-11-07T15:11:48.304Z","updated_at":"2026-03-09T13:31:20.868Z","avatar_url":"https://github.com/mgoltzsche.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"****************\nMopidy-WebM3U\n****************\n\n`Mopidy \u003chttps://mopidy.com/\u003e`_ extension for reading M3U playlists from an HTTP server.\n\nFor example it allows you to browse and listen to the playlists within your `Beets \u003chttps://beets.io\u003e`_ library that have been generated by Beets' `smartplaylist plugin \u003chttps://beets.readthedocs.io/en/stable/plugins/smartplaylist.html\u003e`_ and served by the `beets-webm3u \u003chttps://github.com/mgoltzsche/beets-webm3u\u003e`_ plugin (on another machine) within Mopidy.\n\nThis extension does not support manipulating playlists.\n\n\nInstallation\n============\n\nInstall by running::\n\n    sudo pip install Mopidy-WebM3U\n\n\nConfiguration\n=============\n\nBefore starting Mopidy, you must configure it as follows, enabling the webm3u extension and specifying the URL to the M3U playlist of playlists::\n\n    [m3u]\n    enabled = false\n    [webm3u]\n    enabled = true\n    seed_m3u = http://beets:8337/playlists/index.m3u\n    uri_scheme = m3u\n\n\n(Mopidy's built-in m3u extension must be disabled in order to be able to use the ``m3u`` URI scheme with the webm3u extension which is required to make playlists show up within the Iris web GUI, see `here \u003chttps://github.com/jaedb/Iris/blob/62c4e063f855896d2b4de8dcc024a43f967d5b67/src/js/util/helpers.js#L144\u003e`_.)\n\nThe playlist of playlists URL specified by the ``seed_m3u`` option is expected to return an `EXTM3U-formatted \u003chttps://datatracker.ietf.org/doc/html/rfc8216#section-4.3.1.1\u003e`_ list of `tagged \u003chttps://datatracker.ietf.org/doc/html/rfc8216#section-4.3.2.1\u003e`_ `*.m3u` HTTP URLs, e.g.::\n\n    #EXTM3U\n    #EXTINF:0,Playlist 1\n    http://localhost:8337/playlists/playlist1.m3u\n    #EXTINF:0,Playlist 2\n    http://localhost:8337/playlists/playlist2.m3u\n\n\nDevelopment\n===========\n\nFirst make sure an example M3U playlist of playlists is served at ``http://localhost:8337/m3u/playlists/index.m3u``, e.g. by running the `beets-webm3u development server \u003chttps://github.com/mgoltzsche/beets-container?tab=readme-ov-file#run-the-beets-web-server\u003e`_.\n\nThen you can run a mopidy container with the extension installed (including your local changes) as follows (requires `docker \u003chttps://docs.docker.com/engine/install/\u003e`_)::\n\n    make run\n\n\nOnce Mopidy started, you can browse the playlists within the Iris UI at `http://localhost:6680/iris/library/playlists \u003chttp://localhost:6680/iris/library/playlists\u003e`_.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgoltzsche%2Fmopidy-webm3u","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmgoltzsche%2Fmopidy-webm3u","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgoltzsche%2Fmopidy-webm3u/lists"}