lyrics-transcriber 0.37.0__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 (28) hide show
  1. lyrics_transcriber/correction/handlers/extend_anchor.py +13 -2
  2. lyrics_transcriber/correction/handlers/word_operations.py +8 -2
  3. lyrics_transcriber/frontend/dist/assets/index-DKnNJHRK.js +26696 -0
  4. lyrics_transcriber/frontend/dist/assets/index-DKnNJHRK.js.map +1 -0
  5. lyrics_transcriber/frontend/dist/index.html +1 -1
  6. lyrics_transcriber/frontend/package.json +3 -2
  7. lyrics_transcriber/frontend/src/components/EditModal.tsx +1 -0
  8. lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +36 -13
  9. lyrics_transcriber/frontend/src/components/ReferenceView.tsx +41 -1
  10. lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx +48 -16
  11. lyrics_transcriber/frontend/src/components/TimelineEditor.tsx +71 -16
  12. lyrics_transcriber/frontend/src/components/TranscriptionView.tsx +11 -7
  13. lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx +45 -12
  14. lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts +83 -19
  15. lyrics_transcriber/frontend/src/components/shared/types.ts +3 -0
  16. lyrics_transcriber/frontend/src/components/shared/utils/initializeDataWithIds.tsx +65 -9
  17. lyrics_transcriber/frontend/vite.config.js +4 -0
  18. lyrics_transcriber/frontend/vite.config.ts +4 -0
  19. lyrics_transcriber/lyrics/genius.py +41 -12
  20. lyrics_transcriber/output/cdg.py +1 -0
  21. lyrics_transcriber/output/cdgmaker/composer.py +839 -534
  22. lyrics_transcriber/review/server.py +10 -12
  23. {lyrics_transcriber-0.37.0.dist-info → lyrics_transcriber-0.39.0.dist-info}/METADATA +3 -2
  24. {lyrics_transcriber-0.37.0.dist-info → lyrics_transcriber-0.39.0.dist-info}/RECORD +27 -26
  25. lyrics_transcriber/frontend/dist/assets/index-BNNbsbVN.js +0 -182
  26. {lyrics_transcriber-0.37.0.dist-info → lyrics_transcriber-0.39.0.dist-info}/LICENSE +0 -0
  27. {lyrics_transcriber-0.37.0.dist-info → lyrics_transcriber-0.39.0.dist-info}/WHEEL +0 -0
  28. {lyrics_transcriber-0.37.0.dist-info → lyrics_transcriber-0.39.0.dist-info}/entry_points.txt +0 -0
@@ -133,23 +133,21 @@ def start_review_server(correction_result: CorrectionResult) -> CorrectionResult
133
133
  start_vite_server()
134
134
  logger.info("Frontend assets mounted")
135
135
 
136
- # Find an available port starting from 8000
137
- port = 8000
136
+ # Wait for default port (8000) to become available
137
+ DEFAULT_PORT = 8000
138
138
  while True:
139
139
  try:
140
- # Test if port is available
141
140
  with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
142
- s.bind(("127.0.0.1", port))
141
+ s.bind(("127.0.0.1", DEFAULT_PORT))
143
142
  break
144
143
  except OSError:
145
- port += 1
146
- if port > 8100: # Set a reasonable upper limit
147
- raise RuntimeError("Unable to find an available port")
144
+ logger.info(f"Port {DEFAULT_PORT} is occupied, waiting 10 seconds before retrying...")
145
+ time.sleep(10)
148
146
 
149
- logger.info(f"Using port {port}")
147
+ logger.info(f"Port {DEFAULT_PORT} is available, starting server")
150
148
 
151
- # Create a custom server config with the found port
152
- config = uvicorn.Config(app, host="127.0.0.1", port=port, log_level="info")
149
+ # Create server config with default port
150
+ config = uvicorn.Config(app, host="127.0.0.1", port=DEFAULT_PORT, log_level="info")
153
151
  server = uvicorn.Server(config)
154
152
 
155
153
  # Start FastAPI server in a separate thread
@@ -158,9 +156,9 @@ def start_review_server(correction_result: CorrectionResult) -> CorrectionResult
158
156
  logger.info("Server thread started")
159
157
 
160
158
  # Open browser with the correct port
161
- base_api_url = f"http://localhost:{port}/api"
159
+ base_api_url = f"http://localhost:{DEFAULT_PORT}/api"
162
160
  encoded_api_url = urllib.parse.quote(base_api_url, safe="")
163
- webbrowser.open(f"http://localhost:{port}?baseApiUrl={encoded_api_url}")
161
+ webbrowser.open(f"http://localhost:{DEFAULT_PORT}?baseApiUrl={encoded_api_url}")
164
162
  logger.info("Opened browser for review")
165
163
 
166
164
  # Wait for review to complete
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lyrics-transcriber
3
- Version: 0.37.0
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)
@@ -8,7 +8,7 @@ lyrics_transcriber/correction/anchor_sequence.py,sha256=YpKyY24Va5i4JgzP9ssqlOIk
8
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
10
  lyrics_transcriber/correction/handlers/base.py,sha256=XnS0qM7-HQBoKJoVMdwF5YsW76yuxs3sZ1n45i_XN_s,1150
11
- lyrics_transcriber/correction/handlers/extend_anchor.py,sha256=65VJIJgLV6Z_M41VqHpSWjoXFu1FU8KUAGeijrrB7fk,4296
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
13
  lyrics_transcriber/correction/handlers/no_space_punct_match.py,sha256=d20Alv-8f9vPcqMpSS4d6Ixwc9gSlarWYvbLrGKK2u0,5318
