Skip to main content

A python module to broacast radio waves with your Raspberry Pi.

Project description

PiWave image

PiWave

PiWave is a Python module designed to manage and control your Raspberry Pi radio using the pi_fm_rds utility. It allows you to easily convert audio files to WAV format and broadcast them at a specified frequency with RDS (Radio Data System) support.

Features

  • Converts audio files to WAV format.
  • Broadcasts WAV files using the pi_fm_rds utility.
  • Configurable broadcast frequency, PS (Program Service), RT (Radio Text), and PI (Program Identifier).
  • Supports looping of playback.
  • Detailed logging for debug mode.
  • Supports streaming from URLs.
  • Better error handling and event callbacks.
  • Non-blocking playback with threading.
  • Temporary file management for streamed content.

[!NOTE] Are you looking for a minimal GUI for PiWave? Take a look at the PiWave WebGUI

Hardware Installation

To use PiWave for broadcasting, you need to set up the hardware correctly. This involves connecting an antenna or cable to the Raspberry Pi's GPIO pin.

  1. Connect the Cable or Antenna:

    • Attach a cable or an antenna to GPIO 4 (Pin 7) on the Raspberry Pi.
    • Ensure the connection is secure to avoid any broadcasting issues.
  2. GPIO Pinout:

    • GPIO 4 (Pin 7) is used for the broadcasting signal.
    • Ensure that the cable or antenna is properly connected to this pin for optimal performance.

Installation

[!WARNING] Warning: Using PiWave involves broadcasting signals which may be subject to local regulations and laws. It is your responsibility to ensure that your use of PiWave complies with all applicable legal requirements and regulations in your area. Unauthorized use of broadcasting equipment may result in legal consequences, including fines or penalties.

Liability: The author of PiWave is not responsible for any damage, loss, or legal issues that may arise from the use of this software. By using PiWave, you agree to accept all risks and liabilities associated with its operation and broadcasting capabilities.

Please exercise caution and ensure you have the proper permissions and knowledge of the regulations before using PiWave for broadcasting purposes.

Auto Installer

For a quick and easy installation, you can use the auto installer script. Open a terminal and run:

curl -sL https://setup.piwave.xyz/ | sudo bash

This command will download and execute the installation script, setting up PiWave and its dependencies automatically.

[!NOTE] To uninstall, use the following command:

curl -sL https://setup.piwave.xyz/uninstall | sudo bash

Manual Installation

To install PiWave manually, follow these steps:

  1. Clone the repository and install:

    pip install git+https://github.com/douxxtech/piwave.git --break-system-packages
    
  2. Dependencies:

    PiWave requires the ffmpeg and ffprobe utilities for file conversion and duration extraction. Install them using:

    sudo apt-get install ffmpeg
    
  3. PiFmRds:

    PiWave uses PiFmRds to work. Make sure you have installed it before running PiWave.

Usage

Basic Usage

  1. Importing the module:

    from piwave import PiWave
    
  2. Creating an instance:

    piwave = PiWave(
        frequency=90.0,
        ps="MyRadio",
        rt="Playing great music",
        pi="ABCD",
        loop=True,
        debug=True,
        on_track_change=lambda file, index: print(f"Now playing: {file}"),
        on_error=lambda error: print(f"Error occurred: {error}")
    )
    
  3. Adding files to the playlist:

    files = ["path/to/your/audiofile.mp3", "http://example.com/stream.mp3"]
    piwave.add_files(files)
    
  4. Starting playback:

    piwave.play() # or files = ["path/to/your/audiofile.mp3", "http://example.com/stream.mp3"]; piwave.play(files)
    
  5. Stopping playback:

    piwave.stop()
    
  6. Pausing and resuming playback:

    piwave.pause()
    piwave.resume()
    
  7. Skipping tracks:

    piwave.next_track()
    piwave.previous_track()
    
  8. Changing frequency:

    piwave.set_frequency(95.0)
    
  9. Getting status:

    status = piwave.get_status()
    print(status)
    

Configuration

  • frequency: The broadcast frequency in MHz (default: 90.0).
  • ps: Program Service name (up to 8 characters, default: "PiWave").
  • rt: Radio Text (up to 64 characters, default: "PiWave: The best python module for managing your pi radio").
  • pi: Program Identifier (up to 4 characters, default: "FFFF").
  • loop: Whether to loop playback of files (default: False).
  • debug: Enable detailed debug logging (default: False).
  • on_track_change: Callback function when the track changes (default: None).
  • on_error: Callback function when an error occurs (default: None).

Error Handling

  • Raspberry Pi Check: The program verifies if it is running on a Raspberry Pi. It exits with an error message if not.
  • Root User Check: The program requires root privileges to run. It exits with an error message if not run as root.
  • Executable Check: The program automatically finds the pi_fm_rds executable or prompts the user to manually provide its path if it cannot be found.

License

PiWave is licensed under the GNU General Public License (GPL) v3.0. See the LICENSE file for more details.

Contributing

Contributions are welcome! Please submit a pull request or open an issue on GitHub for any bugs or feature requests.


Thank you for using PiWave!

Made with <3 by Douxx

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

piwave-2.0.3.tar.gz (23.8 kB view details)

Uploaded Source

Built Distribution

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

piwave-2.0.3-py3-none-any.whl (21.1 kB view details)

Uploaded Python 3

File details

Details for the file piwave-2.0.3.tar.gz.

File metadata

  • Download URL: piwave-2.0.3.tar.gz
  • Upload date:
  • Size: 23.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piwave-2.0.3.tar.gz
Algorithm Hash digest
SHA256 a9dfb73d83c17aad267f832841b2c78cf77a00691308e12eeca57c22e32ca5de
MD5 8f75c1a6f7331af618335d8521e87063
BLAKE2b-256 b0e4fa7049a98d796f7fd3f8a9c99ca04dc8ba8775e9fadcce33a049de7370b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for piwave-2.0.3.tar.gz:

Publisher: python-publish.yml on douxxtech/piwave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file piwave-2.0.3-py3-none-any.whl.

File metadata

  • Download URL: piwave-2.0.3-py3-none-any.whl
  • Upload date:
  • Size: 21.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for piwave-2.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5247dfeed9aa01561f0d7f8c36e1891c3e8eba38c56c9594ae0b1d8d02587355
MD5 06ffb022f07c9cb03682c76b147ed99c
BLAKE2b-256 8b8bdef58218fa575cec819384011d3de179b9501f6412e98a292d82e19a5791

See more details on using hashes here.

Provenance

The following attestation bundles were made for piwave-2.0.3-py3-none-any.whl:

Publisher: python-publish.yml on douxxtech/piwave

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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