Skip to content

Commit d9d7189

Browse files
committedFeb 27, 2024
audio #:stream don't allow string literal
1 parent c73a9b9 commit d9d7189

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed
 

‎auto_editor/help.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,19 @@
2525
If timebase is 30, 400 ticks to 800 means 13.33 to 26.66 seconds
2626
""".strip(),
2727
"--edit-based-on": """
28-
Evalutes a palet expression that returns a bool-array?. The array is then used for
28+
Evaluates a palet expression that returns a bool-array?. The array is then used for
2929
editing.
3030
3131
Editing Methods:
3232
- audio ; Audio silence/loudness detection
3333
- threshold threshold? : 4%
34-
- stream (or/c nat? 'all "all") : 0
34+
- stream (or/c nat? 'all) : 'all
3535
- mincut nat? : 6
3636
- minclip nat? : 3
3737
38+
; mincut is more significant, there it has a larger default value.
39+
; minclip gets applied first, then mincut
40+
3841
- motion ; Motion detection specialized for noisy real-life videos
3942
- threshold threshold? : 2%
4043
- stream nat? : 0
@@ -150,10 +153,6 @@
150153
""".strip(),
151154
"--video-bitrate": """
152155
`--video-bitrate` sets the target bitrate for the video encoder. It accepts the same format as `--audio-bitrate` and the special `unset` value is allowed.
153-
""".strip(),
154-
"--silent-threshold": """
155-
Silent threshold is a percentage where 0% represents absolute silence and 100% represents the highest volume in the media file.
156-
Setting the threshold to `0%` will cut only out areas where area is absolutely silence.
157156
""".strip(),
158157
"--margin": """
159158
Default value: 0.2s,0.2s

‎auto_editor/lang/palet.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1470,7 +1470,7 @@ def edit_all() -> np.ndarray:
14701470

14711471

14721472
def edit_audio(
1473-
threshold: float = 0.04, stream: object = "all", mincut: int = 6, minclip: int = 3
1473+
threshold: float = 0.04, stream: object = Sym("all"), mincut: int = 6, minclip: int = 3
14741474
) -> np.ndarray:
14751475
if "@levels" not in env or "@filesetup" not in env:
14761476
raise MyError("Can't use `audio` if there's no input media")
@@ -1480,7 +1480,7 @@ def edit_audio(
14801480
strict = env["@filesetup"].strict
14811481

14821482
stream_data: NDArray[np.bool_] | None = None
1483-
if stream == "all" or stream == Sym("all"):
1483+
if stream == Sym("all"):
14841484
stream_range = range(0, len(src.audios))
14851485
else:
14861486
assert isinstance(stream, int)
@@ -1502,7 +1502,7 @@ def edit_audio(
15021502

15031503
return stream_data
15041504

1505-
stream = 0 if stream == "all" or stream == Sym("all") else stream
1505+
stream = 0 if stream == Sym("all") else stream
15061506
return raise_(f"audio stream '{stream}' does not exist") if strict else levels.all()
15071507

15081508

@@ -1615,7 +1615,7 @@ def my_eval(env: Env, node: object) -> Any:
16151615
"none": Proc("none", edit_none, (0, 0)),
16161616
"all/e": Proc("all/e", edit_all, (0, 0)),
16171617
"audio": Proc("audio", edit_audio, (0, 4),
1618-
is_threshold, orc(is_nat, Sym("all"), "all"), is_nat,
1618+
is_threshold, orc(is_nat, Sym("all")), is_nat,
16191619
{"threshold": 0, "stream": 1, "minclip": 2, "mincut": 2}
16201620
),
16211621
"motion": Proc("motion", edit_motion, (0, 4),

0 commit comments

Comments
 (0)