lyrics-transcriber 0.41.0__py3-none-any.whl → 0.43.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 (78) hide show
  1. lyrics_transcriber/core/controller.py +30 -52
  2. lyrics_transcriber/correction/anchor_sequence.py +325 -150
  3. lyrics_transcriber/correction/corrector.py +224 -107
  4. lyrics_transcriber/correction/handlers/base.py +28 -10
  5. lyrics_transcriber/correction/handlers/extend_anchor.py +47 -24
  6. lyrics_transcriber/correction/handlers/levenshtein.py +75 -33
  7. lyrics_transcriber/correction/handlers/llm.py +290 -0
  8. lyrics_transcriber/correction/handlers/no_space_punct_match.py +81 -36
  9. lyrics_transcriber/correction/handlers/relaxed_word_count_match.py +46 -26
  10. lyrics_transcriber/correction/handlers/repeat.py +28 -11
  11. lyrics_transcriber/correction/handlers/sound_alike.py +68 -32
  12. lyrics_transcriber/correction/handlers/syllables_match.py +80 -30
  13. lyrics_transcriber/correction/handlers/word_count_match.py +36 -19
  14. lyrics_transcriber/correction/handlers/word_operations.py +68 -22
  15. lyrics_transcriber/correction/text_utils.py +3 -7
  16. lyrics_transcriber/frontend/.yarn/install-state.gz +0 -0
  17. lyrics_transcriber/frontend/.yarn/releases/yarn-4.6.0.cjs +934 -0
  18. lyrics_transcriber/frontend/.yarnrc.yml +3 -0
  19. lyrics_transcriber/frontend/dist/assets/{index-DKnNJHRK.js → index-D0Gr3Ep7.js} +16509 -9038
  20. lyrics_transcriber/frontend/dist/assets/index-D0Gr3Ep7.js.map +1 -0
  21. lyrics_transcriber/frontend/dist/index.html +1 -1
  22. lyrics_transcriber/frontend/package.json +6 -2
  23. lyrics_transcriber/frontend/src/App.tsx +18 -2
  24. lyrics_transcriber/frontend/src/api.ts +103 -6
  25. lyrics_transcriber/frontend/src/components/AudioPlayer.tsx +14 -6
  26. lyrics_transcriber/frontend/src/components/DetailsModal.tsx +86 -59
  27. lyrics_transcriber/frontend/src/components/EditModal.tsx +281 -63
  28. lyrics_transcriber/frontend/src/components/FileUpload.tsx +2 -2
  29. lyrics_transcriber/frontend/src/components/Header.tsx +249 -0
  30. lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +320 -266
  31. lyrics_transcriber/frontend/src/components/PreviewVideoSection.tsx +120 -0
  32. lyrics_transcriber/frontend/src/components/ReferenceView.tsx +174 -52
  33. lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx +158 -114
  34. lyrics_transcriber/frontend/src/components/TimelineEditor.tsx +59 -78
  35. lyrics_transcriber/frontend/src/components/TranscriptionView.tsx +39 -16
  36. lyrics_transcriber/frontend/src/components/WordEditControls.tsx +4 -10
  37. lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx +134 -68
  38. lyrics_transcriber/frontend/src/components/shared/components/Word.tsx +1 -1
  39. lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts +85 -115
  40. lyrics_transcriber/frontend/src/components/shared/types.js +2 -0
  41. lyrics_transcriber/frontend/src/components/shared/types.ts +15 -7
  42. lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts +67 -0
  43. lyrics_transcriber/frontend/src/components/shared/utils/localStorage.ts +78 -0
  44. lyrics_transcriber/frontend/src/components/shared/utils/referenceLineCalculator.ts +7 -7
  45. lyrics_transcriber/frontend/src/components/shared/utils/segmentOperations.ts +121 -0
  46. lyrics_transcriber/frontend/src/components/shared/utils/wordUtils.ts +22 -0
  47. lyrics_transcriber/frontend/src/types/global.d.ts +9 -0
  48. lyrics_transcriber/frontend/src/types.js +2 -0
  49. lyrics_transcriber/frontend/src/types.ts +70 -49
  50. lyrics_transcriber/frontend/src/validation.ts +132 -0
  51. lyrics_transcriber/frontend/tsconfig.tsbuildinfo +1 -1
  52. lyrics_transcriber/frontend/yarn.lock +3752 -0
  53. lyrics_transcriber/lyrics/base_lyrics_provider.py +75 -12
  54. lyrics_transcriber/lyrics/file_provider.py +6 -5
  55. lyrics_transcriber/lyrics/genius.py +5 -2
  56. lyrics_transcriber/lyrics/spotify.py +58 -21
  57. lyrics_transcriber/output/ass/config.py +16 -5
  58. lyrics_transcriber/output/cdg.py +1 -1
  59. lyrics_transcriber/output/generator.py +22 -8
  60. lyrics_transcriber/output/plain_text.py +15 -10
  61. lyrics_transcriber/output/segment_resizer.py +16 -3
  62. lyrics_transcriber/output/subtitles.py +27 -1
  63. lyrics_transcriber/output/video.py +107 -1
  64. lyrics_transcriber/review/__init__.py +0 -1
  65. lyrics_transcriber/review/server.py +337 -164
  66. lyrics_transcriber/transcribers/audioshake.py +3 -0
  67. lyrics_transcriber/transcribers/base_transcriber.py +11 -3
  68. lyrics_transcriber/transcribers/whisper.py +11 -1
  69. lyrics_transcriber/types.py +151 -105
  70. lyrics_transcriber/utils/word_utils.py +27 -0
  71. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/METADATA +3 -1
  72. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/RECORD +75 -61
  73. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/WHEEL +1 -1
  74. lyrics_transcriber/frontend/dist/assets/index-DKnNJHRK.js.map +0 -1
  75. lyrics_transcriber/frontend/package-lock.json +0 -4260
  76. lyrics_transcriber/frontend/src/components/shared/utils/initializeDataWithIds.tsx +0 -202
  77. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/LICENSE +0 -0
  78. {lyrics_transcriber-0.41.0.dist-info → lyrics_transcriber-0.43.0.dist-info}/entry_points.txt +0 -0
