-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated triton patch, added retry and backup mechanism for genius lyr…
…ics fetch
- Loading branch information
Showing
4 changed files
with
62 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "lyrics-transcriber" | ||
version = "0.16.3" | ||
version = "0.16.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" | ||
authors = ["Andrew Beveridge <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -30,6 +30,7 @@ openai-whisper = ">=20231117" | |
transformers = ">=4" | ||
auditok = ">=0.2" | ||
whisper-timestamped = ">=1" | ||
tenacity = ">=8" | ||
# Note: after adding openai-whisper and whisper-timestamped with poetry lock, I then removed all traces of triton | ||
# from poetry.lock before running poetry install, as triton doesn't support macOS but isn't actually needed for whisper. | ||
# This was the only way I was able to get a working cross-platform build published to PyPI. | ||
|
@@ -47,4 +48,4 @@ lyrics-transcriber = 'lyrics_transcriber.utils.cli:main' | |
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
build-backend = "poetry.core.masonry.api" |