sonilo-cli 0.14.2__tar.gz → 0.14.3__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.
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/PKG-INFO +4 -4
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/README.md +3 -3
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/pyproject.toml +1 -1
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/src/sonilo_cli/__init__.py +1 -1
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/src/sonilo_cli/__main__.py +3 -2
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/.gitignore +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/LICENSE +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/src/sonilo_cli/credentials.py +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/src/sonilo_cli/login.py +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/tests/__init__.py +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/tests/conftest.py +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/tests/test_cli.py +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/tests/test_context7.py +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/tests/test_credentials.py +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/tests/test_login.py +0 -0
- {sonilo_cli-0.14.2 → sonilo_cli-0.14.3}/tests/test_smoke.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: sonilo-cli
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.3
|
|
4
4
|
Summary: Command-line interface for the Sonilo API: generate music and sound effects from text or video
|
|
5
5
|
Project-URL: Repository, https://github.com/sonilo-ai/sonilo-python
|
|
6
6
|
Author: Sonilo AI
|
|
@@ -289,9 +289,9 @@ command that produces no media file — nothing is generated:
|
|
|
289
289
|
# writes dubbed.es.mp4 and dubbed.fr.mp4
|
|
290
290
|
|
|
291
291
|
- `--languages` is comma-separated; omit it to use the server default `zh_cn,es,fr`. Supported
|
|
292
|
-
codes: `en, zh_cn, ja, ko, pt, pt_br, es, es_419, de, fr, it, ru, th
|
|
293
|
-
(`pt_br` is Brazilian Portuguese and `es_419` Latin American
|
|
294
|
-
`pt` and `es` stay unqualified).
|
|
292
|
+
codes: `en, zh_cn, ja, ko, pt, pt_br, es, es_419, de, fr, it, ru, th, ar,
|
|
293
|
+
tr, vi, id` (`pt_br` is Brazilian Portuguese and `es_419` Latin American
|
|
294
|
+
Spanish; plain `pt` and `es` stay unqualified, as does `ar`).
|
|
295
295
|
- Source videos may be at most 300 seconds long.
|
|
296
296
|
- `--output` is a filename template, not a single destination: a dubbing task returns one video
|
|
297
297
|
per language, so `--output clip.mp4` writes `clip.es.mp4`, `clip.fr.mp4`, etc.
|
|
@@ -273,9 +273,9 @@ command that produces no media file — nothing is generated:
|
|
|
273
273
|
# writes dubbed.es.mp4 and dubbed.fr.mp4
|
|
274
274
|
|
|
275
275
|
- `--languages` is comma-separated; omit it to use the server default `zh_cn,es,fr`. Supported
|
|
276
|
-
codes: `en, zh_cn, ja, ko, pt, pt_br, es, es_419, de, fr, it, ru, th
|
|
277
|
-
(`pt_br` is Brazilian Portuguese and `es_419` Latin American
|
|
278
|
-
`pt` and `es` stay unqualified).
|
|
276
|
+
codes: `en, zh_cn, ja, ko, pt, pt_br, es, es_419, de, fr, it, ru, th, ar,
|
|
277
|
+
tr, vi, id` (`pt_br` is Brazilian Portuguese and `es_419` Latin American
|
|
278
|
+
Spanish; plain `pt` and `es` stay unqualified, as does `ar`).
|
|
279
279
|
- Source videos may be at most 300 seconds long.
|
|
280
280
|
- `--output` is a filename template, not a single destination: a dubbing task returns one video
|
|
281
281
|
per language, so `--output clip.mp4` writes `clip.es.mp4`, `clip.fr.mp4`, etc.
|
|
@@ -1006,8 +1006,9 @@ def build_parser() -> argparse.ArgumentParser:
|
|
|
1006
1006
|
"--languages", default=None,
|
|
1007
1007
|
help="Comma-separated target languages. Default: zh_cn,es,fr. "
|
|
1008
1008
|
"Supported: en, zh_cn, ja, ko, pt, pt_br, es, es_419, de, fr, "
|
|
1009
|
-
"it, ru, th. pt_br is Brazilian Portuguese and
|
|
1010
|
-
"American Spanish; plain pt and es stay
|
|
1009
|
+
"it, ru, th, ar, tr, vi, id. pt_br is Brazilian Portuguese and "
|
|
1010
|
+
"es_419 Latin American Spanish; plain pt and es stay "
|
|
1011
|
+
"unqualified, as does ar.",
|
|
1011
1012
|
)
|
|
1012
1013
|
p_dub.add_argument(
|
|
1013
1014
|
"--output", default=None,
|
|
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
|