-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to latest lyrics-transcriber, cleaned up output filepath to s…
…upport non-youtube sources and contain artist and title
- Loading branch information
Showing
4 changed files
with
76 additions
and
24 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 = "karaoke-generator" | ||
version = "0.4.1" | ||
version = "0.4.2" | ||
description = "Fully automated creation of _acceptable_ karaoke music videos from any music on YouTube, using open source tools and AI (e.g. Whisper and MDX-Net)" | ||
authors = ["Andrew Beveridge <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -12,9 +12,10 @@ python = ">=3.9,<3.11" | |
yt-dlp = "^2023.6.22" | ||
pydub = "^0.25.1" | ||
audio-separator = "^0.3" | ||
lyrics-transcriber = "^0.6" | ||
lyrics-transcriber = "^0.6.3" | ||
python-slugify = "^8.0.1" | ||
regex = "^2023.6.3" | ||
tldextract = "^3.4" | ||
# Note: after adding lyrics-transcriber 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. | ||
|