@@ -3,76 +3,89 @@ lyrics_transcriber/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
3
3
  lyrics_transcriber/cli/cli_main.py,sha256=MDgjIlgmKDfv3z6nK_j7TJKtcijfuLrB06hDMXXaZQY,10211
4
4
  lyrics_transcriber/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  lyrics_transcriber/core/config.py,sha256=euwOOtuNbXy4-a1xs8QKdjcf5jXZQle0zf6X1Wthurw,1229
6
- lyrics_transcriber/core/controller.py,sha256=YKz-_nV-h2grXfQrNafDiK35uNitiLVA-z9BmMOkq-w,19540
7
- lyrics_transcriber/correction/anchor_sequence.py,sha256=YpKyY24Va5i4JgzP9ssqlOIkaYu060KaldiehbfgTdk,22200
8
- lyrics_transcriber/correction/corrector.py,sha256=r6AmdVl_JbOIbNgNk5aDHy-5vdw5-cayspUGht_844A,13494
6
+ lyrics_transcriber/core/controller.py,sha256=YX4OsKSNAHQEGVjI9BjTpMGZk9h3Gvowb9IzbApRCuc,18529
7
+ lyrics_transcriber/correction/anchor_sequence.py,sha256=xhXcREuPVVeGcrntDf7O8pa-CBqVGqU5GDym1Zdm0QA,29515
8
+ lyrics_transcriber/correction/corrector.py,sha256=Lh--FtgXVFCDBzNe7mQzmEiZI85MgicKCpW63R6JZgw,18985
9
9
  lyrics_transcriber/correction/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
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
- lyrics_transcriber/correction/handlers/levenshtein.py,sha256=pe62eyDE3XxLC219rvtvvfd_lna1q0SuiGcYBYX-nwM,6425
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
- lyrics_transcriber/correction/handlers/repeat.py,sha256=jeUwpgU3no1Stk7bOHweDfIOxM2xsykbttdnsD-e_Rg,3682
16
- lyrics_transcriber/correction/handlers/sound_alike.py,sha256=mAmnpRpO29rHaP96V-U3QTS1aOM32IV2YUYgS0y9ibo,10635
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
10
+ lyrics_transcriber/correction/handlers/base.py,sha256=ZXYMFgbCmlD62dpqdFwFPlcePdHKEFrABffnG_Mu5mI,1687
11
+ lyrics_transcriber/correction/handlers/extend_anchor.py,sha256=wGGEtVmcEdYOTNuQQFz7Afhpfnn4Su0soiPmnY0dIRo,5944
12
+ lyrics_transcriber/correction/handlers/levenshtein.py,sha256=hMERQHVgiUDSHtamYrAjqZ3qMMok4VmQ_MYM2-nrX6w,7864
13
+ lyrics_transcriber/correction/handlers/llm.py,sha256=Yq4kNwXExehUEOgotJ5ACwhgABA2vrUMSOgcMg7eLnM,14608
14
+ lyrics_transcriber/correction/handlers/no_space_punct_match.py,sha256=jY2fa547Qc8B63xIhF9VyWMaq5jds6E6wBqyVq6KANw,7057
15
+ lyrics_transcriber/correction/handlers/relaxed_word_count_match.py,sha256=x4k__6gav4-STk_TycLcg5Sw4x2vUFAj5fWmOv7Yd_w,3911
16
+ lyrics_transcriber/correction/handlers/repeat.py,sha256=1PJADW44egYh7N9D2fN-gDIusWVglFjGHrCZuTQYNpA,4313
17
+ lyrics_transcriber/correction/handlers/sound_alike.py,sha256=75IvDSfoGUG2xVbYp-xsYuQXf7Jo-0ymsTzdBSOrwwQ,11935
18
+ lyrics_transcriber/correction/handlers/syllables_match.py,sha256=c9_hrJb_xkkqd2SuDjrsSmUF7OMYV65LRzBfAhCHxEY,11217
19
+ lyrics_transcriber/correction/handlers/word_count_match.py,sha256=OltTEs6eYnslxdvak97M5gXDiqXJxMHKk__Q9F_akXc,3595
20
+ lyrics_transcriber/correction/handlers/word_operations.py,sha256=410xhyO9tiqezV5yd5JKwKbxSGwXK9LWHJ7-zNIuOWA,7423
20
21
  lyrics_transcriber/correction/phrase_analyzer.py,sha256=dtO_2LjxnPdHJM7De40mYIdHCkozwhizVVQp5XGO7x0,16962
