lyrics-transcriber 0.45.0__py3-none-any.whl → 0.47.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 (26) hide show
  1. lyrics_transcriber/frontend/.yarn/releases/{yarn-4.6.0.cjs → yarn-4.7.0.cjs} +292 -291
  2. lyrics_transcriber/frontend/.yarnrc.yml +1 -1
  3. lyrics_transcriber/frontend/dist/assets/{index-ZCT0s9MG.js → index-2vK-qVJS.js} +231 -151
  4. lyrics_transcriber/frontend/dist/assets/index-2vK-qVJS.js.map +1 -0
  5. lyrics_transcriber/frontend/dist/index.html +1 -1
  6. lyrics_transcriber/frontend/package.json +1 -1
  7. lyrics_transcriber/frontend/src/components/EditModal.tsx +36 -36
  8. lyrics_transcriber/frontend/src/components/EditWordList.tsx +73 -2
  9. lyrics_transcriber/frontend/src/components/Header.tsx +1 -16
  10. lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +26 -8
  11. lyrics_transcriber/frontend/src/components/ModeSelector.tsx +35 -16
  12. lyrics_transcriber/frontend/src/components/ReferenceView.tsx +3 -1
  13. lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx +4 -2
  14. lyrics_transcriber/frontend/src/components/shared/components/SourceSelector.tsx +26 -3
  15. lyrics_transcriber/frontend/src/components/shared/components/Word.tsx +2 -1
  16. lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts +3 -2
  17. lyrics_transcriber/frontend/src/components/shared/types.ts +2 -0
  18. lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts +45 -8
  19. lyrics_transcriber/frontend/src/components/shared/utils/segmentOperations.ts +47 -0
  20. lyrics_transcriber/frontend/src/types.ts +1 -1
  21. {lyrics_transcriber-0.45.0.dist-info → lyrics_transcriber-0.47.0.dist-info}/METADATA +1 -1
  22. {lyrics_transcriber-0.45.0.dist-info → lyrics_transcriber-0.47.0.dist-info}/RECORD +25 -25
  23. lyrics_transcriber/frontend/dist/assets/index-ZCT0s9MG.js.map +0 -1
  24. {lyrics_transcriber-0.45.0.dist-info → lyrics_transcriber-0.47.0.dist-info}/LICENSE +0 -0
  25. {lyrics_transcriber-0.45.0.dist-info → lyrics_transcriber-0.47.0.dist-info}/WHEEL +0 -0
  26. {lyrics_transcriber-0.45.0.dist-info → lyrics_transcriber-0.47.0.dist-info}/entry_points.txt +0 -0
@@ -62,6 +62,7 @@ export interface WordProps {
62
62
  originalWord: string
63
63
  handler: string
64
64
  confidence: number
65
+ source: string
65
66
  } | null
66
67
  }
67
68
 
@@ -100,6 +101,7 @@ export interface ReferenceViewProps extends BaseViewProps {
100
101
  onSourceChange: (source: string) => void
101
102
  corrected_segments: LyricsSegment[]
102
103
  corrections: WordCorrection[]
104
+ onAddLyrics?: () => void
103
105
  }
104
106
 
105
107
  // Update HighlightedTextProps to include linePositions
@@ -35,6 +35,16 @@ export const setupKeyboardHandlers = (state: KeyboardState) => {
35
35
  console.log(`Setting up keyboard handlers [${handlerId}]`)
36
36
  }
37
37
 
