avatarCassius

Summary

The website provides a beginner's guide to creating an ambient radio chatter station, combining live air traffic control audio with ambient music to enhance focus and relaxation.

Abstract

The guide outlines a simple process for individuals to create their own ambient radio station that mixes the sounds of air traffic control chatter with calming ambient music. It emphasizes the ease of the project, requiring minimal programming knowledge and using basic HTML to embed audio streams from liveatc.net and YouTube. The purpose is to offer a unique auditory experience that can help alleviate feelings of loneliness, stress, or the need for background noise while working or studying. The article also suggests that this can be a form of "radio voyeurism," allowing listeners to tune into the lives of others across the world, and provides specific instructions and code snippets for setting up the radio station, including how to select different airport feeds and embed ambient YouTube videos.

Opinions

  • The author finds satisfaction and a meditative quality in listening to the blend of air traffic control static and ambient music.
  • There is an implication that some individuals may have a fascination or "fetish" for listening in on the working lives of others through radio, termed "radio voyeurism."
  • The Novosibirsk airport channel is preferred by the author for its activity level and the fact that not understanding Russian makes it less distracting.
  • The author expresses that air traffic control chatter alone is not ambient and can be hectic, which is why combining it with ambient music is essential for creating a relaxing atmosphere.
  • The guide suggests that using noise-cancelling headphones can enhance the experience, implying that it's a personal and private activity, suitable for environments like work or meditation.
  • The author encourages experimentation with different airport feeds and provides examples, indicating a subjective preference for certain types of chatter based on activity levels and language.

A beginner’s guide to ambient radio chatter

A step-by-step guide to creating your own ambient radio chatter station.

Photo by Anthony Tran on Unsplash

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_dep
Dublin: eidw3
Chicago: kord8

You 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&amp;controls=0&amp;showinfo=0&amp;enablejsapi=1&amp;autoplay=1&amp;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.

If you pasted that snippet in the body, you should have a bare-bones working template. Let me know if its worked for you. Whenever you feel like a bit of air traffic chatter voyeurism, just fire up your blank looking html file.

Putting it all together

Your simple HTML file should look like this:

<!DOCTYPE html>
<html>
<title>My Simple Ambient Airwaves </title>
<body>
<audio id="chatter" crossorigin="anonymous" preload="auto" src="https://s1-bos.liveatc.net/unnt" type="audio/mp3" controls="controls" autoplay="autoplay"></audio>
<iframe id="video" height="0" src="https://www.youtube.com/embed/Dbgpt4Dp6kA?rel=0&amp;controls=0&amp;showinfo=0&amp;enablejsapi=1&amp;autoplay=1&amp;loop=1" frameborder="0" allow="autoplay" ></iframe>
</body>
</html>

No one at work will suspect a thing. Time to get those noise cancelling headphones.

Photo by Nick Dunlap on Unsplash

Things to do with your newly created ambient radio station

Listen to it while you work. For short to medium lengths of time, I find it helps in terms of concentration.

Listen to it while you meditate.

Listen to it whilst you pretend you’re floating around the International Space Station.

All great options to consider. Let me know how else you’re using your oddly relaxing webpage.

Safe travels.

Radio
Airports
Ambient Music
Mediation
Music
Recommended from ReadMedium