21
- lyrics_transcriber/correction/text_utils.py,sha256=VkOqgZHa9wEqLJdVNi4-KLFojQ6d4lWOGl_Y_vknenU,808
22
+ lyrics_transcriber/correction/text_utils.py,sha256=z4eiTBCmkNeTUvxG_RpR1Zwg0cbMPKFyxVaKAvLAk88,761
22
23
  lyrics_transcriber/frontend/.gitignore,sha256=lgGIPiVpFVUNSZl9oNQLelLOWUzpF7sikLW8xmsrrqI,248
24
+ lyrics_transcriber/frontend/.yarn/install-state.gz,sha256=ZEa-uz3UAehu8JjLeLqwdfq5dWme7h9fgx34Cj-3xVU,347949
25
+ lyrics_transcriber/frontend/.yarn/releases/yarn-4.6.0.cjs,sha256=6vHuq8FkpEygtl29zNVK9-VfP_kpSz_zGNWq7JLysgs,2764946
26
+ lyrics_transcriber/frontend/.yarnrc.yml,sha256=RIUAbDBlfdQoS1V4MjkeMHzQqi4cvIWSzY5T3gEB_1I,66
23
27
  lyrics_transcriber/frontend/README.md,sha256=-D6CAfKTT7Y0V3EjlZ2fMy7fyctFQ4x2TJ9vx6xtccM,1607
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
28
+ lyrics_transcriber/frontend/dist/assets/index-D0Gr3Ep7.js,sha256=-CMhaK4a-smrqgohFvrGS72TOS4Q-pP8v1tQsT0ZjGM,1093227
29
+ lyrics_transcriber/frontend/dist/assets/index-D0Gr3Ep7.js.map,sha256=wkhUiBST5zOJ1dz-o6UTgg2Cs7N65nXJiN9td7RaL2U,2303152
30
+ lyrics_transcriber/frontend/dist/index.html,sha256=sQMaEZMXzB1lbVjvprL_yqWlYLZQ7mRvbtaVmadAZGQ,400
27
31
  lyrics_transcriber/frontend/dist/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
28
32
  lyrics_transcriber/frontend/eslint.config.js,sha256=3ADH23ANA4NNBKFy6nCVk65e8bx1DrVd_FIaYNnhuqA,734
29
33
  lyrics_transcriber/frontend/index.html,sha256=KfqJVONzpUyPIwV73nZRiCWlwLnFWeB3z0vzxDPNudU,376
