mirror of
https://github.com/onyx-and-iris/vban-cli.git
synced 2026-04-16 02:23:30 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4dd01a0e99 | |||
| cd5b8b0636 | |||
| 77e21617af | |||
| 5f448fa48e |
22
README.md
22
README.md
@@ -63,7 +63,7 @@ vban-cli strip 2 gain -18.7
|
|||||||
|
|
||||||
see `vban-cli strip --help` for more info.
|
see `vban-cli strip --help` for more info.
|
||||||
|
|
||||||
##### Strip EQ
|
#### Strip EQ
|
||||||
|
|
||||||
*Usage: vban-cli strip \<index> eq COMMAND [OPTIONS]*
|
*Usage: vban-cli strip \<index> eq COMMAND [OPTIONS]*
|
||||||
|
|
||||||
@@ -75,7 +75,7 @@ vban-cli strip 0 eq on true
|
|||||||
|
|
||||||
see `vban-cli strip eq --help` for more info.
|
see `vban-cli strip eq --help` for more info.
|
||||||
|
|
||||||
##### Strip EQ Cell Command
|
#### Strip EQ Cell Command
|
||||||
|
|
||||||
*Usage: vban-cli strip \<index> eq cell \<band> COMMAND [ARGS]*
|
*Usage: vban-cli strip \<index> eq cell \<band> COMMAND [ARGS]*
|
||||||
|
|
||||||
@@ -91,7 +91,7 @@ vban-cli strip 4 eq cell 5 type 5
|
|||||||
|
|
||||||
see `vban-cli strip eq cell --help` for more info.
|
see `vban-cli strip eq cell --help` for more info.
|
||||||
|
|
||||||
##### Strip Comp Command
|
#### Strip Comp Command
|
||||||
|
|
||||||
*Usage: vban-cli strip \<index> comp COMMAND [OPTIONS]*
|
*Usage: vban-cli strip \<index> comp COMMAND [OPTIONS]*
|
||||||
|
|
||||||
@@ -105,7 +105,7 @@ vban-cli strip 3 comp auto-makeup true
|
|||||||
|
|
||||||
see `vban-cli strip comp --help` for more info.
|
see `vban-cli strip comp --help` for more info.
|
||||||
|
|
||||||
##### Strip Gate Command
|
#### Strip Gate Command
|
||||||
|
|
||||||
*Usage: vban-cli strip \<index> gate COMMAND [OPTIONS]*
|
*Usage: vban-cli strip \<index> gate COMMAND [OPTIONS]*
|
||||||
|
|
||||||
@@ -119,7 +119,19 @@ vban-cli strip 5 gate hold 2088.7
|
|||||||
|
|
||||||
see `vban-cli strip comp --help` for more info.
|
see `vban-cli strip comp --help` for more info.
|
||||||
|
|
||||||
##### Strip Gainlayer Command
|
#### Strip Denoiser Command
|
||||||
|
|
||||||
|
*Usage: vban-cli strip \<index> denoiser COMMAND [OPTIONS]*
|
||||||
|
|
||||||
|
examples:
|
||||||
|
|
||||||
|
```console
|
||||||
|
vban-cli strip 4 denoiser knob 3.6
|
||||||
|
```
|
||||||
|
|
||||||
|
see `vban-cli strip denoiser --help` for more info.
|
||||||
|
|
||||||
|
#### Strip Gainlayer Command
|
||||||
|
|
||||||
*Usage: vban-cli strip \<index> gainlayer \<gainlayer_index> COMMAND [OPTIONS] [ARGS]*
|
*Usage: vban-cli strip \<index> gainlayer \<gainlayer_index> COMMAND [OPTIONS] [ARGS]*
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "vban-cli"
|
name = "vban-cli"
|
||||||
version = "0.12.1"
|
version = "0.12.2"
|
||||||
description = "A command-line interface for Voicemeeter leveraging VBAN."
|
description = "A command-line interface for Voicemeeter leveraging VBAN."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = { text = "LICENSE" }
|
license = { text = "LICENSE" }
|
||||||
requires-python = ">=3.13"
|
requires-python = ">=3.13"
|
||||||
dependencies = ["cyclopts>=4.6.0", "loguru>=0.7.3", "vban-cmd>=2.9.4"]
|
dependencies = ["cyclopts>=4.6.0", "loguru>=0.7.3", "vban-cmd>=2.9.6"]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
|
|||||||
@@ -5,7 +5,11 @@ from cyclopts import App, Parameter
|
|||||||
from .context import Context
|
from .context import Context
|
||||||
from .help import BaseHelpFormatter
|
from .help import BaseHelpFormatter
|
||||||
|
|
||||||
app = App(name='command', help_formatter=BaseHelpFormatter())
|
app = App(
|
||||||
|
name='command',
|
||||||
|
help='Execute commands that perform actions',
|
||||||
|
help_formatter=BaseHelpFormatter(),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@app.command(name='show')
|
@app.command(name='show')
|
||||||
|
|||||||
@@ -5,7 +5,11 @@ from cyclopts import App, Argument, Parameter
|
|||||||
from .context import Context
|
from .context import Context
|
||||||
from .help import StripHelpFormatter
|
from .help import StripHelpFormatter
|
||||||
|
|
||||||
app = App(name='comp', help_formatter=StripHelpFormatter())
|
app = App(
|
||||||
|
name='comp',
|
||||||
|
help='Control the compressor settings',
|
||||||
|
help_formatter=StripHelpFormatter(),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@app.command(name='knob')
|
@app.command(name='knob')
|
||||||
|
|||||||
@@ -5,7 +5,11 @@ from cyclopts import App, Argument, Parameter
|
|||||||
from .context import Context
|
from .context import Context
|
||||||
from .help import StripHelpFormatter
|
from .help import StripHelpFormatter
|
||||||
|
|
||||||
app = App(name='denoiser', help_formatter=StripHelpFormatter())
|
app = App(
|
||||||
|
name='denoiser',
|
||||||
|
help='Control the denoiser settings',
|
||||||
|
help_formatter=StripHelpFormatter(),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@app.command(name='knob')
|
@app.command(name='knob')
|
||||||
|
|||||||
@@ -5,7 +5,11 @@ from cyclopts import App, Argument, Parameter
|
|||||||
from .context import Context
|
from .context import Context
|
||||||
from .help import StripHelpFormatter
|
from .help import StripHelpFormatter
|
||||||
|
|
||||||
app = App(name='gate', help_formatter=StripHelpFormatter())
|
app = App(
|
||||||
|
name='gate',
|
||||||
|
help='Control the gate settings',
|
||||||
|
help_formatter=StripHelpFormatter(),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@app.command(name='knob')
|
@app.command(name='knob')
|
||||||
|
|||||||
@@ -7,7 +7,11 @@ from . import validation
|
|||||||
from .context import Context
|
from .context import Context
|
||||||
from .help import BaseHelpFormatter
|
from .help import BaseHelpFormatter
|
||||||
|
|
||||||
app = App(name='recorder', help_formatter=BaseHelpFormatter())
|
app = App(
|
||||||
|
name='recorder',
|
||||||
|
help='Control the recorder playback and recording',
|
||||||
|
help_formatter=BaseHelpFormatter(),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@app.command(name='play')
|
@app.command(name='play')
|
||||||
|
|||||||
4
uv.lock
generated
4
uv.lock
generated
@@ -124,7 +124,7 @@ wheels = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "vban-cli"
|
name = "vban-cli"
|
||||||
version = "0.12.1"
|
version = "0.12.2"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "cyclopts" },
|
{ name = "cyclopts" },
|
||||||
@@ -141,7 +141,7 @@ requires-dist = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "vban-cmd"
|
name = "vban-cmd"
|
||||||
version = "2.9.4"
|
version = "2.9.6"
|
||||||
source = { editable = "../vban-cmd-python" }
|
source = { editable = "../vban-cmd-python" }
|
||||||
|
|
||||||
[package.metadata]
|
[package.metadata]
|
||||||
|
|||||||
Reference in New Issue
Block a user