etc-player


Nameetc-player JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://www.emmatc.com
SummaryETC Design Audio Playlist Player - turn a rasberry pi into a scheduled audio player.
upload_time2024-08-27 08:39:02
maintainerNone
docs_urlNone
authorBrian Kohan
requires_python<4.0,>=3.9
licenseMIT
keywords django museum audio player schedule raspberry pi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # etc_design_player

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![PyPI version](https://badge.fury.io/py/etc-player.svg)](https://pypi.python.org/pypi/etc-player/)
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/etc-player.svg)](https://pypi.python.org/pypi/etc-player/)
[![PyPI djversions](https://img.shields.io/pypi/djversions/etc-player.svg)](https://pypi.org/project/etc-player/)
[![PyPI status](https://img.shields.io/pypi/status/etc-player.svg)](https://pypi.python.org/pypi/etc-player)
[![Code Cov](https://codecov.io/gh/bckohan/etc_design_player/branch/main/graph/badge.svg?token=0IZOKN2DYL)](https://codecov.io/gh/bckohan/etc_design_player)
[![Test Status](https://github.com/bckohan/etc_design_player/workflows/test/badge.svg)](https://github.com/bckohan/etc_design_player/actions/workflows/test.yml)
[![Lint Status](https://github.com/bckohan/etc_design_player/workflows/lint/badge.svg)](https://github.com/bckohan/etc_design_player/actions/workflows/lint.yml)


Use a [Raspberry Pi](https://www.raspberrypi.com/) to play audio wave files on a configurable schedule or on demand via a web interface. This software was originally developed to time the audio playback of museum exhibit audio tracks with the opening schedule of the museum.


## Installation

Install the Raspberry Pi operating system and connect it to your local network. **Change the hostname of your Raspberry Pi to a memorable unique name** - this name will be used access the scheduler later. The **hostname** can be changed by clicking the raspberry in the upper left menu and selecting "Preferences" -> "Raspberry Pi Configuration" -> "System" -> "**Hostname**". While you have the preferences open, also enable ssh access by selecting the "Interfaces" and toggling SSH on. Click save and reboot.

Most wifi networks will allow you to access your Raspberry Pi over the network using the **hostname** you set. Only if your network does not will you have to use its IP address instead. [There are numerous ways to do determine the IP](https://letmegooglethat.com/?q=How+do+I+determine+my+Raspberry+PI%27s+IP+address%3F) - but be aware that power outages and other circumstances can change the IP address of your Pi. For that reason it is advisable to give it a static IP address on your network - which you can do by configuring the wifi router or asking your local tech support for help.

 - To install from the Raspberry Pi Desktop:
    * Download the [installer](https://github.com/bckohan/etc_design_player/raw/main/install.sh).
    * Double click on the install.sh file and select "execute in terminal".
 - To install from your computer's terminal: (replace "**hostname**" and "pi" with your Pi's **hostname** and account username respectively). 

    ```console
      ssh pi@hostname
      ?> curl -sSL https://github.com/bckohan/etc_design_player/raw/main/install.sh | bash
    ```

 - After a few minutes the install script will prompt you to enter a username and password. This will be the account you use to login to the web interface to configure the playback. Once the install script disappears the install is complete.
 - To configure your playback from a computer on the same wifi network you can access from: `http://hostname/admin` where **hostname** is the **hostname** you set earlier or if on your Raspberry Pi's desktop you may also use http://localhost/admin

## Usage

Most wifi networks will allow you to access the scheduler interface through `http://hostname/admin` (where **hostname** is the **hostname** you set during install). If this does not work you may need to use the IP  address instead. As mentioned before there are numerous ways to determine the IP.

When accessing the admin the username/password will be the credentials you setup when you ran install.sh.

Upload a wave file by adding a wave. There is no progress indicator on the wave file upload interface - so be patient and wait for the page to refresh before navigating after you hit save.

Scheduling is done per-day-of-the-week. Only one contiguous block of time per day can be scheduled. To schedule a playback, create a playlist from one or more wave files. The playlist will loop until the scheduled time ends, and the currently playing wave file will be allowed to finish before the audio terminates after the end time is reached.

The configured schedule will always be honored unless you add a Manual Override. Manual Overrides can be scheduled for specific dates into the future and may start or stop playlists. Volume control and play/stop functions can be accessed from the main page: `http://hostname/`

**_NOTE:_**  On some hosts (OSX) you may need to use `hostname.local` instead of `hostname`.

## For Developers

This software uses the [Django](https://www.djangoproject.com/) webserver to provide the user interface.

The [Poetry](https://python-poetry.org/) build tool is used to manage dependencies and build the project:

You may also want to install [pyaudio](https://pypi.org/project/PyAudio/) for audio support on OSX.

`poetry install -E all`

Run the tests:
`poetry run ./etc_player/player.py test`

Run the development server:
   * `poetry run ./etc_player/player.py migrate`
   * `poetry run ./etc_player/player.py runserver`

The operational environment is configured using scripts located in etc_player/ops. ``install.sh`` can be referenced to see how they are installed onto the system. The architecture serves the Django web interface using gunicorn proxied through nginx. The audio player script is managed as a simple always-on systemd service which makes the audio playback robust to power interruptions and other system failures.

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.emmatc.com",
    "name": "etc-player",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.9",
    "maintainer_email": null,
    "keywords": "django, museum, audio, player, schedule, raspberry pi",
    "author": "Brian Kohan",
    "author_email": "bckohan@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/b6/3a/66bac1d8bf8b73f9fb2416ed9d9e9382e49af59268f469663ea580307a30/etc_player-1.1.0.tar.gz",
    "platform": null,
    "description": "# etc_design_player\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n[![PyPI version](https://badge.fury.io/py/etc-player.svg)](https://pypi.python.org/pypi/etc-player/)\n[![PyPI pyversions](https://img.shields.io/pypi/pyversions/etc-player.svg)](https://pypi.python.org/pypi/etc-player/)\n[![PyPI djversions](https://img.shields.io/pypi/djversions/etc-player.svg)](https://pypi.org/project/etc-player/)\n[![PyPI status](https://img.shields.io/pypi/status/etc-player.svg)](https://pypi.python.org/pypi/etc-player)\n[![Code Cov](https://codecov.io/gh/bckohan/etc_design_player/branch/main/graph/badge.svg?token=0IZOKN2DYL)](https://codecov.io/gh/bckohan/etc_design_player)\n[![Test Status](https://github.com/bckohan/etc_design_player/workflows/test/badge.svg)](https://github.com/bckohan/etc_design_player/actions/workflows/test.yml)\n[![Lint Status](https://github.com/bckohan/etc_design_player/workflows/lint/badge.svg)](https://github.com/bckohan/etc_design_player/actions/workflows/lint.yml)\n\n\nUse a [Raspberry Pi](https://www.raspberrypi.com/) to play audio wave files on a configurable schedule or on demand via a web interface. This software was originally developed to time the audio playback of museum exhibit audio tracks with the opening schedule of the museum.\n\n\n## Installation\n\nInstall the Raspberry Pi operating system and connect it to your local network. **Change the hostname of your Raspberry Pi to a memorable unique name** - this name will be used access the scheduler later. The **hostname** can be changed by clicking the raspberry in the upper left menu and selecting \"Preferences\" -> \"Raspberry Pi Configuration\" -> \"System\" -> \"**Hostname**\". While you have the preferences open, also enable ssh access by selecting the \"Interfaces\" and toggling SSH on. Click save and reboot.\n\nMost wifi networks will allow you to access your Raspberry Pi over the network using the **hostname** you set. Only if your network does not will you have to use its IP address instead. [There are numerous ways to do determine the IP](https://letmegooglethat.com/?q=How+do+I+determine+my+Raspberry+PI%27s+IP+address%3F) - but be aware that power outages and other circumstances can change the IP address of your Pi. For that reason it is advisable to give it a static IP address on your network - which you can do by configuring the wifi router or asking your local tech support for help.\n\n - To install from the Raspberry Pi Desktop:\n    * Download the [installer](https://github.com/bckohan/etc_design_player/raw/main/install.sh).\n    * Double click on the install.sh file and select \"execute in terminal\".\n - To install from your computer's terminal: (replace \"**hostname**\" and \"pi\" with your Pi's **hostname** and account username respectively). \n\n    ```console\n      ssh pi@hostname\n      ?> curl -sSL https://github.com/bckohan/etc_design_player/raw/main/install.sh | bash\n    ```\n\n - After a few minutes the install script will prompt you to enter a username and password. This will be the account you use to login to the web interface to configure the playback. Once the install script disappears the install is complete.\n - To configure your playback from a computer on the same wifi network you can access from: `http://hostname/admin` where **hostname** is the **hostname** you set earlier or if on your Raspberry Pi's desktop you may also use http://localhost/admin\n\n## Usage\n\nMost wifi networks will allow you to access the scheduler interface through `http://hostname/admin` (where **hostname** is the **hostname** you set during install). If this does not work you may need to use the IP  address instead. As mentioned before there are numerous ways to determine the IP.\n\nWhen accessing the admin the username/password will be the credentials you setup when you ran install.sh.\n\nUpload a wave file by adding a wave. There is no progress indicator on the wave file upload interface - so be patient and wait for the page to refresh before navigating after you hit save.\n\nScheduling is done per-day-of-the-week. Only one contiguous block of time per day can be scheduled. To schedule a playback, create a playlist from one or more wave files. The playlist will loop until the scheduled time ends, and the currently playing wave file will be allowed to finish before the audio terminates after the end time is reached.\n\nThe configured schedule will always be honored unless you add a Manual Override. Manual Overrides can be scheduled for specific dates into the future and may start or stop playlists. Volume control and play/stop functions can be accessed from the main page: `http://hostname/`\n\n**_NOTE:_**  On some hosts (OSX) you may need to use `hostname.local` instead of `hostname`.\n\n## For Developers\n\nThis software uses the [Django](https://www.djangoproject.com/) webserver to provide the user interface.\n\nThe [Poetry](https://python-poetry.org/) build tool is used to manage dependencies and build the project:\n\nYou may also want to install [pyaudio](https://pypi.org/project/PyAudio/) for audio support on OSX.\n\n`poetry install -E all`\n\nRun the tests:\n`poetry run ./etc_player/player.py test`\n\nRun the development server:\n   * `poetry run ./etc_player/player.py migrate`\n   * `poetry run ./etc_player/player.py runserver`\n\nThe operational environment is configured using scripts located in etc_player/ops. ``install.sh`` can be referenced to see how they are installed onto the system. The architecture serves the Django web interface using gunicorn proxied through nginx. The audio player script is managed as a simple always-on systemd service which makes the audio playback robust to power interruptions and other system failures.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "ETC Design Audio Playlist Player - turn a rasberry pi into a scheduled audio player.",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://www.emmatc.com",
        "Repository": "https://github.com/bckohan/etc_design_player"
    },
    "split_keywords": [
        "django",
        " museum",
        " audio",
        " player",
        " schedule",
        " raspberry pi"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcc8bd5f19f0689821e298d646afcc6a52e2c439b9e198526101eaf867fb1d8b",
                "md5": "6750e49cbb82f02bfd009e44c4d13a51",
                "sha256": "43f5d403f28c90522aefd4752d493822cf9f9e9be074f00b35b67e694fe6348d"
            },
            "downloads": -1,
            "filename": "etc_player-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6750e49cbb82f02bfd009e44c4d13a51",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 1524592,
            "upload_time": "2024-08-27T08:38:59",
            "upload_time_iso_8601": "2024-08-27T08:38:59.352638Z",
            "url": "https://files.pythonhosted.org/packages/bc/c8/bd5f19f0689821e298d646afcc6a52e2c439b9e198526101eaf867fb1d8b/etc_player-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b63a66bac1d8bf8b73f9fb2416ed9d9e9382e49af59268f469663ea580307a30",
                "md5": "abfd1161a176bdac6cd1bcd61eb67b90",
                "sha256": "3d6cce936c708852298ceffe45e9a4e727c0fc5e9a5437555cdf6ab4fe43bf13"
            },
            "downloads": -1,
            "filename": "etc_player-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "abfd1161a176bdac6cd1bcd61eb67b90",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 1488955,
            "upload_time": "2024-08-27T08:39:02",
            "upload_time_iso_8601": "2024-08-27T08:39:02.224260Z",
            "url": "https://files.pythonhosted.org/packages/b6/3a/66bac1d8bf8b73f9fb2416ed9d9e9382e49af59268f469663ea580307a30/etc_player-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-27 08:39:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "bckohan",
    "github_project": "etc_design_player",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "etc-player"
}
        
Elapsed time: 0.76095s