30
- lyrics_transcriber/frontend/package-lock.json,sha256=-VEaxgVZhB6rbaxiZPy3_qGsMuVlSYxZZg-K3mvhS4A,149189
31
- lyrics_transcriber/frontend/package.json,sha256=RfsM9t3-ySO3V_Qijv6yqFywwOxDNyaIlwAB_uP2bV4,1072
34
+ lyrics_transcriber/frontend/package.json,sha256=kQ0_UiU4xp8wnu-hbTBTAxUB6S_cQMzHM83Dmm5x70s,1181
32
35
  lyrics_transcriber/frontend/public/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
33
- lyrics_transcriber/frontend/src/App.tsx,sha256=yUsB9SZvOar0PKBMzmgfbJHv6fJW2mXdBExUZYgSaWY,6035
34
- lyrics_transcriber/frontend/src/api.ts,sha256=ORzQqlEKkFYrc78qFbOCNsSP6zW_vN2PFT_IiEwiiao,2089
35
- lyrics_transcriber/frontend/src/components/AudioPlayer.tsx,sha256=FbrN9WHLar_Sih977icyNcYW0AQF23ZBxj7vZZfs9io,4770
36
+ lyrics_transcriber/frontend/src/App.tsx,sha256=GzXtocjM-4mJSjMomnsbDiQjqtWx9ShbyroGy9SLJts,6588
37
+ lyrics_transcriber/frontend/src/api.ts,sha256=HlzMA5LhwUn-0VAZYDH9QYCm1NDcy0mNcy_E1AWZ_AI,5596
38
+ lyrics_transcriber/frontend/src/components/AudioPlayer.tsx,sha256=Q_nvNRaBNY46GwCLXgFnxypsBz2zcwkpi7c8VZJFO88,5112
36
39
  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
39
- lyrics_transcriber/frontend/src/components/FileUpload.tsx,sha256=Q_Y2YvlVGJvucdoDBbbI2pzymycWAprrc7vtSEGuIHs,2375
40
- lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx,sha256=oLm_N3cHO1BxaXxQVAHxZKzweHhD3x-d0QrZq3JJ8_A,20408
40
+ lyrics_transcriber/frontend/src/components/DetailsModal.tsx,sha256=JI-IngUICmRU9GL_IWlIYzpf__c78XskDDJWQodTt8U,10999
41
+ lyrics_transcriber/frontend/src/components/EditModal.tsx,sha256=EOF8PPNkNqx6LuvKuk8exTLk9XJ0lATyijVYTqjDwro,23770
42
+ lyrics_transcriber/frontend/src/components/FileUpload.tsx,sha256=fwn2rMWtMLPTZLREMb3ps4prSf9nzxGwnjmeC6KYsJA,2383
43
+ lyrics_transcriber/frontend/src/components/Header.tsx,sha256=h74nCQNUHes21LJaxkNS5Uwt9cXCf6w7EQI0Hi9_H9M,9979
44
+ lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx,sha256=N-7_6kMo2VFgA6cuA6iZXQ5_Cm0phXYMO70jMkYwZUo,21814
41
45
  lyrics_transcriber/frontend/src/components/ModeSelector.tsx,sha256=bHtjmj5DQx2CwkdL5A4fgLP3XEifu-QecPsMZVdMTmU,1422
42
- lyrics_transcriber/frontend/src/components/ReferenceView.tsx,sha256=_3vXwFIgRymrQyIMuEwOUumakvPMKKh80nnl43TzF4U,3597
43
- lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx,sha256=FfS-kIpYm70nvF40LOHoAHtIANMZMy1LSHGWgBE1ZKw,10669
46
+ lyrics_transcriber/frontend/src/components/PreviewVideoSection.tsx,sha256=XU7CG0XXA4fc_XT-aa3CgfnGM41bs24cjx0vudTRlNE,4133
47
+ lyrics_transcriber/frontend/src/components/ReferenceView.tsx,sha256=ZEjadr4eaMQPsiHyOk1FnyG5iwVY9l84A0QwXZ0-wos,8710
48
+ lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx,sha256=oHJBhCjC2UZrXpzZik8HBr2A2wmiWYYWa-dRj1XEDjU,12413
44
49
  lyrics_transcriber/frontend/src/components/SegmentDetailsModal.tsx,sha256=6ME02FkFwCgDAxW49yW260N4vbr80eAJ332Ex811GOo,1643
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
50
+ lyrics_transcriber/frontend/src/components/TimelineEditor.tsx,sha256=slSBZPen_NecSogavs3sKh66y8UrPjqA6ssGd9efKDI,12275
51
+ lyrics_transcriber/frontend/src/components/TranscriptionView.tsx,sha256=H_5Jivlyvd39KCvQEtUwHaRqh07fDA-EHvIlNcaabRA,6551
52
+ lyrics_transcriber/frontend/src/components/WordEditControls.tsx,sha256=YrUW92E5oj-C5fgyW_W0I5U-bVvmkf16ZetjUfFTabI,3094
53
+ lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx,sha256=BMLuBo5tLN3UZASexuJAYPVnTrpXHCm1pqAh9Uq4pKQ,14286
49
54
  lyrics_transcriber/frontend/src/components/shared/components/SourceSelector.tsx,sha256=i6qIEx7mv6lE111oSeonarlOvb97Z1cthvqq7xM2Lig,853
