This is an example script that can be attached to AzuraCast and will allow you to stream your radio (alongside a video loop) to an RTMP destination, such as YouTube, etc. while writing the currently playing song across the screen dynamically.
This guide assumes you have already completed a Docker installation of AzuraCast and installed it in the recommended directory (/var/azuracast
). If you have installed it elsewhere, modify your directories below accordingly.
This repository depends on a feature (atomically written nowplaying.txt files associated with each station) that only exists in AzuraCast versions released after June 23, 2019. Make sure you are on the latest version of AzuraCast before continuing.
Run the following commands on your host to clone this repository:
mkdir -p /tmp/ac_videostream
git clone https://github.com/AzuraCast/radio-video-stream.git /tmp/ac_videostream
mv /tmp/ac_videostream/videostream /var/azuracast/videostream
mv /tmp/ac_videostream/docker-compose.override.yml /var/azuracast/docker-compose.override.yml
This repository includes a default video and example text, but you will likely want to customize the environment variables to suit your server. You will also need to provide your RTMP (YouTube, etc) credentials for the video stream to work.
The environment variables are listed in /var/azuracast/docker-compose.override.yml
. Open this file in your editor of choice and customize it before building and running the container.
To build and start the new Docker container, you can run:
cd /var/azuracast
docker-compose build videostream
docker-compose up -d