Is it possible to create an "infinite" WAV file, that can be appended?
I want to continously record audio and write it into a WAV file, but I can't overwrite the file to save it as new. The reason is that I want to use ist as basis of streaming with FFmpeg, which gets the visual part by an image pipe.
I program in Python and want to do something like
audio_file = wave.open("myfile.wav")
audio_file.setlength(9999999)
audio_file.append(chunksof_audio)