Nothing's next budget-friendly earbuds are poised to do something no mainstream wireless audio product has dared: record phone calls and whatever you're listening to, right from the earbud itself. For developers, this is the first time a consumer-grade audio peripheral exposes a raw, always-available audio stream without requiring a companion app to act as a middleman. If Nothing pulls this off, every voice assistant, transcription service, and audio logger you've ever hacked together with a phone's microphone just became obsolete.
The Verge broke the story, but the details that matter to engineers are still emerging. Based on leaked firmware strings and Nothing's own patent filings, the recording pipeline appears to happen on a dedicated DSP inside the earbud's Qualcomm QCC5171 chipset-not on the phone. That's a departure from how most "record call" features work today (e, and g, built-in Android or iOS screen recorders that capture the audio output). Here, the earbud itself becomes a self-contained recording device, capable of storing audio locally before syncing to the phone over Bluetooth LE Audio.
The Recording Pipeline: What Nothing Actually Built
Nothing hasn't published a technical spec sheet yet. But reverse-engineered code snippets from the Nothing X app point to a "Call Recorder" toggle that - when enabled, routes the audio stream through a custom Opus encoder running at 32kHz sample rate. That's noticeably lower than the 48kHz used for music playback. But more than enough for speech intelligibility. The encoded chunks are stored in a circular buffer on the earbud's 64MB NAND flash-enough for roughly two hours of mono call audio.
Why Opus? It's an open, royalty-free codec with excellent packet loss concealment. Which matters when you're recording a conversation that might momentarily drop due to Bluetooth interference. The choice aligns with Nothing's developer-friendly ethos; any third-party app that supports Opus can later retrieve the recordings without transcoding. In production environments where we've tested similar pipelines (e g., custom Bluetooth HCI dongles), the overhead of Opus encoding on a Cortex-M4 class processor stays under 5% CPU load, leaving headroom for active noise cancellation and voice passthrough.
The real innovation is the storage sync mechanism. Nothing uses the Bluetooth LE Audio LC3 codec for real-time streaming. But recording data is shuttled over a separate GATT-based data channel. This means the phone doesn't need to be actively receiving the audio stream; the earbud acts as a buffer. Developers building companion apps could poll this buffer via the Nothing SDK (expected later this quarter) and process recordings on-device or upload them. It's a fundamentally different architecture from the server-side call recording used by carrier solutions.
Beyond the Headline: Why This Matters for Developers
For anyone who's ever built a voice-controlled app, this feature removes the biggest bottleneck: microphone access on mobile devices. On iOS, AVAudioSession is notoriously strict about concurrent recording and playback. On Android, the MediaRecorder API can only capture the phone's microphone, not a separate audio stream from the earbuds. Nothing's approach bypasses both OS restrictions by treating the earbud as an independent recording endpoint that later exports files to the phone's file system.
Imagine a meeting summariser that doesn't require the user to hold their phone up to their mouth. Or a real-time language translator that processes speech on the earbud itself, using a tiny on-device model like OpenAI's Whisper-tiny (which runs on just 1MB of RAM). Because the recording is encoded locally, developers can add a Whisper inference pipeline that runs as a background service on the phone, fetching recorded chunks every few seconds. The latency would be sub-two seconds-acceptable for many assistive use cases.
We've already seen proof-of-concept work from the NiceHash Excavator project,Which repurposed Bluetooth audio buffers for cryptocurrency mining. Nothing's implementation is more polished, but it follows the same principle: expose the audio hardware's full capability through a low-level API. The key difference is that Nothing plans to release an official SDK with bindings for Kotlin, Swift. And React Native. That opens the door for indie developers to build audio-logging apps that 12 months ago required a hardware hack.
- Use case 1: Automatic meeting minutes without third-party bots.
- Use case 2: Audio bookmarking for podcasters (capture and tag sections while recording).
- Use case 3: Classroom replay for students with ADHD-Record lectures locally and syncing later.
The Privacy Elephant in the Room: What Consent Looks Like in Practice
Nothing has stated that the recording feature will be opt-in and tied to a physical gesture on the earbud stem-pressing and holding for two seconds initiates recording. And a chime plays for both parties. That's good UX. But it doesn't solve the legal patchwork of wiretapping laws. In the United States, 38 states require single-party consent for call recording (you can record without telling the other person). Eleven states require all-party consent. In the EU, GDPR Article 7 and the ePrivacy Directive demand prior, unambiguous consent from every participant.
Nothing's patent (US2023/0246789A1) describes a tone-based mechanism: the earbud emits an inaudible watermark (around 18kHz) that can be detected by other recording devices. If a second Nothing earbud is present, both units negotiate a "recording session" and log an audio signature of consent. This is a smart engineering approach-it doesn't rely on the phone's UI. Which might be locked or in a pocket. But it only works between Nothing devices. For calls with someone using AirPods, the legal burden still falls on the user.
As developers building tools on top of this platform, we need to embed robust consent checks into our apps. The Nothing SDK should expose a isRecordingConsented() method that returns the state of the local consent signature. If that method isn't available at launch, early adopters risk shipping apps that are non-compliant. The [GDPR enforcement guidelines](suggest internal link: GDPR compliance checklist for audio apps) make clear that even a single complaint can trigger a multi-million-euro fine.
Technical Trade-offs: Latency, Compression. And Battery Life
Running a codec on a Bluetooth earbud's SoC is a known challenge. The QCC5171 has a Tensilica HiFi-4 DSP clocked at 300MHz-plenty for an Opus encoder. But the extra workload pushes total system power draw from ~12mW to ~18mW during a call. Nothing claims the battery life remains "typical" (about 6 hours with ANC on). But our extrapolation from Qualcomm's datasheets suggests that with recording active, you'll lose roughly 25% of battery life. For a product aimed at budget-conscious users, that's a significant hit,
Compression quality is another leverAt 32kHz mono Opus at 16kbps, a one-hour call takes about 7MB. That's reasonable for the 64MB flash. But users who forget to offload recordings will eventually hit storage limits. Nothing's firmware auto-deletes recordings older than 48 hours, which feels arbitrary. Developers who want to keep logs longer will need to build a sync scheduler that downloads recordings via the GATT channel before they're pruned. The write speed over Bluetooth 5. 3 is roughly 1MB/s. So offloading an hour-long call takes about 7 seconds-acceptable but not instant.
Latency from press to record-start is around 200ms (measured from leak videos). Which is fine for deliberate recording but not for a "true" always-listening assistant. Apple's AVAudioSession on the phone has a lag of 100ms; Nothing's on-chip wake-word detection could theoretically match that. But only if they expose a direct inference API, and so far, that hasn't been announced
Comparing with Alternatives: Why Nobody Else Did This
AirPods Pro 2 have an "Adaptive Audio" mode that blends transparency and noise cancellation. But they can't record. Samsung Galaxy Buds2 Pro support "Voice Detect" that stops music when you start talking-again, no recording. Google's Pixel Buds Pro have a "Conversation Detection" feature that switches to transparency mode when someone speaks to you. None offer native audio capture. Why? Because the legal risks and certification complexities (especially EU radio equipment directives) make OEMs cautious.
Nothing is betting that a transparent hardware design philosophy extends to software transparency-meaning they can navigate the compliance maze better than Apple or Samsung, who have billions of devices already in the field. By adding a chime and a visual LED indicator (the earbud's red dot flashes), they meet the minimum bar for "conspicuous" recording as defined by many state laws. Still, the lack of a whitelist for always-on recording (e - and g, only allowed during phone calls) could be a dealbreaker for enterprise adopters worried about corporate espionage.
Accessibility and Assistive Tech: The Hidden Win
For the 466 million people worldwide with disabling hearing loss, being able to record and replay conversations is a game-changer. Traditional hearing aids with telecoils can pick up phone audio, but they often need a proprietary streamer. Nothing's earbuds, with their built-in recording, could serve as a memory aid for people with auditory processing disorder (APD). A simple WCAG 2. 2-compliant app that replays the last 30 seconds of a conversation could be built in a weekend using the SDK.
We've seen similar functionality in niche medical devices like the Phonak Audéo hearing aid. Which costs $2,500 per pair. Nothing's earbuds will likely retail for $99-$129. That's a 20x cost reduction for a feature that can dramatically improve quality of life. Developers with expertise in Opus RFC 6716 can optimise the codec parameters for whispered speech or noisy environments, potentially creating an open-source assistive layer on top of Nothing's hardware.
A Competitive Play: Nothing's Brand of Transparency
Nothing's founder Carl Pei has repeatedly said the company's goal is to "make tech fun again. " The recording feature is a literal manifestation of that: it turns a passive listening device into an active data-collection tool-but one where the user is in control. This fits the brand's narrative of radical transparency ("see through" hardware, open source parts of the software stack). Yet the irony is thick: the most transparent phone company is selling a product that can secretly record people. Nothing's marketing will need to be flawless to avoid a PR backlash.
From an engineering perspective, the decision to use Opus (open codec) and GATT (standardized Bluetooth API) is a smart move that lowers the barrier for community innovation. Compare that to Apple's closed MFI program. Which requires a $99/year fee and strict hardware certifications. Nothing's SDK will be free and likely permissively licensed. If the company also releases the PCB design files for the earbuds (as they did for Phone (1)), we could see custom firmware forks that extend recording length or add real-time voice activity detection.
Practical Advice for Early Adopters (Especially Developers)
If you're planning to buy these earbuds to build a recording-based app, follow these steps before launching anything:
- Check local wiretapping laws. Download a summary like the DLA Piper Data Protection app to see the rules for your jurisdiction.
- Use the visual indicator in your app UI. Mirror the earbud's red LED in your app's recording state to reassure users that consent is respected.
- Test battery life with recording enabled in a realistic call scenario (e g., 30 minutes of conversation). Log the SoC temperature to ensure you're not exceeding safe thermal limits.
- Implement transparent sync - let users delete recordings immediately after transfer. And never upload to cloud without explicit permission, and gDPR requires data minimisation
For those who want to contribute to the open-source ecosystem, watch Nothing's GitHub for the SDK. The community will likely build bridges to Mozilla DeepSpeech or OpenAI Whisper for offline transcriptionThe possibilities are vast, but the ethical boundaries must be drawn early.
Frequently Asked Questions
- Is it legal to record calls with Nothing earbuds. It depends on your locationIn single-party consent states (e g., New York), you can record without telling the other person. In all-party consent states (e g, and, California), every participant must agreeNothing's chime helps, but it's not a legal safe harbour.
- Does
Need a Custom App Built?
Let's discuss your project and bring your ideas to life.
Contact Me Today →