lyrics-transcriber 0.34.1__tar.gz → 0.34.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.34.1 → lyrics_transcriber-0.34.3}/PKG-INFO +1 -1
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/.gitignore +23 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/README.md +50 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/dist/assets/index-DqFgiUni.js +245 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/dist/index.html +13 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/dist/vite.svg +1 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/eslint.config.js +28 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/index.html +13 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/package-lock.json +4260 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/package.json +37 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/public/vite.svg +1 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/App.tsx +192 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/api.ts +59 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/components/CorrectionMetrics.tsx +155 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/components/DebugPanel.tsx +311 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/components/DetailsModal.tsx +297 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/components/FileUpload.tsx +77 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +450 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/components/ReferenceView.tsx +287 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/components/TranscriptionView.tsx +157 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/components/constants.ts +19 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/components/styles.ts +13 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/main.tsx +6 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/types.ts +158 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/src/vite-env.d.ts +1 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/tsconfig.app.json +26 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/tsconfig.json +25 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/tsconfig.node.json +23 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/tsconfig.tsbuildinfo +1 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/vite.config.d.ts +2 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/vite.config.js +6 -0
- lyrics_transcriber-0.34.3/lyrics_transcriber/frontend/vite.config.ts +7 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/review/server.py +16 -27
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/pyproject.toml +4 -1
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/LICENSE +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/README.md +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/__init__.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/cli/__init__.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/cli/cli_main.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/core/__init__.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/core/config.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/core/controller.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/anchor_sequence.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/corrector.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/__init__.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/base.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/extend_anchor.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/levenshtein.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/no_space_punct_match.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/relaxed_word_count_match.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/repeat.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/sound_alike.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/syllables_match.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/word_count_match.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/handlers/word_operations.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/phrase_analyzer.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/correction/text_utils.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/lyrics/base_lyrics_provider.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/lyrics/genius.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/lyrics/spotify.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/__init__.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/__init__.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/ass.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/ass_specs.txt +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/config.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/constants.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/event.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/formatters.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/lyrics_line.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/lyrics_screen.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/section_detector.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/section_screen.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/ass/style.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdg.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/__init__.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/cdg.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/composer.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/config.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/images/instrumental.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/images/intro.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/pack.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/render.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/centertexttoplogobottomtext.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/circlein.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/circleout.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/fizzle.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/largecentertexttoplogo.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/rectangle.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/spiral.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/topleftmusicalnotes.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/wipein.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/wipeleft.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/wipeout.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/transitions/wiperight.png +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/cdgmaker/utils.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/fonts/AvenirNext-Bold.ttf +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/fonts/DMSans-VariableFont_opsz,wght.ttf +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/fonts/DMSerifDisplay-Regular.ttf +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/fonts/Oswald-SemiBold.ttf +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/fonts/Zurich_Cn_BT_Bold.ttf +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/fonts/arial.ttf +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/fonts/georgia.ttf +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/fonts/verdana.ttf +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/generator.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/lyrics_file.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/plain_text.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/segment_resizer.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/subtitles.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/output/video.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/review/__init__.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/storage/__init__.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/storage/dropbox.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/transcribers/audioshake.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/transcribers/base_transcriber.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/transcribers/whisper.py +0 -0
- {lyrics_transcriber-0.34.1 → lyrics_transcriber-0.34.3}/lyrics_transcriber/types.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: lyrics-transcriber
|
3
|
-
Version: 0.34.
|
3
|
+
Version: 0.34.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
|
License: MIT
|
6
6
|
Author: Andrew Beveridge
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# Logs
|
2
|
+
logs
|
3
|
+
*.log
|
4
|
+
npm-debug.log*
|
5
|
+
yarn-debug.log*
|
6
|
+
yarn-error.log*
|
7
|
+
pnpm-debug.log*
|
8
|
+
lerna-debug.log*
|
9
|
+
|
10
|
+
node_modules
|
11
|
+
dist-ssr
|
12
|
+
*.local
|
13
|
+
|
14
|
+
# Editor directories and files
|
15
|
+
.vscode/*
|
16
|
+
!.vscode/extensions.json
|
17
|
+
.idea
|
18
|
+
.DS_Store
|
19
|
+
*.suo
|
20
|
+
*.ntvs*
|
21
|
+
*.njsproj
|
22
|
+
*.sln
|
23
|
+
*.sw?
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# React + TypeScript + Vite
|
2
|
+
|
3
|
+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
4
|
+
|
5
|
+
Currently, two official plugins are available:
|
6
|
+
|
7
|
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
8
|
+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
9
|
+
|
10
|
+
## Expanding the ESLint configuration
|
11
|
+
|
12
|
+
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
|
13
|
+
|
14
|
+
- Configure the top-level `parserOptions` property like this:
|
15
|
+
|
16
|
+
```js
|
17
|
+
export default tseslint.config({
|
18
|
+
languageOptions: {
|
19
|
+
// other options...
|
20
|
+
parserOptions: {
|
21
|
+
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
22
|
+
tsconfigRootDir: import.meta.dirname,
|
23
|
+
},
|
24
|
+
},
|
25
|
+
})
|
26
|
+
```
|
27
|
+
|
28
|
+
- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
|
29
|
+
- Optionally add `...tseslint.configs.stylisticTypeChecked`
|
30
|
+
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
|
31
|
+
|
32
|
+
```js
|
33
|
+
// eslint.config.js
|
34
|
+
import react from 'eslint-plugin-react'
|
35
|
+
|
36
|
+
export default tseslint.config({
|
37
|
+
// Set the react version
|
38
|
+
settings: { react: { version: '18.3' } },
|
39
|
+
plugins: {
|
40
|
+
// Add the react plugin
|
41
|
+
react,
|
42
|
+
},
|
43
|
+
rules: {
|
44
|
+
// other rules...
|
45
|
+
// Enable its recommended rules
|
46
|
+
...react.configs.recommended.rules,
|
47
|
+
...react.configs['jsx-runtime'].rules,
|
48
|
+
},
|
49
|
+
})
|
50
|
+
```
|