feat: add metadata enrichers & refactor

This commit is contained in:
2026-03-31 06:08:16 +02:00
parent d76b25e250
commit 4e83e6be15
19 changed files with 363 additions and 60 deletions
+3 -1
View File
@@ -25,7 +25,9 @@ class LocalFetcher(BaseFetcher):
def source_name(self) -> str:
return "local"
def fetch(self, track: TrackMeta) -> Optional[LyricResult]:
def fetch(
self, track: TrackMeta, bypass_cache: bool = False
) -> Optional[LyricResult]:
"""Attempt to read lyrics from local filesystem."""
if not track.is_local or not track.url:
return None