16 downloads 144 views 0 likes Jul 10, 2025

Live Radio on CC by Tom

- Download app.py Get the backend file: bash wget "https://drive.google.com/uc?export=download&id=1fzjyV_nX_QOxNI82Y8JJCnTfwOLTCNTA" -O app.py
- Install Dependencies Debian/Ubuntu (apt): bash
sudo apt install python3-flask python3-requests ffmpeg
Arch Linux (pacman): bash
sudo pacman -S python3-flask python3-requests ffmpeg
- Get a Radio Stream URL Browse my Radio Stations List, https://drive.google.com/file/d/1XKNmHvsKlBh-fInRX5w_0jrBrwWltY5n/view?usp=sharing and copy whichever one you want (e.g., http://streams.radio.co:80/s0aa1e6f4a/listen).
- Configure app.py Edit app.py and replace the default stream: python RADIO_STREAM_URL = 'PASTE_YOUR_STREAM_URL_HERE' # e.g., 'http://streams.radio.co/...'
- Run the Backend bash
python3 app.py
- Launch music.lua on CC Open the Lua frontend, click Play, and enjoy!
Notes
FFmpeg: Ensure it’s in your PATH (usually automatic on Linux).
No Pip: Uses system packages for reliability.
Windows Users: Still need pip install flask ffmpeg-python and manual FFmpeg setup.

comments
You can login with Discord to leave comments and reply to others!

<deleted>
to install pip on arch linux
sudo pacman -S python-pip
then after thats installed
pip install --break-system-packages flask ffmpeg