50
- lyrics_transcriber/frontend/src/components/shared/components/Word.tsx,sha256=xed50sPTI4edKp5fwz9vLyBqTNOU4MbhTe-NEApS3JI,1324
55
+ lyrics_transcriber/frontend/src/components/shared/components/Word.tsx,sha256=XfshAUV6Dvnp_ktaIaSQWYNA3lrbgq-TbQt2a0eqF0A,1333
51
56
  lyrics_transcriber/frontend/src/components/shared/constants.ts,sha256=25q1qjCwzV-hR72wSb_rJSe4dVuQ0l-piLMoZSpynGQ,488
52
- lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts,sha256=3CCs09ksim0WuNnoTJGxHm46ucbd8DTm7JRnAzQBx3w,7740
57
+ lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts,sha256=aRDzH144FYuK9N3Y0wyTp2c1-DJOT_Y3HWQHHGqiUsY,6196
53
58
  lyrics_transcriber/frontend/src/components/shared/styles.ts,sha256=J1jCSuRqpk1mOFYAqJudhxeozH-q1bi-dsOibLukBJU,411
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
59
+ lyrics_transcriber/frontend/src/components/shared/types.js,sha256=1DqoH1vIn6o1ng-XyBS6JRVVkf8Hj7ub_UD4x8loMjA,77
60
+ lyrics_transcriber/frontend/src/components/shared/types.ts,sha256=P-W7oXPvOCTAVmwmDB7BW4HaZe_RFt9GfzPnZ_-_rto,3334
61
+ lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts,sha256=zO4bk2iuBlkrpbghz03hg1YX-zBOFtY5IbLEp9LBjgY,2389
62
+ lyrics_transcriber/frontend/src/components/shared/utils/localStorage.ts,sha256=jpLT65Rk_toaB-8X2lRGyYZ9EoMQDI45GviUT7N9Bp0,3240
63
+ lyrics_transcriber/frontend/src/components/shared/utils/referenceLineCalculator.ts,sha256=TJ2oHDitFFVxm83eFEhdlwvhx--mIt3054YbET2RiXs,2575
64
+ lyrics_transcriber/frontend/src/components/shared/utils/segmentOperations.ts,sha256=QGxjh_uQ0vciAd6YVo5RQRXmFakiUQZb5X95oCzNAwo,3782
65
+ lyrics_transcriber/frontend/src/components/shared/utils/wordUtils.ts,sha256=bZbsvEgY3JoI15l4SdB51tHE33OkUxDH-WSG8doLcCQ,721
57
66
  lyrics_transcriber/frontend/src/main.tsx,sha256=gKJOIr1laz68BhgxWz0JXb1LNacA2oxfbypxW_B1USo,139
58
- lyrics_transcriber/frontend/src/types.ts,sha256=_gMS67qEh_0EtcIpWx034Gxz8jfKrH580nGqbFddsPk,2773
67
+ lyrics_transcriber/frontend/src/types/global.d.ts,sha256=NvltPF-n4_1oRLfihD3oHXbdT7txMC8B6fhCgvNY-jk,191
68
+ lyrics_transcriber/frontend/src/types.js,sha256=1DqoH1vIn6o1ng-XyBS6JRVVkf8Hj7ub_UD4x8loMjA,77
69
+ lyrics_transcriber/frontend/src/types.ts,sha256=WOxPW6QDB-KOfaSXq9gOD_kg_Yd9hRYG2Go0ltSbnDQ,3516
70
+ lyrics_transcriber/frontend/src/validation.ts,sha256=Pv_FtySk6q3a1z_W0-ItxiEX8OIYkgCDwXKGUds4Lx4,4275
59
71
  lyrics_transcriber/frontend/src/vite-env.d.ts,sha256=ZZlpNvuwQpFfe3SiAPzd5-QQ8ypmmxq5WXz6pLD63bU,38
