lyrics-transcriber 0.36.1__py3-none-any.whl → 0.39.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.
Files changed (43) hide show
  1. lyrics_transcriber/core/controller.py +22 -2
  2. lyrics_transcriber/correction/corrector.py +8 -8
  3. lyrics_transcriber/correction/handlers/base.py +4 -0
  4. lyrics_transcriber/correction/handlers/extend_anchor.py +22 -2
  5. lyrics_transcriber/correction/handlers/no_space_punct_match.py +21 -10
  6. lyrics_transcriber/correction/handlers/relaxed_word_count_match.py +21 -11
  7. lyrics_transcriber/correction/handlers/syllables_match.py +4 -4
  8. lyrics_transcriber/correction/handlers/word_count_match.py +19 -10
  9. lyrics_transcriber/correction/handlers/word_operations.py +8 -2
  10. lyrics_transcriber/frontend/dist/assets/index-DKnNJHRK.js +26696 -0
  11. lyrics_transcriber/frontend/dist/assets/index-DKnNJHRK.js.map +1 -0
  12. lyrics_transcriber/frontend/dist/index.html +1 -1
  13. lyrics_transcriber/frontend/package.json +3 -2
  14. lyrics_transcriber/frontend/src/components/CorrectionMetrics.tsx +1 -2
  15. lyrics_transcriber/frontend/src/components/DetailsModal.tsx +76 -70
  16. lyrics_transcriber/frontend/src/components/EditModal.tsx +11 -2
  17. lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +154 -128
  18. lyrics_transcriber/frontend/src/components/ReferenceView.tsx +42 -4
  19. lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx +59 -15
  20. lyrics_transcriber/frontend/src/components/TimelineEditor.tsx +71 -16
  21. lyrics_transcriber/frontend/src/components/TranscriptionView.tsx +16 -19
  22. lyrics_transcriber/frontend/src/components/WordEditControls.tsx +3 -3
  23. lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx +72 -57
  24. lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts +113 -41
  25. lyrics_transcriber/frontend/src/components/shared/types.ts +6 -3
  26. lyrics_transcriber/frontend/src/components/shared/utils/initializeDataWithIds.tsx +202 -0
  27. lyrics_transcriber/frontend/src/components/shared/utils/referenceLineCalculator.ts +23 -24
  28. lyrics_transcriber/frontend/src/types.ts +25 -15
  29. lyrics_transcriber/frontend/tsconfig.tsbuildinfo +1 -1
  30. lyrics_transcriber/frontend/vite.config.js +4 -0
  31. lyrics_transcriber/frontend/vite.config.ts +4 -0
  32. lyrics_transcriber/lyrics/genius.py +41 -12
  33. lyrics_transcriber/output/cdg.py +33 -6
  34. lyrics_transcriber/output/cdgmaker/composer.py +839 -534
  35. lyrics_transcriber/output/video.py +17 -7
  36. lyrics_transcriber/review/server.py +22 -8
  37. {lyrics_transcriber-0.36.1.dist-info → lyrics_transcriber-0.39.0.dist-info}/METADATA +3 -2
  38. {lyrics_transcriber-0.36.1.dist-info → lyrics_transcriber-0.39.0.dist-info}/RECORD +41 -40
  39. {lyrics_transcriber-0.36.1.dist-info → lyrics_transcriber-0.39.0.dist-info}/entry_points.txt +1 -0
  40. lyrics_transcriber/frontend/dist/assets/index-ztlAYPYT.js +0 -181
  41. lyrics_transcriber/frontend/src/components/shared/utils/newlineCalculator.ts +0 -37
  42. {lyrics_transcriber-0.36.1.dist-info → lyrics_transcriber-0.39.0.dist-info}/LICENSE +0 -0
  43. {lyrics_transcriber-0.36.1.dist-info → lyrics_transcriber-0.39.0.dist-info}/WHEEL +0 -0
@@ -198,13 +198,23 @@ class VideoGenerator:
198
198
 
199
199
  def _get_video_codec(self) -> str:
200
200
  """Determine the best available video codec."""
