The ATC Recorder is a tool crafted to aid student pilots in enhancing their listening comprehension skills. 🎧 It captures live aviation ATC communications and processes the recordings to remove silent periods, ensuring a seamless and efficient review of communications without the drag of unnecessary pauses.
For any aspiring pilot, deciphering live ATC communications can be a daunting task due to the swift pace and unique terminologies. By immersing oneself in these communications, comprehension can be enhanced over time. However, the extended silences can hamper this learning process. This tool comes to the rescue, offering crisp audio recordings free from silent stretches. 🚀
- Live Recording: Grabs real-time ATC communication streams.
- Silence Removal: Processes recordings, ensuring you only hear what's important.
- Dockerized Application: Ensuring a hassle-free experience across all environments.
- Customizable Parameters: Tailor your recording experience as per your needs.
- Docker: For streamlined containerization and deployment. 🐳
- FFmpeg: For all things audio – recording, processing, and segmentation. 🎵
- Bash: The backbone script that drives the recording and processing. 🖥️
Make sure Docker is up and humming on your machine. 🖥️
-
Clone the repository:
git clone https://github.com/lps83/atc-recorder.git cd atc-recorder
-
Build the Docker image:
docker build -t atc_recorder.
If you prefer not to build the image yourself, you can pull the pre-built Docker image directly from Dockerhub:
```
docker pull lps83/atc-recorder:linux
```
- Get the Recorder airborne::
docker run -v /path/on/your/host:/workspace/output \ -e STREAM_URL=http://your-streaming-url-here \ -e STREAM_DURATION=7200 \ atc_recorder
STREAM_URL: Specify the live ATC communication stream's URL.
STREAM_DURATION: Set your preferred recording duration (in seconds).
DEBUG_MODE: Dive deep with logs and temporary files.
SILENCE_THRESHOLD: Tweak the silence detection dB threshold.
SILENCE_DURATION: Define what duration should qualify as silence.