38
+ // Function to reset modifier key states
39
+ const resetModifierStates = () => {
40
+ if (debugLog) {
41
+ console.log(`Resetting modifier states [${handlerId}]`)
42
+ }
43
+ state.setIsShiftPressed(false)
44
+ state.setIsCtrlPressed?.(false)
45
+ document.body.style.userSelect = ''
46
+ }
47
+
38
48
  const handleKeyDown = (e: KeyboardEvent) => {
39
49
  if (debugLog) {
40
50
  console.log(`Keyboard event captured [${handlerId}]`, {
@@ -59,7 +69,7 @@ export const setupKeyboardHandlers = (state: KeyboardState) => {
59
69
  if (e.key === 'Shift') {
60
70
  state.setIsShiftPressed(true)
61
71
  document.body.style.userSelect = 'none'
62
- } else if (e.key === 'Meta') {
72
+ } else if (e.key === 'Control' || e.key === 'Ctrl' || e.key === 'Meta') {
63
73
  state.setIsCtrlPressed?.(true)
64
74
  } else if (e.key === ' ' || e.code === 'Space') {
65
75
  if (debugLog) {
@@ -102,12 +112,11 @@ export const setupKeyboardHandlers = (state: KeyboardState) => {
102
112
  })
103
113
  }
104
114
 
105
- if (e.key === 'Shift') {
106
- state.setIsShiftPressed(false)
107
- document.body.style.userSelect = ''
108
- } else if (e.key === 'Meta') {
109
- state.setIsCtrlPressed?.(false)
110
- } else if (e.key === ' ' || e.code === 'Space') {
115
+ // Always reset the modifier states regardless of the key which was released
116
+ // to help prevent accidentally getting stuck in a mode or accidentally deleting words
117
+ resetModifierStates()
118
+
119
+ if (e.key === ' ' || e.code === 'Space') {
111
120
  if (debugLog) {
112
121
  console.log('Keyboard handler - Spacebar released', {
113
122
  modalOpen: isModalOpen,
@@ -128,7 +137,35 @@ export const setupKeyboardHandlers = (state: KeyboardState) => {
128
137
  }
129
138
  }
130
139
 
131
- return { handleKeyDown, handleKeyUp }
140
+ // Handle window blur event (user switches tabs or apps)
141
+ const handleWindowBlur = () => {
142
+ if (debugLog) {
143
+ console.log(`Window blur detected [${handlerId}], resetting modifier states`)
144
+ }
145
+ resetModifierStates()
146
+ }
147
+
148
+ // Handle window focus event (user returns to the app)
149
+ const handleWindowFocus = () => {
150
+ if (debugLog) {
151
+ console.log(`Window focus detected [${handlerId}], ensuring modifier states are reset`)
152
+ }
153
+ resetModifierStates()
154
+ }
155
+
156
+ // Add window event listeners
157
+ window.addEventListener('blur', handleWindowBlur)
158
+ window.addEventListener('focus', handleWindowFocus)
159
+
160
+ // Return a cleanup function that includes removing the window event listeners
161
+ return {
162
+ handleKeyDown,
163
+ handleKeyUp,
164
+ cleanup: () => {
165
+ window.removeEventListener('blur', handleWindowBlur)
166
+ window.removeEventListener('focus', handleWindowFocus)
167
+ }
168
+ }
132
169
  }
133
170
 
134
171
  // Export these for external use
@@ -310,4 +310,51 @@ export function findAndReplace(
310
310
  newData.corrected_segments = newData.corrected_segments.filter(segment => segment.words.length > 0);
311
311
 
312
312
  return newData
313
+ }
314
+
315
+ /**
316
+ * Deletes a word from a segment in the correction data
317
+ * @param data The correction data
318
+ * @param wordId The ID of the word to delete
319
+ * @returns Updated correction data with the word removed
320
+ */
321
+ export function deleteWord(
322
+ data: CorrectionData,
323
+ wordId: string
324
+ ): CorrectionData {
325
+ // Find the segment containing this word
326
+ const segmentIndex = data.corrected_segments.findIndex(segment =>
327
+ segment.words.some(word => word.id === wordId)
328
+ );
329
+
330
+ if (segmentIndex === -1) {
331
+ // Word not found, return data unchanged
332
+ return data;
333
+ }
334
+
335
+ const segment = data.corrected_segments[segmentIndex];
336
+ const wordIndex = segment.words.findIndex(word => word.id === wordId);
337
+
338
+ if (wordIndex === -1) {
339
+ // Word not found in segment (shouldn't happen), return data unchanged
340
+ return data;
341
+ }
342
+
343
+ // Create a new segment with the word removed
344
+ const updatedWords = segment.words.filter((_, index) => index !== wordIndex);
345
+
346
+ if (updatedWords.length > 0) {
347
+ // Update the segment with the word removed
348
+ const updatedSegment = {
349
+ ...segment,
350
+ words: updatedWords,
351
+ text: updatedWords.map(w => w.text).join(' ')
352
+ };
353
+
354
+ // Update the data
355
+ return updateSegment(data, segmentIndex, updatedSegment);
356
+ } else {
357
+ // If the segment would be empty, delete the entire segment
358
+ return deleteSegment(data, segmentIndex);
359
+ }
313
360
  }
@@ -136,4 +136,4 @@ export interface HighlightInfo {
136
136
  correction?: WordCorrection
137
137
  }
138
138
 
139
- export type InteractionMode = 'highlight' | 'edit'
139
+ export type InteractionMode = 'highlight' | 'edit' | 'delete_word'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lyrics-transcriber
3
- Version: 0.45.0
3
+ Version: 0.47.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
@@ -23,16 +23,16 @@ lyrics_transcriber/correction/phrase_analyzer.py,sha256=dtO_2LjxnPdHJM7De40mYIdH
23
23
  lyrics_transcriber/correction/text_utils.py,sha256=z4eiTBCmkNeTUvxG_RpR1Zwg0cbMPKFyxVaKAvLAk88,761
24
24
  lyrics_transcriber/frontend/.gitignore,sha256=lgGIPiVpFVUNSZl9oNQLelLOWUzpF7sikLW8xmsrrqI,248
25
25
  lyrics_transcriber/frontend/.yarn/install-state.gz,sha256=kcgQ-S9HvdNHexkXQVt18LWUpqtP2mdyRfjJV1htFAc,345895
26
- lyrics_transcriber/frontend/.yarn/releases/yarn-4.6.0.cjs,sha256=6vHuq8FkpEygtl29zNVK9-VfP_kpSz_zGNWq7JLysgs,2764946
27
- lyrics_transcriber/frontend/.yarnrc.yml,sha256=RIUAbDBlfdQoS1V4MjkeMHzQqi4cvIWSzY5T3gEB_1I,66
26
+ lyrics_transcriber/frontend/.yarn/releases/yarn-4.7.0.cjs,sha256=KTYy2KCV2OpHhussV5jIPDdUSr7RftMRhqPsRUmgfAY,2765465
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-ZCT0s9MG.js,sha256=Rl82XsEWOv8jyFj_UEUxz0El7e4CUtl8L6XDgOqTQC8,1226756
30
- lyrics_transcriber/frontend/dist/assets/index-ZCT0s9MG.js.map,sha256=o3ZQgVCSvTs0LQu7brg461BHRgCPwCRI0TjxyC99uKM,2606491
31
- lyrics_transcriber/frontend/dist/index.html,sha256=va-nSC0PuQHN4j6ZDgCoDsUG7W2DOklJTrH5Vtczmmg,400
29
+ lyrics_transcriber/frontend/dist/assets/index-2vK-qVJS.js,sha256=SS1ChOzktQ9Npxy8NkAKCzMzMCTdsgaPnTftnnfQyyU,1228902
30
+ lyrics_transcriber/frontend/dist/assets/index-2vK-qVJS.js.map,sha256=zNnvzYNn1snMzTDmpvWlsub21-JXih9pBP5uJQrJhmU,2616065
31
+ lyrics_transcriber/frontend/dist/index.html,sha256=kt0XrQu0BoyMJq92TbIQxxD8U2963a-X4_GHxf5oqe4,400
32
32
  lyrics_transcriber/frontend/dist/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
33
33
  lyrics_transcriber/frontend/eslint.config.js,sha256=3ADH23ANA4NNBKFy6nCVk65e8bx1DrVd_FIaYNnhuqA,734
34
34
  lyrics_transcriber/frontend/index.html,sha256=KfqJVONzpUyPIwV73nZRiCWlwLnFWeB3z0vzxDPNudU,376
35
- lyrics_transcriber/frontend/package.json,sha256=kQ0_UiU4xp8wnu-hbTBTAxUB6S_cQMzHM83Dmm5x70s,1181
35
+ lyrics_transcriber/frontend/package.json,sha256=Jhcrbko3OfV2YYc0JCkluoEFMTXq8EEqYm5gcI7O8SU,1181
36
36
  lyrics_transcriber/frontend/public/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
37
37
  lyrics_transcriber/frontend/src/App.tsx,sha256=f1-dp-MU8vap18eAXacwVDO5P4eE2iG9zSvjau-7NJs,6533
38
38
  lyrics_transcriber/frontend/src/api.ts,sha256=UgqPc1jo8DEVgxh3_9Lyf9GBsHYpqMAqsPEE5BzTV4w,6640
@@ -40,40 +40,40 @@ lyrics_transcriber/frontend/src/components/AddLyricsModal.tsx,sha256=ubJwQewryjU
40
40
  lyrics_transcriber/frontend/src/components/AudioPlayer.tsx,sha256=amjYyYW6HZ9TD5RwqQLSmGbwk-5Ec9mtXza3F3045n4,5337
41
41
  lyrics_transcriber/frontend/src/components/CorrectionMetrics.tsx,sha256=CoTZS9Z3pf4lfPrzpQ2hZvLqFvt-IarSGBSCxFxD-y4,6274
42
42
  lyrics_transcriber/frontend/src/components/EditActionBar.tsx,sha256=nLRVA3m3bQFqLtqlYasn7WeZNXvPvpG0sXuIv5QXvDc,2174
43
- lyrics_transcriber/frontend/src/components/EditModal.tsx,sha256=f2JUYKvFmREElhlmHY545HQinwTtE5aTyQ_9x_qmKQY,24541
43
+ lyrics_transcriber/frontend/src/components/EditModal.tsx,sha256=sv-NCKMvso3UF1_fJKbzt_wAcDLAyLqRq_D24uQRrRw,24649
44
44
  lyrics_transcriber/frontend/src/components/EditTimelineSection.tsx,sha256=74dKgUv_Z9DxlHx2xiR-gShFehGUaMNG2XWsH-SUEOM,15165
45
- lyrics_transcriber/frontend/src/components/EditWordList.tsx,sha256=hJPXdpW3vur9OFnnIS8xk79yWWTsOuQgy2FdWNQ8vLg,10465
45
+ lyrics_transcriber/frontend/src/components/EditWordList.tsx,sha256=atl-9Z-24U-KWojwo0apTy1Y9DbQGoVo2dFX4P-1Z9E,13681
46
46
  lyrics_transcriber/frontend/src/components/FileUpload.tsx,sha256=fwn2rMWtMLPTZLREMb3ps4prSf9nzxGwnjmeC6KYsJA,2383
47
47
  lyrics_transcriber/frontend/src/components/FindReplaceModal.tsx,sha256=U7duKns4IqNXwbWFbQfdyaswnvkSRpfsU0UG__-Serc,20192
48
- lyrics_transcriber/frontend/src/components/Header.tsx,sha256=T07R_OjHRVhodr1eq1U2lS4Ge_FuoHDd62qTbVrMEYo,12296
49
- lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx,sha256=hsqkHwRYFGmKgsIZ-qjJ4pgckpX2Un7R-_Twtwill1g,40598
50
- lyrics_transcriber/frontend/src/components/ModeSelector.tsx,sha256=OuCOqePGs5JC3NxZxrR-rDu5W5WSObuxrLVOIaqHDOs,1941
48
+ lyrics_transcriber/frontend/src/components/Header.tsx,sha256=PKFMDITEyC77ndk0emOsU6LFbPTLkWmkTLxEcndKPJY,11657
49
+ lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx,sha256=csAR7ku2FXZmw11DfSDDHSX_3Lu4W_EnnBy9G3KlLVw,41357
50
+ lyrics_transcriber/frontend/src/components/ModeSelector.tsx,sha256=HnBAK_gFgNBJLtMC_ESMVdUapDjmqmoLX8pQeyHfpOw,2651
51
51
  lyrics_transcriber/frontend/src/components/PreviewVideoSection.tsx,sha256=-9_ljoaadHjAAvia_vhEUgCajPv2jFnRDVR6VWN_a0w,4166
52
- lyrics_transcriber/frontend/src/components/ReferenceView.tsx,sha256=QfK-VzpPcS4iUcYN6iAWE3yQK4rWQJJ-D80DzgixI3I,9436
52
+ lyrics_transcriber/frontend/src/components/ReferenceView.tsx,sha256=thpf2ojge9pvZojUnGaiQroeHfBmxhUesO7945RGSfk,9499
53
53
  lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx,sha256=zcGoIu5Iqs4ZXpGr3yeMIEKPf8FRLCP2i1TzNOmKzg0,13048
54
54
  lyrics_transcriber/frontend/src/components/SegmentDetailsModal.tsx,sha256=6ME02FkFwCgDAxW49yW260N4vbr80eAJ332Ex811GOo,1643
55
55
  lyrics_transcriber/frontend/src/components/TimelineEditor.tsx,sha256=Aa6ykDRVhWUNHcJ14KGzmUCPDCAltw9gXpdR5ogVQpc,12842
56
56
  lyrics_transcriber/frontend/src/components/TranscriptionView.tsx,sha256=It9alDqvlp3zu9ceEjFpqBOKDa2BFxP4AHm7v2K4AI0,7399
57
57
  lyrics_transcriber/frontend/src/components/WordDivider.tsx,sha256=tOs_4WZGlJQ1o7sZFGLhwUoyX2jSKMa6vLZqa-1vzKY,6590
58
- lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx,sha256=GHEpj6Hw_cUP4xKmg7sEfV4qiS0dVAVU28u2sCm8nTc,16085
59
- lyrics_transcriber/frontend/src/components/shared/components/SourceSelector.tsx,sha256=zZpnQd6RlcGlr2v6T90Eva1cdEkiWzIVE78xAaQPObA,1144
60
- lyrics_transcriber/frontend/src/components/shared/components/Word.tsx,sha256=mP88txgdG47VhYJrn3QqexZYxdmsNCGuBgNrK8mUvhM,2086
58
+ lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx,sha256=Iopa2n7ANnPtHFu2zq7vnfwQ4SOgmBUHUfNKwBQHBxY,16203
59
+ lyrics_transcriber/frontend/src/components/shared/components/SourceSelector.tsx,sha256=FpMn-0i1NFxdIHZN0dxHkWzIIsOEi9CJc_rQMpLyxVw,2031
60
+ lyrics_transcriber/frontend/src/components/shared/components/Word.tsx,sha256=4y1kyWsAO--phTwWvRgX8nAHwSKuBYKVSuJK6j8--rg,2153
61
61
  lyrics_transcriber/frontend/src/components/shared/constants.ts,sha256=25q1qjCwzV-hR72wSb_rJSe4dVuQ0l-piLMoZSpynGQ,488
62
- lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts,sha256=aRDzH144FYuK9N3Y0wyTp2c1-DJOT_Y3HWQHHGqiUsY,6196
62
+ lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts,sha256=eEgBHiKIWOzFK8eBzBgcQRv7StKpaPchqh3k2kFlwgY,6253
63
63
  lyrics_transcriber/frontend/src/components/shared/styles.ts,sha256=J1jCSuRqpk1mOFYAqJudhxeozH-q1bi-dsOibLukBJU,411
64
64
  lyrics_transcriber/frontend/src/components/shared/types.js,sha256=1DqoH1vIn6o1ng-XyBS6JRVVkf8Hj7ub_UD4x8loMjA,77
65
- lyrics_transcriber/frontend/src/components/shared/types.ts,sha256=-HniySfrxsjmciMvtXu_bSNAyVHbVAZynRDTC90S5L4,3840
66
- lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts,sha256=qtXin35bdVlitJSOmgju-WZP4QkwAJqjlYH3DuwfFPg,4522
65
+ lyrics_transcriber/frontend/src/components/shared/types.ts,sha256=TUjxwXxiahw0JrRUTUFk_ucUo-G16hB0Jpt8OgVULoU,3892
66
+ lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts,sha256=m9vob5KWp4_8kgB7FUXbWztYTSonkNZyz5hoHXvlRUk,5832
67
67
  lyrics_transcriber/frontend/src/components/shared/utils/localStorage.ts,sha256=jpLT65Rk_toaB-8X2lRGyYZ9EoMQDI45GviUT7N9Bp0,3240
68
68
  lyrics_transcriber/frontend/src/components/shared/utils/referenceLineCalculator.ts,sha256=TJ2oHDitFFVxm83eFEhdlwvhx--mIt3054YbET2RiXs,2575
69
- lyrics_transcriber/frontend/src/components/shared/utils/segmentOperations.ts,sha256=m1pUrjZcAch85Xqm9EX43BuoHQjdvBjY5BZ70LWa1hk,11074
69
+ lyrics_transcriber/frontend/src/components/shared/utils/segmentOperations.ts,sha256=yNE-4Da2nL38ofsizQUsPYWl_8Q9Ic2jbB_G3N4X7ps,12559
70
70
  lyrics_transcriber/frontend/src/components/shared/utils/wordUtils.ts,sha256=bZbsvEgY3JoI15l4SdB51tHE33OkUxDH-WSG8doLcCQ,721
71
71
  lyrics_transcriber/frontend/src/hooks/useManualSync.ts,sha256=fTAtHeO1Ca6o0n01DtietCHNgBFfvFEsXtQQO2orRWI,10775
72
72
  lyrics_transcriber/frontend/src/main.tsx,sha256=UXPXUc2HeDuGtW5GVzP312RjCo3TdnpBal7SWild-k4,345
73
73
  lyrics_transcriber/frontend/src/theme.ts,sha256=9F2xyLct_gJmvLEZEhrYdKIahUsBzi5kgnydSWJHphE,3864
74
74
  lyrics_transcriber/frontend/src/types/global.d.ts,sha256=NvltPF-n4_1oRLfihD3oHXbdT7txMC8B6fhCgvNY-jk,191
75
75
  lyrics_transcriber/frontend/src/types.js,sha256=1DqoH1vIn6o1ng-XyBS6JRVVkf8Hj7ub_UD4x8loMjA,77
76
- lyrics_transcriber/frontend/src/types.ts,sha256=FdPWw0QEm43MigcAIhRtyHUNqk6-mOUzM8bIV7hCzSU,3504
76
+ lyrics_transcriber/frontend/src/types.ts,sha256=6oKpoj0ST9buEFh3IksspnVFs4msfhHplAHB_cCEwZ0,3520
77
77
  lyrics_transcriber/frontend/src/validation.ts,sha256=Pv_FtySk6q3a1z_W0-ItxiEX8OIYkgCDwXKGUds4Lx4,4275
78
78
  lyrics_transcriber/frontend/src/vite-env.d.ts,sha256=ZZlpNvuwQpFfe3SiAPzd5-QQ8ypmmxq5WXz6pLD63bU,38
79
79
  lyrics_transcriber/frontend/tsconfig.app.json,sha256=7aUBVcaBqEtmtfQXsbwsgBxSUng06xzQi5t4QCgWQ3E,665
@@ -148,8 +148,8 @@ lyrics_transcriber/transcribers/base_transcriber.py,sha256=T3m4ZCwZ9Bpv6Jvb2hNcn
148
148
  lyrics_transcriber/transcribers/whisper.py,sha256=YcCB1ic9H6zL1GS0jD0emu8-qlcH0QVEjjjYB4aLlIQ,13260
149
149
  lyrics_transcriber/types.py,sha256=d73cDstrEI_tVgngDYYYFwjZNs6OVBuAB_QDkga7dWA,19841
150
150
  lyrics_transcriber/utils/word_utils.py,sha256=-cMGpj9UV4F6IsoDKAV2i1aiqSO8eI91HMAm_igtVMk,958
151
- lyrics_transcriber-0.45.0.dist-info/LICENSE,sha256=BiPihPDxhxIPEx6yAxVfAljD5Bhm_XG2teCbPEj_m0Y,1069
152
- lyrics_transcriber-0.45.0.dist-info/METADATA,sha256=KswMnIPwmJrw597OpS6L7-Hnqny8I4KtncvK4MiPhxI,6017
153
- lyrics_transcriber-0.45.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
154
- lyrics_transcriber-0.45.0.dist-info/entry_points.txt,sha256=kcp-bSFkCACAEA0t166Kek0HpaJUXRo5SlF5tVrqNBU,216
155
- lyrics_transcriber-0.45.0.dist-info/RECORD,,
151
+ lyrics_transcriber-0.47.0.dist-info/LICENSE,sha256=BiPihPDxhxIPEx6yAxVfAljD5Bhm_XG2teCbPEj_m0Y,1069
152
+ lyrics_transcriber-0.47.0.dist-info/METADATA,sha256=puMd0GdnGW5VD1Uub1ZI-3Ryn6y_Ty4IT_S6cUemtSU,6017
153
+ lyrics_transcriber-0.47.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
154
+ lyrics_transcriber-0.47.0.dist-info/entry_points.txt,sha256=kcp-bSFkCACAEA0t166Kek0HpaJUXRo5SlF5tVrqNBU,216
155
+ lyrics_transcriber-0.47.0.dist-info/RECORD,,