lyrics-transcriber 0.54.0__tar.gz → 0.55.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.
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/PKG-INFO +1 -1
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/.yarn/install-state.gz +0 -0
- lyrics_transcriber-0.55.1/lyrics_transcriber/frontend/__init__.py +25 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/package.json +1 -1
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/review/server.py +2 -1
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/pyproject.toml +7 -1
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/LICENSE +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/README.md +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/__init__.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/cli/__init__.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/cli/cli_main.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/core/__init__.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/core/config.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/core/controller.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/anchor_sequence.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/corrector.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/__init__.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/base.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/extend_anchor.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/levenshtein.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/llm.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/llm_providers.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/no_space_punct_match.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/relaxed_word_count_match.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/repeat.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/sound_alike.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/syllables_match.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/word_count_match.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/handlers/word_operations.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/phrase_analyzer.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/text_utils.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/.gitignore +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/.yarn/releases/yarn-4.7.0.cjs +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/.yarnrc.yml +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/README.md +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/eslint.config.js +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/index.html +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/public/vite.svg +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/App.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/api.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/AddLyricsModal.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/AudioPlayer.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/CorrectionMetrics.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/EditActionBar.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/EditModal.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/EditTimelineSection.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/EditWordList.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/FileUpload.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/FindReplaceModal.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/Header.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/ModeSelector.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/PreviewVideoSection.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/ReferenceView.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/SegmentDetailsModal.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/TimelineEditor.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/TimingOffsetModal.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/TranscriptionView.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/WordDivider.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/components/SourceSelector.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/components/Word.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/constants.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/styles.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/types.js +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/types.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/utils/localStorage.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/utils/referenceLineCalculator.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/utils/segmentOperations.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/utils/timingUtils.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/components/shared/utils/wordUtils.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/hooks/useManualSync.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/main.tsx +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/theme.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/types/global.d.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/types.js +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/types.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/validation.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/vite-env.d.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/tsconfig.app.json +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/tsconfig.json +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/tsconfig.node.json +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/tsconfig.tsbuildinfo +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/update_version.js +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/vite.config.d.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/vite.config.js +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/vite.config.ts +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/yarn.lock +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/lyrics/base_lyrics_provider.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/lyrics/file_provider.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/lyrics/genius.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/lyrics/spotify.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/lyrics/user_input_provider.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/__init__.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/__init__.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/ass.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/ass_specs.txt +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/config.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/constants.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/event.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/formatters.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/lyrics_line.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/lyrics_screen.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/section_detector.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/section_screen.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/style.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdg.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/__init__.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/cdg.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/composer.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/config.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/images/instrumental.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/images/intro.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/pack.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/render.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/centertexttoplogobottomtext.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/circlein.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/circleout.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/fizzle.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/largecentertexttoplogo.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/rectangle.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/spiral.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/topleftmusicalnotes.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/wipein.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/wipeleft.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/wipeout.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/transitions/wiperight.png +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/utils.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/AvenirNext-Bold.ttf +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/DMSans-VariableFont_opsz,wght.ttf +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/DMSerifDisplay-Regular.ttf +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/Oswald-SemiBold.ttf +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/Zurich_Cn_BT_Bold.ttf +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/arial.ttf +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/georgia.ttf +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/verdana.ttf +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/generator.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/lrc_to_cdg.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/lyrics_file.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/plain_text.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/segment_resizer.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/subtitles.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/video.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/review/__init__.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/storage/__init__.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/storage/dropbox.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/transcribers/audioshake.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/transcribers/base_transcriber.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/transcribers/whisper.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/types.py +0 -0
- {lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/utils/word_utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: lyrics-transcriber
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.55.1
|
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
|
License: MIT
|
6
6
|
Author: Andrew Beveridge
|
Binary file
|
@@ -0,0 +1,25 @@
|
|
1
|
+
"""Frontend module for lyrics transcriber web interface."""
|
2
|
+
|
3
|
+
import os
|
4
|
+
|
5
|
+
# Get the directory containing this file
|
6
|
+
__frontend_dir__ = os.path.dirname(os.path.abspath(__file__))
|
7
|
+
|
8
|
+
def get_frontend_assets_dir():
|
9
|
+
"""Get the path to the frontend assets directory.
|
10
|
+
|
11
|
+
Returns the web_assets directory if it exists (packaged version),
|
12
|
+
otherwise returns the dist directory (development version).
|
13
|
+
"""
|
14
|
+
web_assets_dir = os.path.join(__frontend_dir__, "web_assets")
|
15
|
+
dist_dir = os.path.join(__frontend_dir__, "dist")
|
16
|
+
|
17
|
+
if os.path.exists(web_assets_dir):
|
18
|
+
return web_assets_dir
|
19
|
+
elif os.path.exists(dist_dir):
|
20
|
+
return dist_dir
|
21
|
+
else:
|
22
|
+
raise FileNotFoundError(
|
23
|
+
"Frontend assets not found. Please build the frontend first with: "
|
24
|
+
"./scripts/build_frontend.sh"
|
25
|
+
)
|
@@ -58,7 +58,8 @@ class ReviewServer:
|
|
58
58
|
def _mount_frontend(self) -> None:
|
59
59
|
"""Mount the frontend static files."""
|
60
60
|
current_dir = os.path.dirname(os.path.abspath(__file__))
|
61
|
-
|
61
|
+
from lyrics_transcriber.frontend import get_frontend_assets_dir
|
62
|
+
frontend_dir = get_frontend_assets_dir()
|
62
63
|
|
63
64
|
if not os.path.exists(frontend_dir):
|
64
65
|
raise FileNotFoundError(f"Frontend assets not found at {frontend_dir}")
|
@@ -1,11 +1,17 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "lyrics-transcriber"
|
3
|
-
version = "0.
|
3
|
+
version = "0.55.1"
|
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"
|
7
7
|
readme = "README.md"
|
8
8
|
packages = [{ include = "lyrics_transcriber" }]
|
9
|
+
include = [
|
10
|
+
"lyrics_transcriber/frontend/web_assets/**/*",
|
11
|
+
"lyrics_transcriber/output/fonts/*",
|
12
|
+
"lyrics_transcriber/output/cdgmaker/images/*",
|
13
|
+
"lyrics_transcriber/output/cdgmaker/transitions/*"
|
14
|
+
]
|
9
15
|
homepage = "https://github.com/nomadkaraoke/python-lyrics-transcriber"
|
10
16
|
repository = "https://github.com/nomadkaraoke/python-lyrics-transcriber"
|
11
17
|
documentation = "https://github.com/nomadkaraoke/python-lyrics-transcriber/blob/main/README.md"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/core/controller.py
RENAMED
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/corrector.py
RENAMED
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
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/correction/text_utils.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/.gitignore
RENAMED
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/.yarnrc.yml
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/README.md
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/eslint.config.js
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/index.html
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/public/vite.svg
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/App.tsx
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/api.ts
RENAMED
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
|
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
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/main.tsx
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/theme.ts
RENAMED
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/types.js
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/src/types.ts
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/tsconfig.json
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/vite.config.d.ts
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/vite.config.js
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/vite.config.ts
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/frontend/yarn.lock
RENAMED
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/lyrics/file_provider.py
RENAMED
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/lyrics/spotify.py
RENAMED
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/__init__.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/__init__.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/ass.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/ass_specs.txt
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/config.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/constants.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/event.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/formatters.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/lyrics_line.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/ass/style.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/cdg.py
RENAMED
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/config.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/pack.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/render.py
RENAMED
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
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/cdgmaker/utils.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/arial.ttf
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/georgia.ttf
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/fonts/verdana.ttf
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/generator.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/lrc_to_cdg.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/lyrics_file.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/plain_text.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/segment_resizer.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/output/subtitles.py
RENAMED
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/review/__init__.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/storage/__init__.py
RENAMED
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/storage/dropbox.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/transcribers/whisper.py
RENAMED
File without changes
|
File without changes
|
{lyrics_transcriber-0.54.0 → lyrics_transcriber-0.55.1}/lyrics_transcriber/utils/word_utils.py
RENAMED
File without changes
|