Skip to content

Instantly share code, notes, and snippets.

@ExternPointer
ExternPointer / resampler.c
Last active May 2, 2025 03:17
Simply audio resampler, which allow to work in realtime (resample stream)
/*
* File format: raw, PCM s16le
* Resample 44100 Hz ./audio.raw to 16000 Hz ./audio_resampled.raw:
* gcc -g resampler.c -o resampler
* ./resampler
*/
#include <stdlib.h>
#include <stdio.h>
#include <memory.h>