60
72
  lyrics_transcriber/frontend/tsconfig.app.json,sha256=7aUBVcaBqEtmtfQXsbwsgBxSUng06xzQi5t4QCgWQ3E,665
61
73
  lyrics_transcriber/frontend/tsconfig.json,sha256=AOS5v1AsNPL3wGc8bt58Ybh8HHpbYrlK91q0KIzaSgs,627
62
74
  lyrics_transcriber/frontend/tsconfig.node.json,sha256=oMBhK5xufBrVE7SkbADRxA3pxm8_L9m5YwtCOZSafsc,536
63
- lyrics_transcriber/frontend/tsconfig.tsbuildinfo,sha256=a81l9txHVwh3z6S8YTHCpEumJFsanC3ifitX40mOHE0,1043
75
+ lyrics_transcriber/frontend/tsconfig.tsbuildinfo,sha256=tcmXkmOCO1Pfep-CwJwEVs0okthy4DQSIn91aQ15qdU,1304
64
76
  lyrics_transcriber/frontend/vite.config.d.ts,sha256=S5bdGf0pSdKM6A6RNBKwAm3EIeW_bDHYfHtesRtXU7Q,76
65
77
  lyrics_transcriber/frontend/vite.config.js,sha256=P4GuPgRZzwEWPQZpyujUe7eA3mjPoFAe2CgE5sQAXg8,232
66
78
  lyrics_transcriber/frontend/vite.config.ts,sha256=8FdW0dN8zDFqfhQSxX5h7sIu72X2piLYlp_TZYRQvBQ,216
67
- lyrics_transcriber/lyrics/base_lyrics_provider.py,sha256=OAGuvuLCguzOnI1Cu2s41Y3BKIWKJZSfpzf7u3QqsME,6601
68
- lyrics_transcriber/lyrics/file_provider.py,sha256=Id3Kt0gYUqLt0QQ0gPxu4pj1ziT66UAPZAR1D1LDeRE,4024
69
- lyrics_transcriber/lyrics/genius.py,sha256=_0mYD-wYoZ0RBGhDybZFsvLUQhBNs-SOic7lfxjWDC4,5553
70
- lyrics_transcriber/lyrics/spotify.py,sha256=8Abxc7B_1eGPOCHDJ-zVAdhWRvz0nls9LipD7L4fhV8,4004
79
+ lyrics_transcriber/frontend/yarn.lock,sha256=wtImLsCO1P1Lpkhc1jAN6IiHQ0As4xn39n0cwKoh4LM,131996
80
+ lyrics_transcriber/lyrics/base_lyrics_provider.py,sha256=YW83gs0rGUM_q6oLRfObx_tIfJYcKRkgKBo4WVLqe9I,9071
81
+ lyrics_transcriber/lyrics/file_provider.py,sha256=ksjVCtzzyK1lhKrYBed0P61wR3TV998Em2Dr7raqWwk,4086
82
+ lyrics_transcriber/lyrics/genius.py,sha256=SIMFEmD_QbXUB8hpDhRU7AAyVrJbRvKyTWsShA9jecE,5693
83
+ lyrics_transcriber/lyrics/spotify.py,sha256=K7aL_OHdQjhI8ydnHUq8-PUvkyDu2s-et7njiLIBVgY,5457
71
84
  lyrics_transcriber/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
85
  lyrics_transcriber/output/ass/__init__.py,sha256=EYQ45gI7_-vclVgzISL0ML8VgxCdB0odqEyPyiPCIw0,578
73
86
  lyrics_transcriber/output/ass/ass.py,sha256=xHId7Rv5gqmdQ7ZrWQSy46JX7vZcB_BzpZC800DwQk8,74315
74
87
  lyrics_transcriber/output/ass/ass_specs.txt,sha256=r80HVXWSjTMGU7o2NOJdHkYNBY6SVwSVf0Dyslc1OXk,39288
75
- lyrics_transcriber/output/ass/config.py,sha256=VOa9raO88b2QDuHbLvPN_7yqOq-fdBEijwN7S893BCY,1014
88
+ lyrics_transcriber/output/ass/config.py,sha256=qnjZnAN4KNoQB6v9l6sCvVXuZei56sPKEsuoTayN_0A,1255
76
89
  lyrics_transcriber/output/ass/constants.py,sha256=CUxR7K3LnoZeA7WMuMYMAPto0J7VW3IwKlP_Ve7XB0A,536
