An audio recorder for the Songbird hardware platform that can record audio from computers, smart phones, and other USB audio devices.
This device sits between your audio source and headset, recording both the USB audio input and headset microphone to an SD card while allowing normal audio playback and conversation.
- Microcontroller: Teensy 4.0
- Audio Processing: SGTL5000 codec via Audio Shield
- Storage: SD card (FAT32 formatted)
- Display: 128x32 OLED
- Controls: 4 buttons
- LEDs: Blue (recording), Pink (playback)
- Insert SD card
- Connect headset via 3.5mm jack
- Connect audio source via USB-C cable
- Computer audio: Record computer audio output + your microphone input
- Interviews: Record remote interviews via video calls
- Music/Podcasts: Record audio from any USB audio source with commentary
- Accessibility: Create audio records for note-taking or hearing assistance
- Documentation: Record important conversations for reference
- Two-party consent states: All parties must consent to recording (California, Florida, etc.)
- One-party consent states: Only the recorder needs to consent
- International calls: May be subject to stricter international laws
- Workplace recording: Often prohibited without employer consent
- Obtain proper consent before recording conversations
- Notify participants when recording is active
- Comply with local laws regarding audio recording
- Protect recorded data from unauthorized access
- Implement retention policies - don't keep recordings longer than necessary
- Encrypt SD cards when possible
- Use strong passwords for file access
- Limit access to recordings on a need-to-know basis
- Delete recordings when no longer needed
- Backup responsibly - consider encryption for cloud storage
This software is provided for education and demonstration purposes only. The developers of this project are not responsible for misuse of this technology. Users must ensure compliance with all applicable laws and ethical standards.
- Install Arduino IDE and Teensyduino
- Install required libraries:
- Audio Library
- Adafruit GFX Library
- Adafruit SSD1306 Library
- Open
SongbirdRecorder.ino
in Arduino IDE - Select Board: Teensy 4.0
- Upload to device
- UP: Start/Stop recording
- DOWN: Play/Pause current recording
- LEFT: Previous recording
- RIGHT: Next recording
- Line 1: Current state and timing
- Line 2: Current filename
- Line 3: Button controls
- Press UP to start recording
- Blue LED shows recording level
- Press UP again to stop
- Files saved as
CALL_timestamp.WAV
- Use LEFT/RIGHT to browse files
- Press DOWN to play current file
- Pink LED shows playback status
Connect to serial monitor (9600 baud) for file management:
LIST
- Show all recordingsDELETE filename.wav
- Delete a recordingDELETEALL
- Delete all recordingsSTATUS
- Show system statusHELP
- Show available commands
Recordings are saved as WAV files:
- 44.1 kHz, 16-bit, mono
- Stored in
/CALLS/
directory on SD card - Compatible with standard audio software
SongbirdRecorder.ino
- Main applicationSongbirdRecorder.h
- Constants and definitionsaudio_manager.ino
- Audio processingsd_manager.ino
- SD card and WAV file operationsdisplay_manager.ino
- OLED displaybutton_manager.ino
- Button handlingserial_manager.ino
- Serial commands
This project is licensed under the MIT License - see below for details:
MIT License
Copyright (c) 2025 Songbird Recorder
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, provided that the following conditions are met:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note: This is a technology is provided for legitimate purposes such as accessibility, documentation, and content creation. Users are solely responsible for ensuring legal compliance and obtaining proper consent when recording conversations. Check local laws regarding audio recording before use.