lyrics-transcriber 0.52.1__py3-none-any.whl → 0.54.0__py3-none-any.whl

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.
@@ -2,7 +2,7 @@
2
2
  "name": "lyrics-transcriber-frontend",
3
3
  "private": true,
4
4
  "homepage": "https://nomadkaraoke.github.io/lyrics-transcriber-frontend",
5
- "version": "0.0.0",
5
+ "version": "0.53.0",
6
6
  "type": "module",
7
7
  "scripts": {
8
8
  "dev": "vite",
@@ -3,6 +3,11 @@ import { ThemeProvider } from '@mui/material/styles'
3
3
  import CssBaseline from '@mui/material/CssBaseline'
4
4
  import App from './App'
5
5
  import theme from './theme'
6
+ // Import version from package.json
7
+ import packageJson from '../package.json'
8
+
9
+ // Log the frontend version when the app loads
10
+ console.log(`🎵 Lyrics Transcriber Frontend v${packageJson.version}`)
6
11
 
7
12
  ReactDOM.createRoot(document.getElementById('root')!).render(
8
13
  <ThemeProvider theme={theme}>
@@ -0,0 +1,11 @@
1
+ const fs = require('fs');
2
+ const path = require('path');
3
+
4
+ const packageJsonPath = path.join(__dirname, 'package.json');
5
+ const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'));
6
+
7
+ const newVersion = process.argv[2];
8
+ packageJson.version = newVersion;
9
+
10
+ fs.writeFileSync(packageJsonPath, JSON.stringify(packageJson, null, 2) + '\n');
11
+ console.log(`✅ Updated package.json version to ${newVersion}`);
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lyrics-transcriber
3
- Version: 0.52.1
3
+ Version: 0.54.0
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
@@ -50,8 +50,7 @@ Description-Content-Type: text/markdown
50
50
  ![PyPI - Version](https://img.shields.io/pypi/v/lyrics-transcriber)
51
51
  ![Python Version](https://img.shields.io/badge/python-3.10+-blue)
52
52
  [![Tests](https://github.com/nomadkaraoke/python-lyrics-transcriber/actions/workflows/test-and-publish.yml/badge.svg)](https://github.com/nomadkaraoke/python-lyrics-transcriber/actions/workflows/test-and-publish.yml)
53
- ![Test Coverage](https://codecov.io/gh/nomadkaraoke/lyrics-transcriber/branch/main/graph/badge.svg)
54
-
53
+ [![Coverage](https://codecov.io/gh/nomadkaraoke/python-lyrics-transcriber/graph/badge.svg?token=SMW2TVPVNT)](https://codecov.io/gh/nomadkaraoke/python-lyrics-transcriber)
55
54
 
56
55
  Automatically create synchronised lyrics files in ASS and MidiCo LRC formats with word-level timestamps, using OpenAI Whisper and lyrics from Genius and Spotify, for convenience in use cases such as karaoke video production.
57
56
 
@@ -67,7 +66,7 @@ Automatically create synchronised lyrics files in ASS and MidiCo LRC formats wit
67
66
 
68
67
  ### Prerequisites
69
68
 
70
- - Python 3.9 or higher
69
+ - Python 3.10 or higher
71
70
  - [Optional] Genius API token if you want to fetch lyrics from Genius
72
71
  - [Optional] Spotify cookie value if you want to fetch lyrics from Spotify
73
72
  - [Optional] OpenAI API token if you want to use LLM correction of the transcribed lyrics
@@ -22,17 +22,13 @@ lyrics_transcriber/correction/handlers/word_operations.py,sha256=410xhyO9tiqezV5
22
22
  lyrics_transcriber/correction/phrase_analyzer.py,sha256=dtO_2LjxnPdHJM7De40mYIdHCkozwhizVVQp5XGO7x0,16962
23
23
  lyrics_transcriber/correction/text_utils.py,sha256=7QHK6-PY7Rx1G1E31sWiLBw00mHorRDo-M44KMHFaZs,833
24
24
  lyrics_transcriber/frontend/.gitignore,sha256=lgGIPiVpFVUNSZl9oNQLelLOWUzpF7sikLW8xmsrrqI,248
25
- lyrics_transcriber/frontend/.yarn/install-state.gz,sha256=kcgQ-S9HvdNHexkXQVt18LWUpqtP2mdyRfjJV1htFAc,345895
25
+ lyrics_transcriber/frontend/.yarn/install-state.gz,sha256=-Ec2At35pQvvj249zoXUsXwfOs6YOR3Zw7xQI5wcxlk,345895
26
26
  lyrics_transcriber/frontend/.yarn/releases/yarn-4.7.0.cjs,sha256=KTYy2KCV2OpHhussV5jIPDdUSr7RftMRhqPsRUmgfAY,2765465
27
27
  lyrics_transcriber/frontend/.yarnrc.yml,sha256=0hZQ1OTcPqTUNBqQeme4VFkIzrsabHNzLtc_M-wSgIM,66
28
28
  lyrics_transcriber/frontend/README.md,sha256=-D6CAfKTT7Y0V3EjlZ2fMy7fyctFQ4x2TJ9vx6xtccM,1607
29
- lyrics_transcriber/frontend/dist/assets/index-C5ftSgQo.js,sha256=7br7uK67P5qBGO0ujo_v0Mq7iH6UMU9uJxGTkpWMBIE,1257815
30
- lyrics_transcriber/frontend/dist/assets/index-C5ftSgQo.js.map,sha256=X28amKQHtLDho5eEnnh3X-NVHcuKFw7XZEOJh_9jIsg,2678200
31
- lyrics_transcriber/frontend/dist/index.html,sha256=TCtZWtuUvZeiXgpC1MZjUtgxJS_ol_7zvMXEp_4c1Bs,400
32
- lyrics_transcriber/frontend/dist/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
33
29
  lyrics_transcriber/frontend/eslint.config.js,sha256=3ADH23ANA4NNBKFy6nCVk65e8bx1DrVd_FIaYNnhuqA,734
34
30
  lyrics_transcriber/frontend/index.html,sha256=KfqJVONzpUyPIwV73nZRiCWlwLnFWeB3z0vzxDPNudU,376
35
- lyrics_transcriber/frontend/package.json,sha256=Jhcrbko3OfV2YYc0JCkluoEFMTXq8EEqYm5gcI7O8SU,1181
31
+ lyrics_transcriber/frontend/package.json,sha256=x2TxRoCpfiKEBGbUfm11z4pLF0QTP5o867KTj-1RNUg,1182
36
32
  lyrics_transcriber/frontend/public/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
37
33
  lyrics_transcriber/frontend/src/App.tsx,sha256=f1-dp-MU8vap18eAXacwVDO5P4eE2iG9zSvjau-7NJs,6533
38
34
  lyrics_transcriber/frontend/src/api.ts,sha256=UgqPc1jo8DEVgxh3_9Lyf9GBsHYpqMAqsPEE5BzTV4w,6640
@@ -71,7 +67,7 @@ lyrics_transcriber/frontend/src/components/shared/utils/segmentOperations.ts,sha
71
67
  lyrics_transcriber/frontend/src/components/shared/utils/timingUtils.ts,sha256=s3xdwGPg6ltZEcQ4AzgpznAR-fLhCTCYW7pfXaD60JY,4597
72
68
  lyrics_transcriber/frontend/src/components/shared/utils/wordUtils.ts,sha256=bZbsvEgY3JoI15l4SdB51tHE33OkUxDH-WSG8doLcCQ,721
73
69
  lyrics_transcriber/frontend/src/hooks/useManualSync.ts,sha256=fTAtHeO1Ca6o0n01DtietCHNgBFfvFEsXtQQO2orRWI,10775
74
- lyrics_transcriber/frontend/src/main.tsx,sha256=UXPXUc2HeDuGtW5GVzP312RjCo3TdnpBal7SWild-k4,345
70
+ lyrics_transcriber/frontend/src/main.tsx,sha256=qNDmjgzD2Dd4d9J42o1z0JcKBElsMWHpFIgEvI8kNi8,543
75
71
  lyrics_transcriber/frontend/src/theme.ts,sha256=9F2xyLct_gJmvLEZEhrYdKIahUsBzi5kgnydSWJHphE,3864
76
72
  lyrics_transcriber/frontend/src/types/global.d.ts,sha256=NvltPF-n4_1oRLfihD3oHXbdT7txMC8B6fhCgvNY-jk,191
77
73
  lyrics_transcriber/frontend/src/types.js,sha256=1DqoH1vIn6o1ng-XyBS6JRVVkf8Hj7ub_UD4x8loMjA,77
@@ -82,6 +78,7 @@ lyrics_transcriber/frontend/tsconfig.app.json,sha256=7aUBVcaBqEtmtfQXsbwsgBxSUng
82
78
  lyrics_transcriber/frontend/tsconfig.json,sha256=AOS5v1AsNPL3wGc8bt58Ybh8HHpbYrlK91q0KIzaSgs,627
83
79
  lyrics_transcriber/frontend/tsconfig.node.json,sha256=oMBhK5xufBrVE7SkbADRxA3pxm8_L9m5YwtCOZSafsc,536
84
80
  lyrics_transcriber/frontend/tsconfig.tsbuildinfo,sha256=n9Px5IUHD0gpP4syANUDMHsnuqUQnqsMXtWXGYPc6yU,1593
81
+ lyrics_transcriber/frontend/update_version.js,sha256=PxkqCnsucXnXiIqutsanVcx00Gq4k7pgCYj_uXCa4qw,411
85
82
  lyrics_transcriber/frontend/vite.config.d.ts,sha256=S5bdGf0pSdKM6A6RNBKwAm3EIeW_bDHYfHtesRtXU7Q,76
86
83
  lyrics_transcriber/frontend/vite.config.js,sha256=P4GuPgRZzwEWPQZpyujUe7eA3mjPoFAe2CgE5sQAXg8,232
87
84
  lyrics_transcriber/frontend/vite.config.ts,sha256=8FdW0dN8zDFqfhQSxX5h7sIu72X2piLYlp_TZYRQvBQ,216
@@ -150,8 +147,8 @@ lyrics_transcriber/transcribers/base_transcriber.py,sha256=T3m4ZCwZ9Bpv6Jvb2hNcn
150
147
  lyrics_transcriber/transcribers/whisper.py,sha256=YcCB1ic9H6zL1GS0jD0emu8-qlcH0QVEjjjYB4aLlIQ,13260
151
148
  lyrics_transcriber/types.py,sha256=_YfZuU2KvZyDaYQgx5CGkbOxfR5ffdTOAx6Fk58DC14,27283
152
149
  lyrics_transcriber/utils/word_utils.py,sha256=-cMGpj9UV4F6IsoDKAV2i1aiqSO8eI91HMAm_igtVMk,958
153
- lyrics_transcriber-0.52.1.dist-info/LICENSE,sha256=81R_4XwMZDODHD7JcZeUR8IiCU8AD7Ajl6bmwR9tYDk,1074
154
- lyrics_transcriber-0.52.1.dist-info/METADATA,sha256=MPYPP8PSObB0sUU72tpCHR3_7sWoytFJg2N2xpOIJvM,6566
155
- lyrics_transcriber-0.52.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
156
- lyrics_transcriber-0.52.1.dist-info/entry_points.txt,sha256=kcp-bSFkCACAEA0t166Kek0HpaJUXRo5SlF5tVrqNBU,216
157
- lyrics_transcriber-0.52.1.dist-info/RECORD,,
150
+ lyrics_transcriber-0.54.0.dist-info/LICENSE,sha256=81R_4XwMZDODHD7JcZeUR8IiCU8AD7Ajl6bmwR9tYDk,1074
151
+ lyrics_transcriber-0.54.0.dist-info/METADATA,sha256=ylzMwJmQ2R_VnTkZJikvxJugjW9Jg6Nd8Ljpwx7FxVA,6637
152
+ lyrics_transcriber-0.54.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
153
+ lyrics_transcriber-0.54.0.dist-info/entry_points.txt,sha256=kcp-bSFkCACAEA0t166Kek0HpaJUXRo5SlF5tVrqNBU,216
154
+ lyrics_transcriber-0.54.0.dist-info/RECORD,,