lyrics-transcriber 0.16.2__tar.gz → 0.16.3__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.
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/PKG-INFO +1 -1
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/transcriber.py +0 -3
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/pyproject.toml +1 -1
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/LICENSE +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/README.md +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/__init__.py +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/audioshake_transcriber.py +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/llm_prompts/README.md +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/llm_prompts/llm_prompt_lyrics_correction_andrew_handwritten_20231118.txt +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/llm_prompts/llm_prompt_lyrics_correction_gpt_optimised_20231119.txt +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/llm_prompts/llm_prompt_lyrics_matching_andrew_handwritten_20231118.txt +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/llm_prompts/promptfooconfig.yaml +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/llm_prompts/test_data/ABBA-UnderAttack-Genius.txt +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/utils/__init__.py +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/utils/ass.py +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/utils/cli.py +0 -0
- {lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/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.
|
3
|
+
Version: 0.16.3
|
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
|
@@ -762,9 +762,6 @@ class LyricsTranscriber:
|
|
762
762
|
if "h264_videotoolbox" in ffmpeg_codes:
|
763
763
|
video_codec = "h264_videotoolbox"
|
764
764
|
self.logger.info(f"video codec set to hardware accelerated h264_videotoolbox")
|
765
|
-
elif "h264_qsv" in ffmpeg_codes:
|
766
|
-
video_codec = "h264_qsv"
|
767
|
-
self.logger.info(f"video codec set to hardware accelerated h264_qsv")
|
768
765
|
|
769
766
|
ffmpeg_cmd += [
|
770
767
|
# Use accompaniment track as audio
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "lyrics-transcriber"
|
3
|
-
version = "0.16.
|
3
|
+
version = "0.16.3"
|
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"
|
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/audioshake_transcriber.py
RENAMED
File without changes
|
{lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/llm_prompts/README.md
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/utils/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.16.2 → lyrics_transcriber-0.16.3}/lyrics_transcriber/utils/subtitles.py
RENAMED
File without changes
|