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.
- {s2t-0.1.6.post1.dev0/src/s2t.egg-info → s2t-0.1.7}/PKG-INFO +1 -1
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/cli.py +3 -3
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7/src/s2t.egg-info}/PKG-INFO +1 -1
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/.gitignore +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/.pre-commit-config.yaml +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/AGENTS.md +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/CONTRIBUTING.md +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/MANIFEST.in +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/Makefile +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/README.md +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/docs/RELEASING.md +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/docs/SESSION_STATE.md +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/pyproject.toml +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/scripts/bench_transcribe.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/setup.cfg +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/__init__.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/config.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/outputs.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/py.typed +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/recorder.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/translator/__init__.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/translator/argos_backend.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/types.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/utils.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t/whisper_engine.py +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/SOURCES.txt +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/dependency_links.txt +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/entry_points.txt +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/requires.txt +0 -0
- {s2t-0.1.6.post1.dev0 → s2t-0.1.7}/src/s2t.egg-info/top_level.txt +0 -0
@@ -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
|
-
"--
|
459
|
+
"--chunk-segmentation",
|
460
460
|
action="store_true",
|
461
|
-
help="
|
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, "
|
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),
|
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
|
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
|