s2t 0.1.6.post1.dev0__tar.gz → 0.1.7__tar.gz

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 (30) hide show
  1. {s2t-0.1.6.post1.dev0/src/s2t.egg-info → s2t-0.1.7}/PKG-INFO +1 -1
  2. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/cli.py +3 -3
  3. {s2t-0.1.6.post1.dev0 → s2t-0.1.7/src/s2t.egg-info}/PKG-INFO +1 -1
  4. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/.gitignore +0 -0
  5. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/.pre-commit-config.yaml +0 -0
  6. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/AGENTS.md +0 -0
  7. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/CONTRIBUTING.md +0 -0
  8. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/MANIFEST.in +0 -0
  9. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/Makefile +0 -0
  10. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/README.md +0 -0
  11. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/docs/RELEASING.md +0 -0
  12. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/docs/SESSION_STATE.md +0 -0
  13. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/pyproject.toml +0 -0
  14. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/scripts/bench_transcribe.py +0 -0
  15. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/setup.cfg +0 -0
  16. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/__init__.py +0 -0
  17. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/config.py +0 -0
  18. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/outputs.py +0 -0
  19. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/py.typed +0 -0
  20. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/recorder.py +0 -0
  21. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/translator/__init__.py +0 -0
  22. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/translator/argos_backend.py +0 -0
  23. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/types.py +0 -0
  24. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/utils.py +0 -0
  25. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/whisper_engine.py +0 -0
  26. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/SOURCES.txt +0 -0
  27. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/dependency_links.txt +0 -0
  28. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/entry_points.txt +0 -0
  29. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/requires.txt +0 -0
  30. {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: s2t
3
- Version: 0.1.6.post1.dev0
3
+ Version: 0.1.7
4
4
  Summary: Speech to Text (s2t): Record audio, run Whisper, export formats, and copy transcript to clipboard.
5
5
  Author: Maintainers
6
6
  License-Expression: LicenseRef-Proprietary
@@ -456,9 +456,9 @@ def main(argv: list[str] | None = None) -> int:
456
456
  help="Minimum duration a chunk must reach before auto-split can trigger",
457
457
  )
458
458
  parser.add_argument(
459
- "--native-segmentation",
459
+ "--chunk-segmentation",
460
460
  action="store_true",
461
- help="Use Whisper's native segmentation inside chunks (default collapses each chunk to a single phrase)",
461
+ help="Disable Whisper's native segmentation: emit exactly one segment per recorded chunk",
462
462
  )
463
463
  parser.add_argument(
464
464
  "-p",
@@ -506,7 +506,7 @@ def main(argv: list[str] | None = None) -> int:
506
506
  lang=args.lang,
507
507
  translate=args.translate,
508
508
  translate_to=(args.translate_to or []),
509
- native_segmentation=getattr(args, "native_segmentation", False),
509
+ native_segmentation=(not getattr(args, "chunk_segmentation", False)),
510
510
  verbose=args.verbose,
511
511
  edit=args.edit,
512
512
  debounce_ms=getattr(args, "debounce_ms", 0),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: s2t
3
- Version: 0.1.6.post1.dev0
3
+ Version: 0.1.7
4
4
  Summary: Speech to Text (s2t): Record audio, run Whisper, export formats, and copy transcript to clipboard.
5
5
  Author: Maintainers
6
6
  License-Expression: LicenseRef-Proprietary
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes