Skip to content

Commit d0c2701

Browse files
committed
Fixed unintentional block on transcription with unknown artist and title
1 parent 66b9b4a commit d0c2701

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

lyrics_transcriber/transcriber.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,6 @@ def __init__(
146146
if self.audio_filepath is None:
147147
raise Exception("audio_filepath must be specified as the input source to transcribe")
148148

149-
if not self.song_known:
150-
raise Exception("cannot correct song lyrics without artist and title to fetch lyrics")
151-
152149
self.create_folders()
153150

154151
def generate(self):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "lyrics-transcriber"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
description = "Automatically create synchronised lyrics files in ASS and MidiCo LRC formats with word-level timestamps, using Whisper and lyrics from Genius and Spotify"
55
authors = ["Andrew Beveridge <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)