karaoke-gen 0.75.53__py3-none-any.whl → 0.76.20__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 (36) hide show
  1. karaoke_gen/audio_fetcher.py +218 -0
  2. karaoke_gen/karaoke_gen.py +190 -25
  3. karaoke_gen/lyrics_processor.py +14 -25
  4. karaoke_gen/utils/__init__.py +26 -0
  5. karaoke_gen/utils/cli_args.py +9 -1
  6. karaoke_gen/utils/gen_cli.py +1 -1
  7. karaoke_gen/utils/remote_cli.py +33 -6
  8. {karaoke_gen-0.75.53.dist-info → karaoke_gen-0.76.20.dist-info}/METADATA +2 -2
  9. {karaoke_gen-0.75.53.dist-info → karaoke_gen-0.76.20.dist-info}/RECORD +36 -32
  10. lyrics_transcriber/frontend/index.html +5 -1
  11. lyrics_transcriber/frontend/package-lock.json +4553 -0
  12. lyrics_transcriber/frontend/package.json +3 -0
  13. lyrics_transcriber/frontend/playwright.config.ts +69 -0
  14. lyrics_transcriber/frontend/public/nomad-karaoke-logo.svg +5 -0
  15. lyrics_transcriber/frontend/src/App.tsx +88 -59
  16. lyrics_transcriber/frontend/src/components/AIFeedbackModal.tsx +55 -21
  17. lyrics_transcriber/frontend/src/components/AppHeader.tsx +65 -0
  18. lyrics_transcriber/frontend/src/components/CorrectedWordWithActions.tsx +5 -5
  19. lyrics_transcriber/frontend/src/components/DurationTimelineView.tsx +9 -9
  20. lyrics_transcriber/frontend/src/components/EditModal.tsx +1 -1
  21. lyrics_transcriber/frontend/src/components/EditWordList.tsx +1 -1
  22. lyrics_transcriber/frontend/src/components/Header.tsx +34 -48
  23. lyrics_transcriber/frontend/src/components/LyricsSynchronizer/TimelineCanvas.tsx +22 -21
  24. lyrics_transcriber/frontend/src/components/ReferenceView.tsx +1 -1
  25. lyrics_transcriber/frontend/src/components/TranscriptionView.tsx +1 -1
  26. lyrics_transcriber/frontend/src/components/WordDivider.tsx +3 -3
  27. lyrics_transcriber/frontend/src/components/shared/components/Word.tsx +2 -2
  28. lyrics_transcriber/frontend/src/components/shared/constants.ts +15 -5
  29. lyrics_transcriber/frontend/src/main.tsx +1 -7
  30. lyrics_transcriber/frontend/src/theme.ts +337 -135
  31. lyrics_transcriber/frontend/vite.config.ts +5 -0
  32. lyrics_transcriber/frontend/yarn.lock +1005 -1046
  33. lyrics_transcriber/review/server.py +1 -1
  34. {karaoke_gen-0.75.53.dist-info → karaoke_gen-0.76.20.dist-info}/WHEEL +0 -0
  35. {karaoke_gen-0.75.53.dist-info → karaoke_gen-0.76.20.dist-info}/entry_points.txt +0 -0
  36. {karaoke_gen-0.75.53.dist-info → karaoke_gen-0.76.20.dist-info}/licenses/LICENSE +0 -0
@@ -110,7 +110,7 @@ class ReviewServer:
110
110
  allowed_origins = (
111
111
  [f"http://localhost:{port}" for port in range(3000, 5174)]
112
112
  + [f"http://127.0.0.1:{port}" for port in range(3000, 5174)]
113
- + ["https://lyrics.nomadkaraoke.com"]
113
+ + ["https://gen.nomadkaraoke.com"]
114
114
  )
115
115
 
116
116
  # Also allow custom review UI URL if set