lyrics-transcriber 0.49.3__py3-none-any.whl → 0.52.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.
- lyrics_transcriber/cli/cli_main.py +5 -1
- lyrics_transcriber/frontend/dist/assets/{index-DSQidWB1.js → index-C5ftSgQo.js} +633 -60
- lyrics_transcriber/frontend/dist/assets/index-C5ftSgQo.js.map +1 -0
- lyrics_transcriber/frontend/dist/index.html +1 -1
- lyrics_transcriber/frontend/src/components/Header.tsx +31 -0
- lyrics_transcriber/frontend/src/components/LyricsAnalyzer.tsx +125 -18
- lyrics_transcriber/frontend/src/components/PreviewVideoSection.tsx +26 -3
- lyrics_transcriber/frontend/src/components/ReviewChangesModal.tsx +16 -1
- lyrics_transcriber/frontend/src/components/TimingOffsetModal.tsx +131 -0
- lyrics_transcriber/frontend/src/components/shared/utils/keyboardHandlers.ts +8 -0
- lyrics_transcriber/frontend/src/components/shared/utils/timingUtils.ts +110 -0
- lyrics_transcriber/frontend/tsconfig.tsbuildinfo +1 -1
- lyrics_transcriber/output/cdg.py +10 -0
- lyrics_transcriber/transcribers/audioshake.py +1 -1
- {lyrics_transcriber-0.49.3.dist-info → lyrics_transcriber-0.52.0.dist-info}/LICENSE +1 -1
- {lyrics_transcriber-0.49.3.dist-info → lyrics_transcriber-0.52.0.dist-info}/METADATA +10 -9
- {lyrics_transcriber-0.49.3.dist-info → lyrics_transcriber-0.52.0.dist-info}/RECORD +19 -17
- {lyrics_transcriber-0.49.3.dist-info → lyrics_transcriber-0.52.0.dist-info}/WHEEL +1 -1
- lyrics_transcriber/frontend/dist/assets/index-DSQidWB1.js.map +0 -1
- {lyrics_transcriber-0.49.3.dist-info → lyrics_transcriber-0.52.0.dist-info}/entry_points.txt +0 -0
@@ -1,4 +1,8 @@
|
|
1
|
-
#!/usr/bin/env
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
import warnings
|
3
|
+
# Suppress SyntaxWarnings from third-party packages that haven't updated for Python 3.13
|
4
|
+
warnings.filterwarnings("ignore", category=SyntaxWarning)
|
5
|
+
|
2
6
|
import argparse
|
3
7
|
import logging
|
4
8
|
import os
|