201
- try:
202
- ffmpeg_codes = subprocess.getoutput("ffmpeg -codecs")
203
- if "h264_videotoolbox" in ffmpeg_codes:
204
- self.logger.info("Using hardware accelerated h264_videotoolbox")
205
- return "h264_videotoolbox"
206
- except Exception as e:
207
- self.logger.warning(f"Error checking for hardware acceleration: {e}")
201
+ # try:
202
+ # ffmpeg_codes = subprocess.getoutput("ffmpeg -codecs")
203
+ # if "h264_videotoolbox" in ffmpeg_codes:
204
+ # self.logger.info("Using hardware accelerated h264_videotoolbox")
205
+ # return "h264_videotoolbox"
206
+ # except Exception as e:
207
+ # self.logger.warning(f"Error checking for hardware acceleration: {e}")
208
+
209
+ # 2025-02-03 00:33:47.948 - INFO - video - Using hardware accelerated h264_videotoolbox
210
+ # 2025-02-03 00:35:56.761 - INFO - video - Video generated: ./Duran Duran - The Reflex/lyrics/Duran Duran - The Reflex (With Vocals).mkv
211
+ # Duration: 2:09
212
+
213
+ # 2025-02-03 00:41:20.429 - INFO - video - Generating video with lyrics overlay
214
+ # 2025-02-03 00:42:09.958 - INFO - video - Video generated: ./Duran Duran - The Reflex/lyrics/Duran Duran - The Reflex (With Vocals).mkv
215
+ # Duration: 49 seconds
216
+
217
+ # Conclusion: libx264 is faster than h264_videotoolbox
208
218
 
209
219
  return "libx264"
210
220
 
@@ -11,6 +11,7 @@ import urllib.parse
11
11
  from fastapi.staticfiles import StaticFiles
12
12
  from fastapi.responses import FileResponse
13
13
  from pathlib import Path
14
+ import socket
14
15
 
15
16
  logger = logging.getLogger(__name__)
16
17
 
@@ -19,7 +20,8 @@ app = FastAPI()
19
20
  # Configure CORS for development
