A beginner’s guide to ambient radio chatter
A step-by-step guide to creating your own ambient radio chatter station.
Feeling alone cooped up in your room? Feeling brain-dead and stressed at work? Here’s a quick fix — how about a step-by-step guide in creating your own ambient radio mix…
Tune into the airports of the world as you work or study.
There’s something oddly satisfying about listening to the static of air traffic controllers getting lapped up by the smooth audio waves of calm cosmic ambience. You could even call it meditative. Maybe you even have a fetish for radio voyeurism.
Radio voyeurism: the urge to peer into the working lives of others across the world through the cackle of a radio
I stumbled across a few websites that offer is service:
Here’s your chance to make your own. You don’t need to know how to program (in fact it’s better if you don’t) – anyone can do it!
I will show you some basic HTML script and in 5 minutes you will be tuning to the airwaves over the skies of Novosibirsk or Tokyo (very secretly and discreetly).
Step 1. Creating that HTML template
First you need to create a basic bare-bones HTML template. You can do this in notepad.
<!DOCTYPE html><html>
<title> My Simple Ambient Airwaves </title>
<body>
<!-- here is where we will add the radio chatter --></body>
</html>Save it as a .html file. Open it and see how it looks. It should be an empty white page with the tab heading “My Simple Ambient Airwaves”.
Step 2. Adding the Radio Chatter
Airport radio chatter is free for all. The site I’m using is liveatc.net
Here we’re going to embed the radio chatter. This snippet goes in the body.
<audio id="chatter" crossorigin="anonymous" preload="auto" src="https://s1-bos.liveatc.net/unnt" type="audio/mp3" controls="controls" autoplay="autoplay">
</audio>Notice I’m using the link https://s1-bos.liveatc.net/unnt — the slug ‘unnt’ refers to Novosibirsk airport.
Here’s a list of a few other airports:
Tokyo: rjtt_app_depDublin: eidw3Chicago: kord8You can replace ‘unnt’ with any of those if you wish. You can browse the feeds from liveatc and pick the feed you prefer. I prefer the Novosibirsk airport channel because it’s much more active than other airports. I don’t speak Russian, so it’s not too distracting whilst I work. Many larger airports have multiple channels, so each channel tend to have more downtime.
Step 3. Adding Ambient Music
Airport chatter alone is not particularly ambient. No – otherwise I’d have signed up to be an air traffic controller. In fact is quite hectic and stressful. Here’s how you add in the ambient part.
We are going to embed some YouTube music.
<iframe id="video" height="0" src="https://www.youtube.com/embed/Dbgpt4Dp6kA?rel=0&controls=0&showinfo=0&enablejsapi=1&autoplay=1&loop=1" frameborder="0" allow="autoplay" ></iframe>I’ve picked this Space Ambient Music. Now notice I’ve made the height=“0” — we want to keep our html nice and empty.






