lyrics-transcriber 0.42.0__py3-none-any.whl → 0.43.1__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.
- lyrics_transcriber/frontend/dist/assets/{index-coH8y7gV.js → index-D0Gr3Ep7.js} +283 -64
- lyrics_transcriber/frontend/dist/assets/index-D0Gr3Ep7.js.map +1 -0
- lyrics_transcriber/frontend/dist/index.html +1 -1
- lyrics_transcriber/frontend/src/components/AudioPlayer.tsx +7 -0
- lyrics_transcriber/frontend/src/components/EditModal.tsx +198 -30
- lyrics_transcriber/frontend/src/components/Header.tsx +0 -2
- lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +19 -3
- lyrics_transcriber/frontend/src/components/PreviewVideoSection.tsx +4 -1
- lyrics_transcriber/frontend/src/components/ReferenceView.tsx +54 -17
- lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx +32 -2
- lyrics_transcriber/frontend/src/components/TranscriptionView.tsx +0 -1
- lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx +0 -3
- lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts +33 -1
- lyrics_transcriber/frontend/src/types/global.d.ts +9 -0
- lyrics_transcriber/frontend/tsconfig.tsbuildinfo +1 -1
- lyrics_transcriber/output/video.py +18 -8
- {lyrics_transcriber-0.42.0.dist-info → lyrics_transcriber-0.43.1.dist-info}/METADATA +1 -1
- {lyrics_transcriber-0.42.0.dist-info → lyrics_transcriber-0.43.1.dist-info}/RECORD +21 -20
- lyrics_transcriber/frontend/dist/assets/index-coH8y7gV.js.map +0 -1
- {lyrics_transcriber-0.42.0.dist-info → lyrics_transcriber-0.43.1.dist-info}/LICENSE +0 -0
- {lyrics_transcriber-0.42.0.dist-info → lyrics_transcriber-0.43.1.dist-info}/WHEEL +0 -0
- {lyrics_transcriber-0.42.0.dist-info → lyrics_transcriber-0.43.1.dist-info}/entry_points.txt +0 -0
@@ -1,11 +1,29 @@
|
|
1
|
+
// Add a global ref for the modal handler
|
2
|
+
let currentModalHandler: ((e: KeyboardEvent) => void) | undefined
|
3
|
+
let isModalOpen = false
|
4
|
+
|
1
5
|
type KeyboardState = {
|
2
6
|
setIsShiftPressed: (value: boolean) => void
|
3
7
|
setIsCtrlPressed: (value: boolean) => void
|
8
|
+
modalHandler?: {
|
9
|
+
isOpen: boolean
|
10
|
+
onSpacebar?: (e: KeyboardEvent) => void
|
11
|
+
}
|
12
|
+
}
|
13
|
+
|
14
|
+
// Add functions to update the modal handler state
|
15
|
+
export const setModalHandler = (handler: ((e: KeyboardEvent) => void) | undefined, open: boolean) => {
|
16
|
+
currentModalHandler = handler
|
17
|
+
isModalOpen = open
|
4
18
|
}
|
5
19
|
|
6
20
|
export const setupKeyboardHandlers = (state: KeyboardState) => {
|
21
|
+
const handlerId = Math.random().toString(36).substr(2, 9)
|
22
|
+
console.log(`Setting up keyboard handlers [${handlerId}]`)
|
23
|
+
|
7
24
|
const handleKeyDown = (e: KeyboardEvent) => {
|
8
25
|
if (e.target instanceof HTMLInputElement || e.target instanceof HTMLTextAreaElement) {
|
26
|
+
console.log(`[${handlerId}] Ignoring keydown in input/textarea`)
|
9
27
|
return
|
10
28
|
}
|
11
29
|
|
@@ -15,8 +33,22 @@ export const setupKeyboardHandlers = (state: KeyboardState) => {
|
|
15
33
|
} else if (e.key === 'Meta') {
|
16
34
|
state.setIsCtrlPressed(true)
|
17
35
|
} else if (e.key === ' ' || e.code === 'Space') {
|
36
|
+
console.log(`[${handlerId}] Spacebar pressed:`, {
|
37
|
+
modalOpen: isModalOpen,
|
38
|
+
hasModalHandler: !!currentModalHandler,
|
39
|
+
hasGlobalToggle: !!window.toggleAudioPlayback
|
40
|
+
})
|
41
|
+
|
18
42
|
e.preventDefault()
|
19
|
-
|
43
|
+
|
44
|
+
// If modal is open and has a handler, use that
|
45
|
+
if (isModalOpen && currentModalHandler) {
|
46
|
+
console.log(`[${handlerId}] Using modal spacebar handler`)
|
47
|
+
currentModalHandler(e)
|
48
|
+
}
|
49
|
+
// Otherwise use global audio control
|
50
|
+
else if (window.toggleAudioPlayback && !isModalOpen) {
|
51
|
+
console.log(`[${handlerId}] Using global audio toggle`)
|
20
52
|
window.toggleAudioPlayback()
|
21
53
|
}
|
22
54
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"root":["./src/app.tsx","./src/api.ts","./src/main.tsx","./src/types.ts","./src/validation.ts","./src/vite-env.d.ts","./src/components/audioplayer.tsx","./src/components/correctionmetrics.tsx","./src/components/detailsmodal.tsx","./src/components/editmodal.tsx","./src/components/fileupload.tsx","./src/components/header.tsx","./src/components/lyricsanalyzer.tsx","./src/components/modeselector.tsx","./src/components/previewvideosection.tsx","./src/components/referenceview.tsx","./src/components/reviewchangesmodal.tsx","./src/components/segmentdetailsmodal.tsx","./src/components/timelineeditor.tsx","./src/components/transcriptionview.tsx","./src/components/wordeditcontrols.tsx","./src/components/shared/constants.ts","./src/components/shared/styles.ts","./src/components/shared/types.ts","./src/components/shared/components/highlightedtext.tsx","./src/components/shared/components/sourceselector.tsx","./src/components/shared/components/word.tsx","./src/components/shared/hooks/usewordclick.ts","./src/components/shared/utils/keyboardhandlers.ts","./src/components/shared/utils/localstorage.ts","./src/components/shared/utils/referencelinecalculator.ts","./src/components/shared/utils/segmentoperations.ts","./src/components/shared/utils/wordutils.ts"],"version":"5.6.3"}
|
1
|
+
{"root":["./src/app.tsx","./src/api.ts","./src/main.tsx","./src/types.ts","./src/validation.ts","./src/vite-env.d.ts","./src/components/audioplayer.tsx","./src/components/correctionmetrics.tsx","./src/components/detailsmodal.tsx","./src/components/editmodal.tsx","./src/components/fileupload.tsx","./src/components/header.tsx","./src/components/lyricsanalyzer.tsx","./src/components/modeselector.tsx","./src/components/previewvideosection.tsx","./src/components/referenceview.tsx","./src/components/reviewchangesmodal.tsx","./src/components/segmentdetailsmodal.tsx","./src/components/timelineeditor.tsx","./src/components/transcriptionview.tsx","./src/components/wordeditcontrols.tsx","./src/components/shared/constants.ts","./src/components/shared/styles.ts","./src/components/shared/types.ts","./src/components/shared/components/highlightedtext.tsx","./src/components/shared/components/sourceselector.tsx","./src/components/shared/components/word.tsx","./src/components/shared/hooks/usewordclick.ts","./src/components/shared/utils/keyboardhandlers.ts","./src/components/shared/utils/localstorage.ts","./src/components/shared/utils/referencelinecalculator.ts","./src/components/shared/utils/segmentoperations.ts","./src/components/shared/utils/wordutils.ts","./src/types/global.d.ts"],"version":"5.6.3"}
|
@@ -63,8 +63,12 @@ class VideoGenerator:
|
|
63
63
|
raise FileNotFoundError(f"Audio file not found: {audio_path}")
|
64
64
|
|
65
65
|
try:
|
66
|
-
# Create a temporary copy of the ASS file with a
|
67
|
-
|
66
|
+
# Create a temporary copy of the ASS file with a unique filename
|
67
|
+
import time
|
68
|
+
|
69
|
+
safe_prefix = "".join(c if c.isalnum() else "_" for c in output_prefix)
|
70
|
+
timestamp = int(time.time() * 1000)
|
71
|
+
temp_ass_path = os.path.join(self.cache_dir, f"temp_subtitles_{safe_prefix}_{timestamp}.ass")
|
68
72
|
import shutil
|
69
73
|
|
70
74
|
shutil.copy2(ass_path, temp_ass_path)
|
@@ -75,13 +79,14 @@ class VideoGenerator:
|
|
75
79
|
self.logger.info(f"Video generated: {output_path}")
|
76
80
|
|
77
81
|
# Clean up temporary file
|
78
|
-
os.
|
82
|
+
if os.path.exists(temp_ass_path):
|
83
|
+
os.remove(temp_ass_path)
|
79
84
|
return output_path
|
80
85
|
|
81
86
|
except Exception as e:
|
82
87
|
self.logger.error(f"Failed to generate video: {str(e)}")
|
83
88
|
# Clean up temporary file in case of error
|
84
|
-
if "temp_ass_path" in locals():
|
89
|
+
if "temp_ass_path" in locals() and os.path.exists(temp_ass_path):
|
85
90
|
try:
|
86
91
|
os.remove(temp_ass_path)
|
87
92
|
except:
|
@@ -109,8 +114,12 @@ class VideoGenerator:
|
|
109
114
|
raise FileNotFoundError(f"Audio file not found: {audio_path}")
|
110
115
|
|
111
116
|
try:
|
112
|
-
# Create a temporary copy of the ASS file with a
|
113
|
-
|
117
|
+
# Create a temporary copy of the ASS file with a unique filename
|
118
|
+
import time
|
119
|
+
|
120
|
+
safe_prefix = "".join(c if c.isalnum() else "_" for c in output_prefix)
|
121
|
+
timestamp = int(time.time() * 1000)
|
122
|
+
temp_ass_path = os.path.join(self.cache_dir, f"temp_preview_subtitles_{safe_prefix}_{timestamp}.ass")
|
114
123
|
import shutil
|
115
124
|
|
116
125
|
shutil.copy2(ass_path, temp_ass_path)
|
@@ -121,13 +130,14 @@ class VideoGenerator:
|
|
121
130
|
self.logger.info(f"Preview video generated: {output_path}")
|
122
131
|
|
123
132
|
# Clean up temporary file
|
124
|
-
os.
|
133
|
+
if os.path.exists(temp_ass_path):
|
134
|
+
os.remove(temp_ass_path)
|
125
135
|
return output_path
|
126
136
|
|
127
137
|
except Exception as e:
|
128
138
|
self.logger.error(f"Failed to generate preview video: {str(e)}")
|
129
139
|
# Clean up temporary file in case of error
|
130
|
-
if "temp_ass_path" in locals():
|
140
|
+
if "temp_ass_path" in locals() and os.path.exists(temp_ass_path):
|
131
141
|
try:
|
132
142
|
os.remove(temp_ass_path)
|
133
143
|
except:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: lyrics-transcriber
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.43.1
|
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
|
@@ -25,9 +25,9 @@ lyrics_transcriber/frontend/.yarn/install-state.gz,sha256=ZEa-uz3UAehu8JjLeLqwdf
|
|
25
25
|
lyrics_transcriber/frontend/.yarn/releases/yarn-4.6.0.cjs,sha256=6vHuq8FkpEygtl29zNVK9-VfP_kpSz_zGNWq7JLysgs,2764946
|
26
26
|
lyrics_transcriber/frontend/.yarnrc.yml,sha256=RIUAbDBlfdQoS1V4MjkeMHzQqi4cvIWSzY5T3gEB_1I,66
|
27
27
|
lyrics_transcriber/frontend/README.md,sha256=-D6CAfKTT7Y0V3EjlZ2fMy7fyctFQ4x2TJ9vx6xtccM,1607
|
28
|
-
lyrics_transcriber/frontend/dist/assets/index-
|
29
|
-
lyrics_transcriber/frontend/dist/assets/index-
|
30
|
-
lyrics_transcriber/frontend/dist/index.html,sha256=
|
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
|
31
31
|
lyrics_transcriber/frontend/dist/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
|
32
32
|
lyrics_transcriber/frontend/eslint.config.js,sha256=3ADH23ANA4NNBKFy6nCVk65e8bx1DrVd_FIaYNnhuqA,734
|
33
33
|
lyrics_transcriber/frontend/index.html,sha256=KfqJVONzpUyPIwV73nZRiCWlwLnFWeB3z0vzxDPNudU,376
|
@@ -35,22 +35,22 @@ lyrics_transcriber/frontend/package.json,sha256=kQ0_UiU4xp8wnu-hbTBTAxUB6S_cQMzH
|
|
35
35
|
lyrics_transcriber/frontend/public/vite.svg,sha256=SnSK_UQ5GLsWWRyDTEAdrjPoeGGrXbrQgRw6O0qSFPs,1497
|
36
36
|
lyrics_transcriber/frontend/src/App.tsx,sha256=GzXtocjM-4mJSjMomnsbDiQjqtWx9ShbyroGy9SLJts,6588
|
37
37
|
lyrics_transcriber/frontend/src/api.ts,sha256=HlzMA5LhwUn-0VAZYDH9QYCm1NDcy0mNcy_E1AWZ_AI,5596
|
38
|
-
lyrics_transcriber/frontend/src/components/AudioPlayer.tsx,sha256=
|
38
|
+
lyrics_transcriber/frontend/src/components/AudioPlayer.tsx,sha256=Q_nvNRaBNY46GwCLXgFnxypsBz2zcwkpi7c8VZJFO88,5112
|
39
39
|
lyrics_transcriber/frontend/src/components/CorrectionMetrics.tsx,sha256=mKCvGuEWXOXw24djUqZlq4dfhFal7tpA6BQX9QzZ-OI,5730
|
40
40
|
lyrics_transcriber/frontend/src/components/DetailsModal.tsx,sha256=JI-IngUICmRU9GL_IWlIYzpf__c78XskDDJWQodTt8U,10999
|
41
|
-
lyrics_transcriber/frontend/src/components/EditModal.tsx,sha256=
|
41
|
+
lyrics_transcriber/frontend/src/components/EditModal.tsx,sha256=EOF8PPNkNqx6LuvKuk8exTLk9XJ0lATyijVYTqjDwro,23770
|
42
42
|
lyrics_transcriber/frontend/src/components/FileUpload.tsx,sha256=fwn2rMWtMLPTZLREMb3ps4prSf9nzxGwnjmeC6KYsJA,2383
|
43
|
-
lyrics_transcriber/frontend/src/components/Header.tsx,sha256=
|
44
|
-
lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx,sha256=
|
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
|
45
45
|
lyrics_transcriber/frontend/src/components/ModeSelector.tsx,sha256=bHtjmj5DQx2CwkdL5A4fgLP3XEifu-QecPsMZVdMTmU,1422
|
46
|
-
lyrics_transcriber/frontend/src/components/PreviewVideoSection.tsx,sha256=
|
47
|
-
lyrics_transcriber/frontend/src/components/ReferenceView.tsx,sha256=
|
48
|
-
lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx,sha256=
|
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
|
49
49
|
lyrics_transcriber/frontend/src/components/SegmentDetailsModal.tsx,sha256=6ME02FkFwCgDAxW49yW260N4vbr80eAJ332Ex811GOo,1643
|
50
50
|
lyrics_transcriber/frontend/src/components/TimelineEditor.tsx,sha256=slSBZPen_NecSogavs3sKh66y8UrPjqA6ssGd9efKDI,12275
|
51
|
-
lyrics_transcriber/frontend/src/components/TranscriptionView.tsx,sha256=
|
51
|
+
lyrics_transcriber/frontend/src/components/TranscriptionView.tsx,sha256=H_5Jivlyvd39KCvQEtUwHaRqh07fDA-EHvIlNcaabRA,6551
|
52
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=
|
53
|
+
lyrics_transcriber/frontend/src/components/shared/components/HighlightedText.tsx,sha256=BMLuBo5tLN3UZASexuJAYPVnTrpXHCm1pqAh9Uq4pKQ,14286
|
54
54
|
lyrics_transcriber/frontend/src/components/shared/components/SourceSelector.tsx,sha256=i6qIEx7mv6lE111oSeonarlOvb97Z1cthvqq7xM2Lig,853
|
55
55
|
lyrics_transcriber/frontend/src/components/shared/components/Word.tsx,sha256=XfshAUV6Dvnp_ktaIaSQWYNA3lrbgq-TbQt2a0eqF0A,1333
|
56
56
|
lyrics_transcriber/frontend/src/components/shared/constants.ts,sha256=25q1qjCwzV-hR72wSb_rJSe4dVuQ0l-piLMoZSpynGQ,488
|
@@ -58,12 +58,13 @@ lyrics_transcriber/frontend/src/components/shared/hooks/useWordClick.ts,sha256=a
|
|
58
58
|
lyrics_transcriber/frontend/src/components/shared/styles.ts,sha256=J1jCSuRqpk1mOFYAqJudhxeozH-q1bi-dsOibLukBJU,411
|
59
59
|
lyrics_transcriber/frontend/src/components/shared/types.js,sha256=1DqoH1vIn6o1ng-XyBS6JRVVkf8Hj7ub_UD4x8loMjA,77
|
60
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=
|
61
|
+
lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts,sha256=zO4bk2iuBlkrpbghz03hg1YX-zBOFtY5IbLEp9LBjgY,2389
|
62
62
|
lyrics_transcriber/frontend/src/components/shared/utils/localStorage.ts,sha256=jpLT65Rk_toaB-8X2lRGyYZ9EoMQDI45GviUT7N9Bp0,3240
|
63
63
|
lyrics_transcriber/frontend/src/components/shared/utils/referenceLineCalculator.ts,sha256=TJ2oHDitFFVxm83eFEhdlwvhx--mIt3054YbET2RiXs,2575
|
64
64
|
lyrics_transcriber/frontend/src/components/shared/utils/segmentOperations.ts,sha256=QGxjh_uQ0vciAd6YVo5RQRXmFakiUQZb5X95oCzNAwo,3782
|
65
65
|
lyrics_transcriber/frontend/src/components/shared/utils/wordUtils.ts,sha256=bZbsvEgY3JoI15l4SdB51tHE33OkUxDH-WSG8doLcCQ,721
|
66
66
|
lyrics_transcriber/frontend/src/main.tsx,sha256=gKJOIr1laz68BhgxWz0JXb1LNacA2oxfbypxW_B1USo,139
|
67
|
+
lyrics_transcriber/frontend/src/types/global.d.ts,sha256=NvltPF-n4_1oRLfihD3oHXbdT7txMC8B6fhCgvNY-jk,191
|
67
68
|
lyrics_transcriber/frontend/src/types.js,sha256=1DqoH1vIn6o1ng-XyBS6JRVVkf8Hj7ub_UD4x8loMjA,77
|
68
69
|
lyrics_transcriber/frontend/src/types.ts,sha256=WOxPW6QDB-KOfaSXq9gOD_kg_Yd9hRYG2Go0ltSbnDQ,3516
|
69
70
|
lyrics_transcriber/frontend/src/validation.ts,sha256=Pv_FtySk6q3a1z_W0-ItxiEX8OIYkgCDwXKGUds4Lx4,4275
|
@@ -71,7 +72,7 @@ lyrics_transcriber/frontend/src/vite-env.d.ts,sha256=ZZlpNvuwQpFfe3SiAPzd5-QQ8yp
|
|
71
72
|
lyrics_transcriber/frontend/tsconfig.app.json,sha256=7aUBVcaBqEtmtfQXsbwsgBxSUng06xzQi5t4QCgWQ3E,665
|
72
73
|
lyrics_transcriber/frontend/tsconfig.json,sha256=AOS5v1AsNPL3wGc8bt58Ybh8HHpbYrlK91q0KIzaSgs,627
|
73
74
|
lyrics_transcriber/frontend/tsconfig.node.json,sha256=oMBhK5xufBrVE7SkbADRxA3pxm8_L9m5YwtCOZSafsc,536
|
74
|
-
lyrics_transcriber/frontend/tsconfig.tsbuildinfo,sha256=
|
75
|
+
lyrics_transcriber/frontend/tsconfig.tsbuildinfo,sha256=tcmXkmOCO1Pfep-CwJwEVs0okthy4DQSIn91aQ15qdU,1304
|
75
76
|
lyrics_transcriber/frontend/vite.config.d.ts,sha256=S5bdGf0pSdKM6A6RNBKwAm3EIeW_bDHYfHtesRtXU7Q,76
|
76
77
|
lyrics_transcriber/frontend/vite.config.js,sha256=P4GuPgRZzwEWPQZpyujUe7eA3mjPoFAe2CgE5sQAXg8,232
|
77
78
|
lyrics_transcriber/frontend/vite.config.ts,sha256=8FdW0dN8zDFqfhQSxX5h7sIu72X2piLYlp_TZYRQvBQ,216
|
@@ -129,7 +130,7 @@ lyrics_transcriber/output/lyrics_file.py,sha256=_KQyQjCOMIwQdQ0115uEAUIjQWTRmShk
|
|
129
130
|
lyrics_transcriber/output/plain_text.py,sha256=XARaWcy6MeQeQCUoz0PV_bHoBw5dba-u79bjS7XucnE,3867
|
130
131
|
lyrics_transcriber/output/segment_resizer.py,sha256=R2Z15F7aa7DQwgAf0EMNIQ-aYQhjs0JbhqoK_bW5hCA,17453
|
131
132
|
lyrics_transcriber/output/subtitles.py,sha256=yQCR7YO3aitKnGRjfAtSwsdi6byfpEZgnCumJO16M2E,19085
|
132
|
-
lyrics_transcriber/output/video.py,sha256=
|
133
|
+
lyrics_transcriber/output/video.py,sha256=L_KB33YM4X-EQBRcLIPO4ZqlNEcVwqTWKjaJZVtkN-4,13751
|
133
134
|
lyrics_transcriber/review/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
134
135
|
lyrics_transcriber/review/server.py,sha256=6_eVJfCSuP5bHvoKyIfMwnTeByWb8YkaMOcutBoF5P0,15380
|
135
136
|
lyrics_transcriber/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -139,8 +140,8 @@ lyrics_transcriber/transcribers/base_transcriber.py,sha256=T3m4ZCwZ9Bpv6Jvb2hNcn
|
|
139
140
|
lyrics_transcriber/transcribers/whisper.py,sha256=YcCB1ic9H6zL1GS0jD0emu8-qlcH0QVEjjjYB4aLlIQ,13260
|
140
141
|
lyrics_transcriber/types.py,sha256=d73cDstrEI_tVgngDYYYFwjZNs6OVBuAB_QDkga7dWA,19841
|
141
142
|
lyrics_transcriber/utils/word_utils.py,sha256=-cMGpj9UV4F6IsoDKAV2i1aiqSO8eI91HMAm_igtVMk,958
|
142
|
-
lyrics_transcriber-0.
|
143
|
-
lyrics_transcriber-0.
|
144
|
-
lyrics_transcriber-0.
|
145
|
-
lyrics_transcriber-0.
|
146
|
-
lyrics_transcriber-0.
|
143
|
+
lyrics_transcriber-0.43.1.dist-info/LICENSE,sha256=BiPihPDxhxIPEx6yAxVfAljD5Bhm_XG2teCbPEj_m0Y,1069
|
144
|
+
lyrics_transcriber-0.43.1.dist-info/METADATA,sha256=lHgcbB3j-X8-R7MVc6sbUADN3U-ND49WefleCSIjAlM,5973
|
145
|
+
lyrics_transcriber-0.43.1.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
146
|
+
lyrics_transcriber-0.43.1.dist-info/entry_points.txt,sha256=kcp-bSFkCACAEA0t166Kek0HpaJUXRo5SlF5tVrqNBU,216
|
147
|
+
lyrics_transcriber-0.43.1.dist-info/RECORD,,
|