* pydub `AudioSegment.from_file` loads the entire file at once, at least by default. check if it can lazy-load the file instead. * and/or use LRU to keep the past 10-or-so accessed episodes in RAM.
AudioSegment.from_fileloads the entire file at once, at least by default. check if it can lazy-load the file instead.