Skip to content

RadioChWeb allows to discover and manage radio streams on Internet. It uses ffmpeg and curl to analyze possible candidate streams.

License

Notifications You must be signed in to change notification settings

diamond2016/RadioChWeb

Repository files navigation

favicon RadioChWeb

RadioChWeb is a radio stream discovery and management web application built with Flask. It analyzes candidate streams (using ffmpeg and curl), stores analysis results, and provides a simple workflow to propose, review, and approve radio sources.

How it works

The core operation is "Analyze Stream". The app uses ffmpeg or curl to probe a stream and extract metadata (bitrate, codec, duration, etc.). Analysis results are persisted and drive acceptance decisions; validated streams become part of the stored radio catalog.

Key points

  • Guest users can search and listen to streams.
  • Registered users can submit streams for analysis and make proposals.
  • Admins review proposals and approve or reject radio sources.

Installation (quick)

  1. Clone:
git clone https://github.com/diamond2016/RadioChWeb.git
cd RadioChWeb
  1. Create and activate venv (Unix/macOS):
python3 -m venv .venv
source .venv/bin/activate
  1. Install dependencies:
python -m pip install --upgrade pip setuptools wheel
python -m pip install -r requirements.txt
  1. Initialize DB (migration helper):
cd migrate_db
python init_db.py
cd ..
  1. Run the app (development):
FLASK_APP=app.py FLASK_ENV=development flask run
# or: python app.py

Testing

pytest -q

Release

  • This repository is released under the Apache-2.0 license. See LICENSE.

Resources

About

RadioChWeb allows to discover and manage radio streams on Internet. It uses ffmpeg and curl to analyze possible candidate streams.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published