77
90
  lyrics_transcriber/output/ass/event.py,sha256=XVbA7YR6WgFa5ynrgE2R7ngauWZVZyNn86BfyNLF0u8,2657
78
91
  lyrics_transcriber/output/ass/formatters.py,sha256=hx_3a1goRIVQwAeNyu9n4UZcnpO9vm87x1aiHK5TBRc,3614
@@ -81,7 +94,7 @@ lyrics_transcriber/output/ass/lyrics_screen.py,sha256=gRzUsDMLEtZZPuv77xk7M0FzCp
81
94
  lyrics_transcriber/output/ass/section_detector.py,sha256=TsSf4E0fleC-Tzd5KK6q4m-wjGiu6TvGDtHdR6sUqvc,3922
82
95
  lyrics_transcriber/output/ass/section_screen.py,sha256=QeUaIeDXs_Es33W5aqyVSaZzMwUx-b60vbAww3aQfls,4185
83
96
  lyrics_transcriber/output/ass/style.py,sha256=ty3IGorlOZ_Q-TxeA02hNb5Pb0mA755dOb8bqKr1k7U,6880
84
- lyrics_transcriber/output/cdg.py,sha256=Kx8_luGUQbrAlbzGKKNQTPTSGkN48oqOBIH6CYzNlMI,24894
97
+ lyrics_transcriber/output/cdg.py,sha256=-3Dqv3L-JFsXWQkUENnkpnEbSVRMhPmhEj6a7yl5TRY,24896
85
98
  lyrics_transcriber/output/cdgmaker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
99
  lyrics_transcriber/output/cdgmaker/cdg.py,sha256=nBqkw0JOois-NI27CkwHblLuBaoL-sHyJb2SntX7m8s,6733
87
100
  lyrics_transcriber/output/cdgmaker/composer.py,sha256=gWziaLnCo8iV7Igp7yFn5oFUVctRDtkLlcfx6O-f98Y,90780
@@ -111,23 +124,24 @@ lyrics_transcriber/output/fonts/Zurich_Cn_BT_Bold.ttf,sha256=WNG5LOQ-uGUF_WWT5aQ
111
124
  lyrics_transcriber/output/fonts/arial.ttf,sha256=NcDzVZ2NtWnjbDEJW4pg1EFkPZX1kTneQOI_ragZuDM,275572
112
125
  lyrics_transcriber/output/fonts/georgia.ttf,sha256=fQuyDGMrtZ6BoIhfVzvSFz9x9zIE3pBY_raM4DIicHI,142964
113
126
  lyrics_transcriber/output/fonts/verdana.ttf,sha256=lu0UlJyktzks_yNbnEHVXBJTgqu-DA08K53WaJfK4Ms,139640
114
- lyrics_transcriber/output/generator.py,sha256=FdXoyxp62jmkvOCaS1ixnRI9ek08ts1QeA8qxss_REY,8309
127
+ lyrics_transcriber/output/generator.py,sha256=taEV4coTlvYF2JLLiIug0CKv5S0hb11lFZRDDzUYHxM,8884
115
128
  lyrics_transcriber/output/lrc_to_cdg.py,sha256=2pi5tvreD_ADAR4RF5yVwj7OJ4Pf5Zo_EJ7rt4iH3k0,2063
116
129
  lyrics_transcriber/output/lyrics_file.py,sha256=_KQyQjCOMIwQdQ0115uEAUIjQWTRmShkSfQuINPKxaw,3741