20
21
  app.add_middleware(
21
22
  CORSMiddleware,
22
- allow_origins=["http://localhost:5173"], # Vite's default dev server port
23
+ allow_origins=[f"http://localhost:{port}" for port in range(3000, 5174)] # Common development ports
24
+ + [f"http://127.0.0.1:{port}" for port in range(3000, 5174)],
23
25
  allow_credentials=True,
24
26
  allow_methods=["*"],
25
27
  allow_headers=["*"],
@@ -119,11 +121,10 @@ def start_review_server(correction_result: CorrectionResult) -> CorrectionResult
119
121
  import signal
120
122
  import sys
121
123
 
122
- global current_review, review_completed, audio_filepath # Add audio_filepath to globals
124
+ global current_review, review_completed, audio_filepath
123
125
  current_review = correction_result
124
126
  review_completed = False
125
127
 
126
- # Get the audio filepath from the correction result's metadata if available
127
128
  audio_filepath = correction_result.metadata.get("audio_filepath") if correction_result.metadata else None
128
129
 
129
130
  logger.info("Starting review server...")
@@ -132,8 +133,21 @@ def start_review_server(correction_result: CorrectionResult) -> CorrectionResult
132
133
  start_vite_server()
133
134
  logger.info("Frontend assets mounted")
134
135
 
135
- # Create a custom server config
136
- config = uvicorn.Config(app, host="127.0.0.1", port=8000, log_level="info")
136
+ # Wait for default port (8000) to become available
137
+ DEFAULT_PORT = 8000
138
+ while True:
139
+ try:
140
+ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
141
+ s.bind(("127.0.0.1", DEFAULT_PORT))
142
+ break
143
+ except OSError:
144
+ logger.info(f"Port {DEFAULT_PORT} is occupied, waiting 10 seconds before retrying...")
145
+ time.sleep(10)
146
+
147
+ logger.info(f"Port {DEFAULT_PORT} is available, starting server")
148
+
149
+ # Create server config with default port
150
+ config = uvicorn.Config(app, host="127.0.0.1", port=DEFAULT_PORT, log_level="info")
137
151
  server = uvicorn.Server(config)
138
152
 
139
153
  # Start FastAPI server in a separate thread
@@ -141,10 +155,10 @@ def start_review_server(correction_result: CorrectionResult) -> CorrectionResult
141
155
  server_thread.start()
142
156
  logger.info("Server thread started")
143
157
 
144
- # Open browser - Updated to use port 8000 instead of 5173
145
- base_api_url = "http://localhost:8000/api"
158
+ # Open browser with the correct port
159
+ base_api_url = f"http://localhost:{DEFAULT_PORT}/api"
146
160
  encoded_api_url = urllib.parse.quote(base_api_url, safe="")
147
- webbrowser.open(f"http://localhost:8000?baseApiUrl={encoded_api_url}")
161
+ webbrowser.open(f"http://localhost:{DEFAULT_PORT}?baseApiUrl={encoded_api_url}")
148
162
  logger.info("Opened browser for review")
149
163
 
150
164
  # Wait for review to complete
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lyrics-transcriber
3
- Version: 0.36.1
3
+ Version: 0.39.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
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Requires-Dist: dropbox (>=12)
16
16
  Requires-Dist: fastapi (>=0.115)
17
+ Requires-Dist: fonttools (>=4.55)
17
18
  Requires-Dist: karaoke-lyrics-processor (>=0.4)
18
19
  Requires-Dist: lyricsgenius (>=3)
19
20
  Requires-Dist: metaphone (>=0.6)
@@ -26,7 +27,7 @@ Requires-Dist: spacy (>=3.8)
26
27
  Requires-Dist: spacy-syllables (>=3)
27
28
  Requires-Dist: syllables (>=1)
28
29
  Requires-Dist: syrics (>=0)
29
- Requires-Dist: torch (>=2)
30
+ Requires-Dist: torch (<2.5)
30
31
  Requires-Dist: tqdm (>=4.67)
31
32
  Requires-Dist: transformers (>=4.47)
32
33
  Requires-Dist: uvicorn (>=0.34)
@@ -3,69 +3,70 @@ lyrics_transcriber/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
3
3
  lyrics_transcriber/cli/cli_main.py,sha256=I4YXULnIA_H9ESmXdEspOcidY2n24KdUkOTDZb7r680,9967
4
4
  lyrics_transcriber/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  lyrics_transcriber/core/config.py,sha256=yR0hG4BFEgyzd1hdb27t5B2RI7eYdAvQ9w9RUnoIpuY,1197
6
- lyrics_transcriber/core/controller.py,sha256=ouMtp8oiXPzEp10Z_24frlb6CbUaUZWyWZacmQ36U0s,18607
6
+ lyrics_transcriber/core/controller.py,sha256=YKz-_nV-h2grXfQrNafDiK35uNitiLVA-z9BmMOkq-w,19540
7
7
  lyrics_transcriber/correction/anchor_sequence.py,sha256=YpKyY24Va5i4JgzP9ssqlOIkaYu060KaldiehbfgTdk,22200
8
- lyrics_transcriber/correction/corrector.py,sha256=RVANu99cX-fmgr70C5aKZKjNOnu8o8NyJVqQ1wRGUqo,13342
8
+ lyrics_transcriber/correction/corrector.py,sha256=r6AmdVl_JbOIbNgNk5aDHy-5vdw5-cayspUGht_844A,13494
9
9
  lyrics_transcriber/correction/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- lyrics_transcriber/correction/handlers/base.py,sha256=Vanmp6ykP5cdejuJ5ttzjP0Wl4JgKBL-mHbo9EFaeVc,1009
11
- lyrics_transcriber/correction/handlers/extend_anchor.py,sha256=9rBrZPmc4grMSnCL2ilkcBsWHc05s6RBL9GDyNAplJk,3821
10
+ lyrics_transcriber/correction/handlers/base.py,sha256=XnS0qM7-HQBoKJoVMdwF5YsW76yuxs3sZ1n45i_XN_s,1150
11
+ lyrics_transcriber/correction/handlers/extend_anchor.py,sha256=nLxV34bBYTuRv8dMsEtckxh3HY2Znjt02DMR2YKqVf4,4941
12
12
  lyrics_transcriber/correction/handlers/levenshtein.py,sha256=pe62eyDE3XxLC219rvtvvfd_lna1q0SuiGcYBYX-nwM,6425
13
- lyrics_transcriber/correction/handlers/no_space_punct_match.py,sha256=ri4QEdkYssUC3q0SMGiToYnw4MboRp5i3WGOh9zj3Zw,4573
14
- lyrics_transcriber/correction/handlers/relaxed_word_count_match.py,sha256=Y_4S8orGx1LQzlr2yCrGYkvtVLzjD31urtW9tkbwado,2474
13
+ lyrics_transcriber/correction/handlers/no_space_punct_match.py,sha256=d20Alv-8f9vPcqMpSS4d6Ixwc9gSlarWYvbLrGKK2u0,5318
14
+ lyrics_transcriber/correction/handlers/relaxed_word_count_match.py,sha256=TeE7ufQQaMj1vA4UehQY5axr7TuujrV0n4Mw0DUTSBg,3040
15
15
  lyrics_transcriber/correction/handlers/repeat.py,sha256=jeUwpgU3no1Stk7bOHweDfIOxM2xsykbttdnsD-e_Rg,3682
16
16
  lyrics_transcriber/correction/handlers/sound_alike.py,sha256=mAmnpRpO29rHaP96V-U3QTS1aOM32IV2YUYgS0y9ibo,10635
17
- lyrics_transcriber/correction/handlers/syllables_match.py,sha256=wB42wDfsx_3z2kcciuUy9Rs45NCPSTIQGHLP8DV0TnE,9129
18
- lyrics_transcriber/correction/handlers/word_count_match.py,sha256=zbyZ01VE_6azaFpi8rS0Ato7c_VBxM2KV83VnDH5t3c,2522
19
- lyrics_transcriber/correction/handlers/word_operations.py,sha256=2COTaJsEwpSWyXHXmGgjfcf2x7tbAnsQ0dIW0qyHYK4,5141
17
+ lyrics_transcriber/correction/handlers/syllables_match.py,sha256=ADjahMG8fzdbQTVFovgzoYCM5Zww-xzshBMfwoYyoOg,9189
18
+ lyrics_transcriber/correction/handlers/word_count_match.py,sha256=cWxjTrpyM_lhaPO7fss0TR6Lq6PBx2-LR1OTj9w1woQ,3035
19
+ lyrics_transcriber/correction/handlers/word_operations.py,sha256=m88_exkHwM56G6_gGA86DI-WZYWramko_WOKmE9iHtA,5418
20
20
  lyrics_transcriber/correction/phrase_analyzer.py,sha256=dtO_2LjxnPdHJM7De40mYIdHCkozwhizVVQp5XGO7x0,16962
21
21
  lyrics_transcriber/correction/text_utils.py,sha256=VkOqgZHa9wEqLJdVNi4-KLFojQ6d4lWOGl_Y_vknenU,808
22
22
  lyrics_transcriber/frontend/.gitignore,sha256=lgGIPiVpFVUNSZl9oNQLelLOWUzpF7sikLW8xmsrrqI,248
23
23
  lyrics_transcriber/frontend/README.md,sha256=-D6CAfKTT7Y0V3EjlZ2fMy7fyctFQ4x2TJ9vx6xtccM,1607
24
- lyrics_transcriber/frontend/dist/assets/index-ztlAYPYT.js,sha256=Gmw7wWwQyyM2T48AHKbiNfpo9EmrFYKzQP1XpbkXR6w,426233
25
- lyrics_transcriber/frontend/dist/index.html,sha256=KMcJA7Cjy6SF5mE7yFk1MxtMoAp7a0aW2CesyMzx_0E,400
24
+ lyrics_transcriber/frontend/dist/assets/index-DKnNJHRK.js,sha256=0nJwPd7pimreOW85jq3Hzu0-sMar4-dCWld8_FJ9XVM,850894
25
+ lyrics_transcriber/frontend/dist/assets/index-DKnNJHRK.js.map,sha256=3MGPours5Su6ARfVKMoBJBJFPy7KVtHd37Y8BJu9znI,1782840
26
+ lyrics_transcriber/frontend/dist/index.html,sha256=QylskPwY1vkA9i8znibWFwyDKtYHdyDeYtm2NydJjsU,400
26
27
  lyrics_transcriber/frontend/dist/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
27
28
  lyrics_transcriber/frontend/eslint.config.js,sha256=3ADH23ANA4NNBKFy6nCVk65e8bx1DrVd_FIaYNnhuqA,734
28
29
  lyrics_transcriber/frontend/index.html,sha256=KfqJVONzpUyPIwV73nZRiCWlwLnFWeB3z0vzxDPNudU,376
29
30
  lyrics_transcriber/frontend/package-lock.json,sha256=-VEaxgVZhB6rbaxiZPy3_qGsMuVlSYxZZg-K3mvhS4A,149189
30
- lyrics_transcriber/frontend/package.json,sha256=7WBOIcjE3T8bg9GpJWziPYyhTe724AFnHJOtJi-XCpY,1006
31
+ lyrics_transcriber/frontend/package.json,sha256=RfsM9t3-ySO3V_Qijv6yqFywwOxDNyaIlwAB_uP2bV4,1072
31
32
  lyrics_transcriber/frontend/public/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
32
33
  lyrics_transcriber/frontend/src/App.tsx,sha256=yUsB9SZvOar0PKBMzmgfbJHv6fJW2mXdBExUZYgSaWY,6035
33
34
  lyrics_transcriber/frontend/src/api.ts,sha256=ORzQqlEKkFYrc78qFbOCNsSP6zW_vN2PFT_IiEwiiao,2089
34
35
  lyrics_transcriber/frontend/src/components/AudioPlayer.tsx,sha256=FbrN9WHLar_Sih977icyNcYW0AQF23ZBxj7vZZfs9io,4770
35
- lyrics_transcriber/frontend/src/components/CorrectionMetrics.tsx,sha256=TDB7eBcnAEAeJE-EaHHNIsffsappXK8eEd5RgZ2zNwE,5798
36
- lyrics_transcriber/frontend/src/components/DetailsModal.tsx,sha256=v_AuIWqWbgnoFUj3gErPB6-0cOXQG5mcm64oNRPL_ao,9087
37
- lyrics_transcriber/frontend/src/components/EditModal.tsx,sha256=avdnrfZ2zCmMxbdTEyr_-_g9lrVRdFhJg6zJ-ixTYEs,14874
36
+ lyrics_transcriber/frontend/src/components/CorrectionMetrics.tsx,sha256=mKCvGuEWXOXw24djUqZlq4dfhFal7tpA6BQX9QzZ-OI,5730
37
+ lyrics_transcriber/frontend/src/components/DetailsModal.tsx,sha256=kE0p8NFQCWgQdURAzErK_3raUGfVE6x4xPuzVAf0trE,10274
38
+ lyrics_transcriber/frontend/src/components/EditModal.tsx,sha256=gexaVPA5OIm2JLcoOifn0u1bvg2bi7sZV17Yv0L8_wQ,15235
38
39
  lyrics_transcriber/frontend/src/components/FileUpload.tsx,sha256=Q_Y2YvlVGJvucdoDBbbI2pzymycWAprrc7vtSEGuIHs,2375
39
- lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx,sha256=_MAPCC5t5LGEzLB9lzto2XpFWSFZbnwr2hiiUoi-ZnQ,19126
40
+ lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx,sha256=oLm_N3cHO1BxaXxQVAHxZKzweHhD3x-d0QrZq3JJ8_A,20408
40
41
  lyrics_transcriber/frontend/src/components/ModeSelector.tsx,sha256=bHtjmj5DQx2CwkdL5A4fgLP3XEifu-QecPsMZVdMTmU,1422
41
- lyrics_transcriber/frontend/src/components/ReferenceView.tsx,sha256=R6LmY1JEL-oHjS9HuIqDIyI_HruhtFUp4fGylJsSGqU,2183
42
- lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx,sha256=LokjuN0ukt6ao_ClWX3PCeQlV19V2hvEAWF0SPHzG3M,8974
42
+ lyrics_transcriber/frontend/src/components/ReferenceView.tsx,sha256=_3vXwFIgRymrQyIMuEwOUumakvPMKKh80nnl43TzF4U,3597
43
+ lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx,sha256=FfS-kIpYm70nvF40LOHoAHtIANMZMy1LSHGWgBE1ZKw,10669
43
44
  lyrics_transcriber/frontend/src/components/SegmentDetailsModal.tsx,sha256=6ME02FkFwCgDAxW49yW260N4vbr80eAJ332Ex811GOo,1643
44
- lyrics_transcriber/frontend/src/components/TimelineEditor.tsx,sha256=FABlfssDFKubdFmeEAv4VbvxnxugdlG8jswAUXOqfRQ,11025
45
- lyrics_transcriber/frontend/src/components/TranscriptionView.tsx,sha256=Zw909OCLJbUCpEOD5N2ts0nLz1oC9nXJhizdGmw8qHk,5486
46
- lyrics_transcriber/frontend/src/components/WordEditControls.tsx,sha256=5mMztxoYhHwn6cUhLBcBis7fA21h03tlt-U3-9yytO0,3369
47
- lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx,sha256=I0b58Ap8hMFNph7XQjqK87rxZzsbs2I9fEoP211jFBw,10973
45
+ lyrics_transcriber/frontend/src/components/TimelineEditor.tsx,sha256=cZ2Z0BF1qHY2Yb46bdzdjiadmpqjGyrUBIyMu7CXylk,12929
46
+ lyrics_transcriber/frontend/src/components/TranscriptionView.tsx,sha256=1JgD5pBHj4g0lxc7TnjUypMBos7mwjzAxOE_IT_S_3E,5291
47
+ lyrics_transcriber/frontend/src/components/WordEditControls.tsx,sha256=Wegt2na8Ko3yqKWNgqLXW9sbcIwP7g-91T_C4m-4320,3363
48
+ lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx,sha256=PYje_m2pfaPs-afQWiLS7eoMWh6GOMCR4OQ_KOAVyCw,11021
48
49
  lyrics_transcriber/frontend/src/components/shared/components/SourceSelector.tsx,sha256=i6qIEx7mv6lE111oSeonarlOvb97Z1cthvqq7xM2Lig,853
49
50
  lyrics_transcriber/frontend/src/components/shared/components/Word.tsx,sha256=xed50sPTI4edKp5fwz9vLyBqTNOU4MbhTe-NEApS3JI,1324
50
51
  lyrics_transcriber/frontend/src/components/shared/constants.ts,sha256=25q1qjCwzV-hR72wSb_rJSe4dVuQ0l-piLMoZSpynGQ,488
51
- lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts,sha256=OYv_poh0sTHRS8v0rtLScwpMXKpXnpOAq2BT-YN7wqY,5440
52
+ lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts,sha256=3CCs09ksim0WuNnoTJGxHm46ucbd8DTm7JRnAzQBx3w,7740
52
53
  lyrics_transcriber/frontend/src/components/shared/styles.ts,sha256=J1jCSuRqpk1mOFYAqJudhxeozH-q1bi-dsOibLukBJU,411
53
- lyrics_transcriber/frontend/src/components/shared/types.ts,sha256=jyttCqO6_m5B2kO6cTHvU1qcxeidtmBhAM9EEdmWtKg,2886
54
- lyrics_transcriber/frontend/src/components/shared/utils/newlineCalculator.ts,sha256=11vs1l6WdpPZyWlUlr-Y2BfbGnHhMLAMVBSitkv4XmU,1516
55
- lyrics_transcriber/frontend/src/components/shared/utils/referenceLineCalculator.ts,sha256=9u89QpkfljIzEQQjk1pVSp_nUDFjwm0xoA_sooEqK3o,2739
54
+ lyrics_transcriber/frontend/src/components/shared/types.ts,sha256=sAKufdR0PD4wKDyj301vP5apd4PKkoHNhRbSjP2Lk6M,2989
55
+ lyrics_transcriber/frontend/src/components/shared/utils/initializeDataWithIds.tsx,sha256=Af7uhfq4iH6QxNblXi0yueWxGsmmZ2CD1A5GSS4ceAk,7574
56
+ lyrics_transcriber/frontend/src/components/shared/utils/referenceLineCalculator.ts,sha256=F_xWrvE4wynWrwI1rkpuQ1ge54QlvMPD2Pbgwj9-zrg,2583
56
57
  lyrics_transcriber/frontend/src/main.tsx,sha256=gKJOIr1laz68BhgxWz0JXb1LNacA2oxfbypxW_B1USo,139
57
- lyrics_transcriber/frontend/src/types.ts,sha256=yrUitI_KuZLDNEzrDuLRyio6XRfMuujZuNRt1EC3DAA,2734
58
+ lyrics_transcriber/frontend/src/types.ts,sha256=_gMS67qEh_0EtcIpWx034Gxz8jfKrH580nGqbFddsPk,2773
58
59
  lyrics_transcriber/frontend/src/vite-env.d.ts,sha256=ZZlpNvuwQpFfe3SiAPzd5-QQ8ypmmxq5WXz6pLD63bU,38
59
60
  lyrics_transcriber/frontend/tsconfig.app.json,sha256=7aUBVcaBqEtmtfQXsbwsgBxSUng06xzQi5t4QCgWQ3E,665
60
61
  lyrics_transcriber/frontend/tsconfig.json,sha256=AOS5v1AsNPL3wGc8bt58Ybh8HHpbYrlK91q0KIzaSgs,627
61
62
  lyrics_transcriber/frontend/tsconfig.node.json,sha256=oMBhK5xufBrVE7SkbADRxA3pxm8_L9m5YwtCOZSafsc,536
62
- lyrics_transcriber/frontend/tsconfig.tsbuildinfo,sha256=NR-Uu3EJ34W4mGOQJT-Vkp_XHVwJxSxh6kIPWCAdH4w,1038
63
+ lyrics_transcriber/frontend/tsconfig.tsbuildinfo,sha256=a81l9txHVwh3z6S8YTHCpEumJFsanC3ifitX40mOHE0,1043
63
64
  lyrics_transcriber/frontend/vite.config.d.ts,sha256=S5bdGf0pSdKM6A6RNBKwAm3EIeW_bDHYfHtesRtXU7Q,76
64
- lyrics_transcriber/frontend/vite.config.js,sha256=rJsgKgeHdZ3lUbab4NaNcxVsiUmmtTQee4iPweN5Ktc,165
65
- lyrics_transcriber/frontend/vite.config.ts,sha256=TTbbNSKnst0Q4JNuEAQ3PH7mXxD3zXkgzXZBBFnBWkU,161
65
+ lyrics_transcriber/frontend/vite.config.js,sha256=P4GuPgRZzwEWPQZpyujUe7eA3mjPoFAe2CgE5sQAXg8,232
66
+ lyrics_transcriber/frontend/vite.config.ts,sha256=8FdW0dN8zDFqfhQSxX5h7sIu72X2piLYlp_TZYRQvBQ,216
66
67
  lyrics_transcriber/lyrics/base_lyrics_provider.py,sha256=OAGuvuLCguzOnI1Cu2s41Y3BKIWKJZSfpzf7u3QqsME,6601
67
68
  lyrics_transcriber/lyrics/file_provider.py,sha256=Id3Kt0gYUqLt0QQ0gPxu4pj1ziT66UAPZAR1D1LDeRE,4024
68
- lyrics_transcriber/lyrics/genius.py,sha256=x8dNOygrDRZgwK0v2qK6F6wmqGEIiXe_Edgx-IkNWHA,5003
69
+ lyrics_transcriber/lyrics/genius.py,sha256=_0mYD-wYoZ0RBGhDybZFsvLUQhBNs-SOic7lfxjWDC4,5553
69
70
  lyrics_transcriber/lyrics/spotify.py,sha256=8Abxc7B_1eGPOCHDJ-zVAdhWRvz0nls9LipD7L4fhV8,4004
70
71
  lyrics_transcriber/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
72
  lyrics_transcriber/output/ass/__init__.py,sha256=EYQ45gI7_-vclVgzISL0ML8VgxCdB0odqEyPyiPCIw0,578
@@ -80,10 +81,10 @@ lyrics_transcriber/output/ass/lyrics_screen.py,sha256=gRzUsDMLEtZZPuv77xk7M0FzCp
80
81
  lyrics_transcriber/output/ass/section_detector.py,sha256=TsSf4E0fleC-Tzd5KK6q4m-wjGiu6TvGDtHdR6sUqvc,3922
81
82
  lyrics_transcriber/output/ass/section_screen.py,sha256=QeUaIeDXs_Es33W5aqyVSaZzMwUx-b60vbAww3aQfls,4185
82
83
  lyrics_transcriber/output/ass/style.py,sha256=ty3IGorlOZ_Q-TxeA02hNb5Pb0mA755dOb8bqKr1k7U,6880
83
- lyrics_transcriber/output/cdg.py,sha256=V1T2oBmrCLWhBwLiyCiys3C2W1mDqki54JRKC_TvNIM,20732
84
+ lyrics_transcriber/output/cdg.py,sha256=gWyFUAsG9xNTENWQdPTZDIWrr8jNHZgH2U4bA3iN9dM,21950
84
85
  lyrics_transcriber/output/cdgmaker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
85
86
  lyrics_transcriber/output/cdgmaker/cdg.py,sha256=nBqkw0JOois-NI27CkwHblLuBaoL-sHyJb2SntX7m8s,6733
86
- lyrics_transcriber/output/cdgmaker/composer.py,sha256=qUBlGonxPeCs0G7u2bqIpF58ySAZr9mZxLStWZr9ksY,76193
87
+ lyrics_transcriber/output/cdgmaker/composer.py,sha256=l04-wnUZMo5NUhgd5Ji-QqYwy-j3esqZCT-Qohll7bk,91250
87
88
  lyrics_transcriber/output/cdgmaker/config.py,sha256=dOsOaPg9XawR3sWdTBoQiYn7urQWafV2KzedhI6BHYU,4043
88
89
  lyrics_transcriber/output/cdgmaker/images/instrumental.png,sha256=EKUcJJGj95ceNqw7M-O9ltX4HZIaCaSKjJucKVDTSb8,14834
89
90
  lyrics_transcriber/output/cdgmaker/images/intro.png,sha256=XeN6i8aKaQObfRwcgHT8ajQAJIDVjXEd7C5tu7DtriU,17603
@@ -115,17 +116,17 @@ lyrics_transcriber/output/lyrics_file.py,sha256=_KQyQjCOMIwQdQ0115uEAUIjQWTRmShk
115
116
  lyrics_transcriber/output/plain_text.py,sha256=3mYKq0BLYz1rGBD6ROjG2dn6BPuzbn5dxIQbWZVi4ao,3689
116
117
  lyrics_transcriber/output/segment_resizer.py,sha256=b553FCdcjYAl9T1IA5K6ya0pcn1-irD5spmxSc26wnI,17143
117
118
  lyrics_transcriber/output/subtitles.py,sha256=BQy7N_2zdBBWEiHL0NWFz3ZgAerWqQvTLALgxxK3Etk,16920
118
- lyrics_transcriber/output/video.py,sha256=kYGeEMYtoJvrGnMuyNpuSmu2DTskGDXBNlrv6ddvC8I,8485
119
+ lyrics_transcriber/output/video.py,sha256=ghb53OF6BNZy1VudKQvogPBA27eXfN8FHX9C72aGsm0,9095
119
120
  lyrics_transcriber/review/__init__.py,sha256=_3Eqw-uXZhOZwo6_sHZLhP9vxAVkLF9EBXduUvPdLjQ,57
120
- lyrics_transcriber/review/server.py,sha256=0WVcB5FaQWi8DeX-QgHZM-3ZIVr4LHiYNysWwKVBGw8,5494
121
+ lyrics_transcriber/review/server.py,sha256=5Cfy3aS-h2c6bZU0wkrDZ9ATIkjndNWbxVJjQ89PFJE,5981
121
122
  lyrics_transcriber/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
123
  lyrics_transcriber/storage/dropbox.py,sha256=Dyam1ULTkoxD1X5trkZ5dGp5XhBGCn998moC8IS9-68,9804
123
124
  lyrics_transcriber/transcribers/audioshake.py,sha256=QzKGimVa6BovlvYFj35CbGpaGePI_DApAJGEBR_JQLc,8709
124
125
  lyrics_transcriber/transcribers/base_transcriber.py,sha256=yPzUWPTCGmzE97H5Rz6g61e-qEGL77ZzUoiBOmswhts,5973
125
126
  lyrics_transcriber/transcribers/whisper.py,sha256=P0kas2_oX16MO1-Qy7U5gl5KQN-RuUIJZz7LsEFLUiE,12906
126
127
  lyrics_transcriber/types.py,sha256=xGf3hkTRcGZTTAjMVIev2i2DOU6co0QGpW8NxvaBQAA,16759
127
- lyrics_transcriber-0.36.1.dist-info/LICENSE,sha256=BiPihPDxhxIPEx6yAxVfAljD5Bhm_XG2teCbPEj_m0Y,1069
128
- lyrics_transcriber-0.36.1.dist-info/METADATA,sha256=QSWzLdk_FD3FQta4TrvwJv105oy_GhiwK2r-dWUkaAc,5856
129
- lyrics_transcriber-0.36.1.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
130
- lyrics_transcriber-0.36.1.dist-info/entry_points.txt,sha256=ChnmR13YoalGnC3sHW0TppX5FbhEXntYIha24tVQJ1M,104
131
- lyrics_transcriber-0.36.1.dist-info/RECORD,,
128
+ lyrics_transcriber-0.39.0.dist-info/LICENSE,sha256=BiPihPDxhxIPEx6yAxVfAljD5Bhm_XG2teCbPEj_m0Y,1069
129
+ lyrics_transcriber-0.39.0.dist-info/METADATA,sha256=9YYI3pAEcVVzJkjENCSchgEnp_M5MOUFrSjRhfpwVRk,5891
130
+ lyrics_transcriber-0.39.0.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
131
+ lyrics_transcriber-0.39.0.dist-info/entry_points.txt,sha256=SoGPp-kikJ9tPNF8vnjcnCyBrNWCW7AbaoZs1dIbXCo,162
132
+ lyrics_transcriber-0.39.0.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  [console_scripts]
2
+ cdgmaker=lyrics_transcriber.output.cdgmaker.composer:main
2
3
  lyrics-transcriber=lyrics_transcriber.cli.cli_main:main
3
4
  test-cov=tests.conftest:main
4
5