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.

Files changed (22) hide show
  1. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/PKG-INFO +3 -2
  2. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/karaoke_gen.py +1 -1
  3. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/pyproject.toml +1 -1
  4. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/LICENSE +0 -0
  5. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/README.md +0 -0
  6. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/__init__.py +0 -0
  7. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/audio_processor.py +0 -0
  8. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/config.py +0 -0
  9. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/file_handler.py +0 -0
  10. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/karaoke_finalise/__init__.py +0 -0
  11. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/karaoke_finalise/karaoke_finalise.py +0 -0
  12. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/lyrics_processor.py +0 -0
  13. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/metadata.py +0 -0
  14. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/AvenirNext-Bold.ttf +0 -0
  15. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/Montserrat-Bold.ttf +0 -0
  16. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/Oswald-Bold.ttf +0 -0
  17. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/Oswald-SemiBold.ttf +0 -0
  18. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/resources/Zurich_Cn_BT_Bold.ttf +0 -0
  19. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/utils/__init__.py +0 -0
  20. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/utils/bulk_cli.py +0 -0
  21. {karaoke_gen-0.62.0 → karaoke_gen-0.62.1}/karaoke_gen/utils/gen_cli.py +0 -0
  22. {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.3
1
+ Metadata-Version: 2.4
2
2
  Name: karaoke-gen
3
- Version: 0.62.0
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 not isinstance(separation_future, asyncio.Task) and len(results) > separation_result_index:
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.0"
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