14
14
  lyrics_transcriber/correction/handlers/relaxed_word_count_match.py,sha256=TeE7ufQQaMj1vA4UehQY5axr7TuujrV0n4Mw0DUTSBg,3040
@@ -16,42 +16,43 @@ lyrics_transcriber/correction/handlers/repeat.py,sha256=jeUwpgU3no1Stk7bOHweDfIO
16
16
  lyrics_transcriber/correction/handlers/sound_alike.py,sha256=mAmnpRpO29rHaP96V-U3QTS1aOM32IV2YUYgS0y9ibo,10635
17
17
  lyrics_transcriber/correction/handlers/syllables_match.py,sha256=ADjahMG8fzdbQTVFovgzoYCM5Zww-xzshBMfwoYyoOg,9189
18
18
  lyrics_transcriber/correction/handlers/word_count_match.py,sha256=cWxjTrpyM_lhaPO7fss0TR6Lq6PBx2-LR1OTj9w1woQ,3035
19
- lyrics_transcriber/correction/handlers/word_operations.py,sha256=2COTaJsEwpSWyXHXmGgjfcf2x7tbAnsQ0dIW0qyHYK4,5141
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-BNNbsbVN.js,sha256=RENuxYadPAF4QOvlZUskVGXcPa1ZXTRjss-HZYWwC4A,428916
25
- lyrics_transcriber/frontend/dist/index.html,sha256=ZJgw8okOLEkuaowx6m2tUx84yS9aVLzd-4dTA3lviSU,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
36
  lyrics_transcriber/frontend/src/components/CorrectionMetrics.tsx,sha256=mKCvGuEWXOXw24djUqZlq4dfhFal7tpA6BQX9QzZ-OI,5730
36
37
  lyrics_transcriber/frontend/src/components/DetailsModal.tsx,sha256=kE0p8NFQCWgQdURAzErK_3raUGfVE6x4xPuzVAf0trE,10274
37
- lyrics_transcriber/frontend/src/components/EditModal.tsx,sha256=rm9nwMJBLDfsRdzt9PA1uYyaT_Jrs6ulAkvS1-7Di0Q,15181
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=LCx7ZpLReyLWeuD7AfND6LjVlSsmzBpmhVg2IWiaDfE,19222
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=r79sIv5q85SdfAK9hSgRw0c2DLAhykeQr77X6bqQCns,2140
42
- lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx,sha256=UU2sIzzlP4Q0V-isYrCzv8R1md_JEMOL7fRnd3aFTuw,9521
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=pcm09wdB6Hx9xU84_8yGmRX-Zrv-bmb2ws93v2bxMQI,5137
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
46
47
  lyrics_transcriber/frontend/src/components/WordEditControls.tsx,sha256=Wegt2na8Ko3yqKWNgqLXW9sbcIwP7g-91T_C4m-4320,3363
47
- lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx,sha256=ZZ0tOd63Xsu7svDQ3eQGRFcPIvLw1USMY8E1Dum9w14,9559
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=p16Lug27D2lHYsGVWgksND_20XH0VWFYcjrcyfI2WEw,4990
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=fNFUIszAcxVLlQ1dDoODaJ6ewB4nJU1oCsRFsPKMYCA,2882
54
- lyrics_transcriber/frontend/src/components/shared/utils/initializeDataWithIds.tsx,sha256=1r3vDOl-4aOJoMuEkC4wgtn8Cvwu-WVOk_goA7nggxM,5475
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
55
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
58
  lyrics_transcriber/frontend/src/types.ts,sha256=_gMS67qEh_0EtcIpWx034Gxz8jfKrH580nGqbFddsPk,2773
@@ -61,11 +62,11 @@ lyrics_transcriber/frontend/tsconfig.json,sha256=AOS5v1AsNPL3wGc8bt58Ybh8HHpbYrl
61
62
  lyrics_transcriber/frontend/tsconfig.node.json,sha256=oMBhK5xufBrVE7SkbADRxA3pxm8_L9m5YwtCOZSafsc,536
62
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=aai40hKvbPVeCewAuZdjJsnVzIml4SHLoL5j3p8nwbQ,21907
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
@@ -117,15 +118,15 @@ lyrics_transcriber/output/segment_resizer.py,sha256=b553FCdcjYAl9T1IA5K6ya0pcn1-
117
118
  lyrics_transcriber/output/subtitles.py,sha256=BQy7N_2zdBBWEiHL0NWFz3ZgAerWqQvTLALgxxK3Etk,16920
118
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=lsJ0FHIuA6I40N5OkZR6Hs5McbhV8TNvNF9PjWgAeuY,5980
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.37.0.dist-info/LICENSE,sha256=BiPihPDxhxIPEx6yAxVfAljD5Bhm_XG2teCbPEj_m0Y,1069
128
- lyrics_transcriber-0.37.0.dist-info/METADATA,sha256=UleVKFCF90ISiE8F2YVQmTH092HaPeVQ0XQKAYwztYA,5856
129
- lyrics_transcriber-0.37.0.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
130
- lyrics_transcriber-0.37.0.dist-info/entry_points.txt,sha256=SoGPp-kikJ9tPNF8vnjcnCyBrNWCW7AbaoZs1dIbXCo,162
131
- lyrics_transcriber-0.37.0.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,,