bastibe / python-soundfile

SoundFile is an audio library based on libsndfile, CFFI, and NumPy
BSD 3-Clause "New" or "Revised" License
676 stars 105 forks source link

How to Synchronously Write WAV to Disk? #394

Open Freedom-JJ opened 1 year ago

Freedom-JJ commented 1 year ago

I want to synchronously write data from memory to disk, in other words, I need to ensure that the file is written to the disk instead of a buffer. Thanks

bastibe commented 1 year ago

flush the file object after every write.