Skip to main content

Music player web app

Project description

What is WebP3? (use case)

WebP3 is a humble web-app (server) to play your audio files remotely.

Typically, you host WebP3 on your personal home machine (or server) where your music files sit, and you can then listen to the music remotely at your workplace or on a handheld device in your browser. It's designed for personal use.

No, there aren't any user-data-exploiting/social features and no, it's not hosted on some million-dollars cloud, it's hosted on your machine or your server.

Design

WebP3 exposes a tree of folders and files that can be browsed through the web interface. A few root directories are specified on the command-line to run WebP3, and all the content under those roots is simply exposed on the web interface, as there are no fine-grained permissions.

An HTML5 player allows to play the audio files from a requested dir.

It is designed to serve trees where a folder is an album (or contains other folders). ID3 is not necessary as it's not used.

webp3 screenshot showing a list of files and the previous/pause/next buttons

Audio format support

WebP3 solely relies on HTML5's <audio> tag. So, audio file format support (like MP3) depends on your viewing browser and OS.

JSON

When application/json mimetype is present in the Accept HTTP header, the listing of the browsed directory is returned in JSON format.

M3U

When audio/x-mpegurl mimetype is present in the Accept HTTP header, or if the URL ends with ?m3u, the listing of files the browsed directory is returned in M3U playlist format. Thus, the URL can be given to an audio player like VLC.

Usage

Podman/Docker

WebP3 can be run as a container:

podman run --rm -d \
    -e WEBP3_BASE_URL=https://your.example/webp3/ \
    -v /path/to/some/files:/media:ro \
    -p 8000:8000 \
    registry.gitlab.com/hydrargyrum/webp3

If you want to have several music directories that are not under the same parent dir, add several volumes to /media subdirectories:

podman run --rm -d \
    -e WEBP3_BASE_URL=https://your.example/webp3/ \
    -v /path/to/some/files:/media/first:ro \
    -v /another/folder/to/share:/media/second:ro \
    -p 8000:8000 \
    registry.gitlab.com/hydrargyrum/webp3

Standalone server

First, run something like:

webp3.py -p 8000 music=/path/to/some/files music2=/another/folder/to/share

The command will not terminate, the files are served as long as WebP3 is running.

Open http://localhost:8000 to see (and play!) the music.

There will be 2 roots, /music and /music2, serving respectively the full content of /path/to/some/files and /another/folder/to/share.

Command-line flags:

-p PORT

WebP3 will listen on port (default: 8000)

Single root

If it's not needed to have multiple roots, it's possible to run instead

webp3.py -p 8000 --single-root /path/to/some/files

WSGI

WebP3 can be set up to run as a WSGI app, for example to be served by an existing Apache instance. When using WSGI, the mappings that were passed on command-line should now be placed in a webp3.conf file, with one NAME=PATH entry per line.

Using the documented script in the apache folder, the installation is as follows:

  • the WebP3 code and WSGI is typically in a path like /usr/lib/python3/dist-packages/webp3
  • the Apache configuration is in /etc/apache2/sites-available/webp3.conf
  • the WebP3 config indicating the locations of the music files is at /etc/webp3.conf

Using an Apache instance to run the WebP3 WSGI allows:

  • HTTPS
  • serving the music tree under an URL prefix

If not using the default location, the config file can be passed in env variable WEBP3_CONF.

Dependencies

WebP3 is written in Python 3 and uses:

Security

WebP3 does not write files. However, it gives access to all files and folders contained in directories specified in its configuration. Therefore, directory containing sensitive data should not be put in its configuration.

WebP3 does not have by itself any authentication mechanism to restrict access to its content. If this is desired a proxy should be used, or access can be configured in an existing WSGI server (like Apache).

WebP3 reads files with the process' permissions. For example, if using WSGI, WebP3 will likely read files with the www-data user's permissions. WebP3 does not follow symlinks.

Install

On PyPI:

pipx install webp3

License

WebP3 is licensed under the do What The Fuck you want Public License v2.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

webp3-1.5.1.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

webp3-1.5.1-py3-none-any.whl (18.9 kB view details)

Uploaded Python 3

File details

Details for the file webp3-1.5.1.tar.gz.

File metadata

  • Download URL: webp3-1.5.1.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for webp3-1.5.1.tar.gz
Algorithm Hash digest
SHA256 e177709b81eb107812cd0d6da7e50516838e85ee9d40395c9001b6b462ec32a2
MD5 45eb7e62da304f2d90055b2edd83856c
BLAKE2b-256 8ce362c4b5fa336db04f5efba567df591d93016885787b6c637c2eef343dd240

See more details on using hashes here.

File details

Details for the file webp3-1.5.1-py3-none-any.whl.

File metadata

  • Download URL: webp3-1.5.1-py3-none-any.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for webp3-1.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5b2f3d3c73aef422835ef5730007baeac5579e2398b865a65f6636f80617bf35
MD5 bbe07f33f2a7059ce8c9c88bb67d7c48
BLAKE2b-256 dcf051d7d2abe64ac0ef3db28a0224ae2e3287e68be9cdfed606e4182da8829c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page