You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you decode a FLAC file into WAV, the method FlacDecoder.process() creates a temporal wav file.
Then, it uses soundfile to read the decoded file and return it.
However, it never deletes the temporal file, which is problematic when you need to process several files at the same time.
Is it possible to avoid the use of the temporal file? Or, perhaps would be better if we delete the temp file before the return?
The text was updated successfully, but these errors were encountered:
groadabike
changed the title
File Decoder creates temporal file and doesn't delete it
File Decoder creates temporal files and doesn't delete them
Jan 9, 2025
When you decode a FLAC file into WAV, the method
FlacDecoder.process()
creates a temporal wav file.Then, it uses soundfile to read the decoded file and return it.
However, it never deletes the temporal file, which is problematic when you need to process several files at the same time.
Is it possible to avoid the use of the temporal file? Or, perhaps would be better if we delete the temp file before the return?
The text was updated successfully, but these errors were encountered: