karaoke-gen 0.62.0__tar.gz → 0.62.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.
Potentially problematic release.
This version of karaoke-gen might be problematic. Click here for more details.
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/PKG-INFO +3 -2
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/karaoke_gen.py +1 -1
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/pyproject.toml +1 -1
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/LICENSE +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/README.md +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/__init__.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/audio_processor.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/config.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/file_handler.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/karaoke_finalise/__init__.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/karaoke_finalise/karaoke_finalise.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/lyrics_processor.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/metadata.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/AvenirNext-Bold.ttf +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/Montserrat-Bold.ttf +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/Oswald-Bold.ttf +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/Oswald-SemiBold.ttf +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/Zurich_Cn_BT_Bold.ttf +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/utils/__init__.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/utils/bulk_cli.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/utils/gen_cli.py +0 -0
- {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/video_generator.py +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: karaoke-gen
|
|
3
|
-
Version: 0.62.
|
|
3
|
+
Version: 0.62.1
|
|
4
4
|
Summary: Generate karaoke videos with synchronized lyrics. Handles the entire process from downloading audio and lyrics to creating the final video with title screens.
|
|
5
5
|
License: MIT
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Author: Andrew Beveridge
|
|
7
8
|
Author-email: andrew@beveridge.uk
|
|
8
9
|
Requires-Python: >=3.10,<3.14
|
|
@@ -496,7 +496,7 @@ class KaraokePrep:
|
|
|
496
496
|
# Check if separation_future was the placeholder or a real task
|
|
497
497
|
# The result index in `results` depends on whether transcription_future existed
|
|
498
498
|
separation_result_index = 1 if transcription_future else 0
|
|
499
|
-
if separation_future is not None and
|
|
499
|
+
if separation_future is not None and isinstance(separation_future, asyncio.Task) and len(results) > separation_result_index:
|
|
500
500
|
self.logger.info("Processing separation results...")
|
|
501
501
|
try:
|
|
502
502
|
separation_results = results[separation_result_index]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "karaoke-gen"
|
|
3
|
-
version = "0.62.
|
|
3
|
+
version = "0.62.1"
|
|
4
4
|
description = "Generate karaoke videos with synchronized lyrics. Handles the entire process from downloading audio and lyrics to creating the final video with title screens."
|
|
5
5
|
authors = ["Andrew Beveridge <andrew@beveridge.uk>"]
|
|
6
6
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|