Im currently working on a project where I would need to split a live audio stream to singele files.
In this project I'm getting constantly a audio stream of something like an podcast and I would like to detect the single 'slices' and save them on audio files with incremented names.
I've found some solutions for audio files but not for live audio streams and I would really appreciate your help. Preferably would be Python, but other langauges are okey too.
Thank you in advance.
You can use FFMPEG to read a live audio stream and output the audio to files that are timestamped or contain an incremental filename.
Please see : Segment Muxer
A simple example would be
This would generate 1800second (30min) files named output_001, output_002, etc.