117
- lyrics_transcriber/output/plain_text.py,sha256=3mYKq0BLYz1rGBD6ROjG2dn6BPuzbn5dxIQbWZVi4ao,3689
118
- lyrics_transcriber/output/segment_resizer.py,sha256=b553FCdcjYAl9T1IA5K6ya0pcn1-irD5spmxSc26wnI,17143
119
- lyrics_transcriber/output/subtitles.py,sha256=jrvg0Tn8W-lRmlGNwnrMMzJB6xdEfI0ZoNLer5zWKJk,18170
120
- lyrics_transcriber/output/video.py,sha256=ghb53OF6BNZy1VudKQvogPBA27eXfN8FHX9C72aGsm0,9095
121
- lyrics_transcriber/review/__init__.py,sha256=_3Eqw-uXZhOZwo6_sHZLhP9vxAVkLF9EBXduUvPdLjQ,57
122
- lyrics_transcriber/review/server.py,sha256=5Cfy3aS-h2c6bZU0wkrDZ9ATIkjndNWbxVJjQ89PFJE,5981
130
+ lyrics_transcriber/output/plain_text.py,sha256=XARaWcy6MeQeQCUoz0PV_bHoBw5dba-u79bjS7XucnE,3867
131
+ lyrics_transcriber/output/segment_resizer.py,sha256=R2Z15F7aa7DQwgAf0EMNIQ-aYQhjs0JbhqoK_bW5hCA,17453
132
+ lyrics_transcriber/output/subtitles.py,sha256=yQCR7YO3aitKnGRjfAtSwsdi6byfpEZgnCumJO16M2E,19085
133
+ lyrics_transcriber/output/video.py,sha256=stthD0-sX5tdwIYCFRgp-r9VjuRJInRbyiAu5KmKyRQ,13211
134
+ lyrics_transcriber/review/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
+ lyrics_transcriber/review/server.py,sha256=6_eVJfCSuP5bHvoKyIfMwnTeByWb8YkaMOcutBoF5P0,15380
123
136
  lyrics_transcriber/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
137
  lyrics_transcriber/storage/dropbox.py,sha256=Dyam1ULTkoxD1X5trkZ5dGp5XhBGCn998moC8IS9-68,9804
125
- lyrics_transcriber/transcribers/audioshake.py,sha256=QzKGimVa6BovlvYFj35CbGpaGePI_DApAJGEBR_JQLc,8709
126
- lyrics_transcriber/transcribers/base_transcriber.py,sha256=yPzUWPTCGmzE97H5Rz6g61e-qEGL77ZzUoiBOmswhts,5973
127
- lyrics_transcriber/transcribers/whisper.py,sha256=P0kas2_oX16MO1-Qy7U5gl5KQN-RuUIJZz7LsEFLUiE,12906
128
- lyrics_transcriber/types.py,sha256=xGf3hkTRcGZTTAjMVIev2i2DOU6co0QGpW8NxvaBQAA,16759
129
- lyrics_transcriber-0.41.0.dist-info/LICENSE,sha256=BiPihPDxhxIPEx6yAxVfAljD5Bhm_XG2teCbPEj_m0Y,1069
130
- lyrics_transcriber-0.41.0.dist-info/METADATA,sha256=civcml2WAL40CDoeC8zOI76uVoIGkGXe4oyvwWSEZGc,5891
131
- lyrics_transcriber-0.41.0.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
132
- lyrics_transcriber-0.41.0.dist-info/entry_points.txt,sha256=kcp-bSFkCACAEA0t166Kek0HpaJUXRo5SlF5tVrqNBU,216
133
- lyrics_transcriber-0.41.0.dist-info/RECORD,,
138
+ lyrics_transcriber/transcribers/audioshake.py,sha256=pUR--5DgpYyJ-RFqdoLDf_2cHXI5CO239r5deDZRXVc,8938
139
+ lyrics_transcriber/transcribers/base_transcriber.py,sha256=T3m4ZCwZ9Bpv6Jvb2hNcnllk-lmeNmADDJlSySBtP1Q,6480
140
+ lyrics_transcriber/transcribers/whisper.py,sha256=YcCB1ic9H6zL1GS0jD0emu8-qlcH0QVEjjjYB4aLlIQ,13260
141
+ lyrics_transcriber/types.py,sha256=d73cDstrEI_tVgngDYYYFwjZNs6OVBuAB_QDkga7dWA,19841
142
+ lyrics_transcriber/utils/word_utils.py,sha256=-cMGpj9UV4F6IsoDKAV2i1aiqSO8eI91HMAm_igtVMk,958
143
+ lyrics_transcriber-0.43.0.dist-info/LICENSE,sha256=BiPihPDxhxIPEx6yAxVfAljD5Bhm_XG2teCbPEj_m0Y,1069
144
+ lyrics_transcriber-0.43.0.dist-info/METADATA,sha256=huAjpyM3slOpREvROVRaG8THoNN-jty-Q0DbwCPm6M4,5973
145
+ lyrics_transcriber-0.43.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
146
+ lyrics_transcriber-0.43.0.dist-info/entry_points.txt,sha256=kcp-bSFkCACAEA0t166Kek0HpaJUXRo5SlF5tVrqNBU,216
147
+ lyrics_transcriber-0.43.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.0.1
2
+ Generator: poetry-core 2.1.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any