twynb / AudioStreamSplitting

A tool that takes a long audio file, splits it into separate songs and attempts to identify them.
https://twynb.github.io/AudioStreamSplitting/
GNU General Public License v3.0
2 stars 0 forks source link

Optimisation/Refactor: Remove librosa.load() call from segmentation generator #52

Closed twynb closed 1 year ago

twynb commented 1 year ago

IS: The generator created by segmentation.py includes a call to librosa.load() that loads the data for the given segment. This data isn't used.

OPTIMAL: To save on memory and improve readability, remove this and refactor api_service accordingly.

JosuaE-FHWS commented 1 year ago

This was merged with https://github.com/4lex0017/AudioStreamSplitting/pull/49