From 2040510e9e12479a2e1dbca023b2157a277fae7a Mon Sep 17 00:00:00 2001 From: Nick Payne Date: Sun, 27 Jul 2025 10:14:19 +0100 Subject: [PATCH] consuming output is already fairly well covered --- README.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/README.md b/README.md index c8329ba..f1d73f6 100644 --- a/README.md +++ b/README.md @@ -129,25 +129,6 @@ AudioTee writes raw PCM audio data directly to `stdout` in chunks. All logging, - **Endianness**: Little-endian - **Chunk duration**: 200ms by default (configurable) -### Consuming output - -The simplest way to consume AudioTee's output is to redirect it to a file: - -```bash -./audiotee > captured_audio.pcm -``` - -You can then process this raw PCM file with tools like: -- **FFmpeg**: `ffmpeg -f f32le -ar 48000 -ac 1 -i captured_audio.pcm output.wav` -- **SoX**: `sox -t f32 -r 48000 -c 1 captured_audio.pcm output.wav` -- **Audacity**: Import as raw data with the appropriate settings - -For real-time processing, pipe the output to your application: - -```bash -./audiotee | your_audio_processing_tool -``` - ### Logs and monitoring All program logs are written to `stderr` and can be captured separately: