1 Commits

Author SHA1 Message Date
Kevin O'Neill 27b03e4b8f fix: suppress Essentia log spam in audio analyzer 2025-12-25 19:29:12 -06:00
+3
View File
@@ -51,6 +51,9 @@ logger = logging.getLogger('audio-analyzer')
ESSENTIA_AVAILABLE = False
try:
import essentia
# Suppress Essentia's internal "No network created" warnings that spam logs
essentia.log.warningActive = False
essentia.log.infoActive = False
import essentia.standard as es
ESSENTIA_AVAILABLE = True
except ImportError as e: