A tool that takes a long audio file, splits it into separate songs and attempts to identify them.
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
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.