lyrics-transcriber 0.16.0__tar.gz → 0.16.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/PKG-INFO +1 -1
  2. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/transcriber.py +0 -3
  3. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/pyproject.toml +1 -1
  4. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/LICENSE +0 -0
  5. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/README.md +0 -0
  6. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/__init__.py +0 -0
  7. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/audioshake_transcriber.py +0 -0
  8. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/llm_prompts/README.md +0 -0
  9. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/llm_prompts/llm_prompt_lyrics_correction_andrew_handwritten_20231118.txt +0 -0
  10. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/llm_prompts/llm_prompt_lyrics_correction_gpt_optimised_20231119.txt +0 -0
  11. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/llm_prompts/llm_prompt_lyrics_matching_andrew_handwritten_20231118.txt +0 -0
  12. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/llm_prompts/promptfooconfig.yaml +0 -0
  13. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/llm_prompts/test_data/ABBA-UnderAttack-Genius.txt +0 -0
  14. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/utils/__init__.py +0 -0
  15. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/utils/ass.py +0 -0
  16. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/utils/cli.py +0 -0
  17. {lyrics_transcriber-0.16.0 → lyrics_transcriber-0.16.1}/lyrics_transcriber/utils/subtitles.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lyrics-transcriber
3
- Version: 0.16.0
3
+ Version: 0.16.1
4
4
  Summary: Automatically create synchronised lyrics files in ASS and MidiCo LRC formats with word-level timestamps, using Whisper and lyrics from Genius and Spotify
5
5
  Home-page: https://github.com/karaokenerds/python-lyrics-transcriber
6
6
  License: MIT
@@ -146,9 +146,6 @@ class LyricsTranscriber:
146
146
  if self.audio_filepath is None:
147
147
  raise Exception("audio_filepath must be specified as the input source to transcribe")
148
148
 
149
- if not self.song_known:
150
- raise Exception("cannot correct song lyrics without artist and title to fetch lyrics")
151
-
152
149
  self.create_folders()
153
150
 
154
151
  def generate(self):
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "lyrics-transcriber"
3
- version = "0.16.0"
3
+ version = "0.16.1"
4
4
  description = "Automatically create synchronised lyrics files in ASS and MidiCo LRC formats with word-level timestamps, using Whisper and lyrics from Genius and Spotify"
5
5
  authors = ["Andrew Beveridge <andrew@beveridge.uk>"]
6
6
  license = "MIT"