diff --git a/lrc_dl/core.py b/lrc_dl/core.py index f4e26eb..70dc380 100644 --- a/lrc_dl/core.py +++ b/lrc_dl/core.py @@ -14,7 +14,7 @@ class Song: @classmethod def from_file(cls, path: Path) -> Self: - metadata = mutagen.File(path) + metadata = mutagen.File(path, easy=True) if "title" not in metadata or "artist" not in metadata: raise RuntimeError("Song is missing title or artist name")