mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2025-04-04 12:43:52 +01:00
Compare commits
5 Commits
8c220eb491
...
e9d1e7ffa2
Author | SHA1 | Date | |
---|---|---|---|
e9d1e7ffa2 | |||
08525b086c | |||
cf88b0a63b | |||
4a397d8d96 | |||
65fb8990c9 |
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "voicemeeter-api"
|
name = "voicemeeter-api"
|
||||||
version = "2.4.5"
|
version = "2.4.7"
|
||||||
description = "A Python wrapper for the Voiceemeter API"
|
description = "A Python wrapper for the Voiceemeter API"
|
||||||
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -33,7 +33,10 @@ levels = "scripts:ex_levels"
|
|||||||
midi = "scripts:ex_midi"
|
midi = "scripts:ex_midi"
|
||||||
obs = "scripts:ex_obs"
|
obs = "scripts:ex_obs"
|
||||||
observer = "scripts:ex_observer"
|
observer = "scripts:ex_observer"
|
||||||
test = "scripts:test"
|
basic = "scripts:test_basic"
|
||||||
|
banana = "scripts:test_banana"
|
||||||
|
potato = "scripts:test_potato"
|
||||||
|
all = "scripts:test_all"
|
||||||
|
|
||||||
[tool.tox]
|
[tool.tox]
|
||||||
legacy_tox_ini = """
|
legacy_tox_ini = """
|
||||||
|
19
scripts.py
19
scripts.py
@ -1,3 +1,4 @@
|
|||||||
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
@ -38,5 +39,21 @@ def ex_observer():
|
|||||||
subprocess.run([sys.executable, str(scriptpath)])
|
subprocess.run([sys.executable, str(scriptpath)])
|
||||||
|
|
||||||
|
|
||||||
def test():
|
def test_basic():
|
||||||
|
os.environ["KIND"] = "basic"
|
||||||
subprocess.run(["tox"])
|
subprocess.run(["tox"])
|
||||||
|
|
||||||
|
|
||||||
|
def test_banana():
|
||||||
|
os.environ["KIND"] = "banana"
|
||||||
|
subprocess.run(["tox"])
|
||||||
|
|
||||||
|
|
||||||
|
def test_potato():
|
||||||
|
os.environ["KIND"] = "potato"
|
||||||
|
subprocess.run(["tox"])
|
||||||
|
|
||||||
|
|
||||||
|
def test_all():
|
||||||
|
steps = [test_basic, test_banana, test_potato]
|
||||||
|
[step() for step in steps]
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import os
|
||||||
import random
|
import random
|
||||||
import sys
|
import sys
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
@ -30,8 +31,10 @@ class Data:
|
|||||||
return (2 * self.phys_in) + (8 * self.virt_in)
|
return (2 * self.phys_in) + (8 * self.virt_in)
|
||||||
|
|
||||||
|
|
||||||
# let's keep things random
|
# get KIND_ID from env var, otherwise set to random
|
||||||
KIND_ID = random.choice(tuple(kind_id.name.lower() for kind_id in KindId))
|
KIND_ID = os.environ.get(
|
||||||
|
"KIND", random.choice(tuple(kind_id.name.lower() for kind_id in KindId))
|
||||||
|
)
|
||||||
vm = voicemeeterlib.api(KIND_ID)
|
vm = voicemeeterlib.api(KIND_ID)
|
||||||
kind = kindmap(KIND_ID)
|
kind = kindmap(KIND_ID)
|
||||||
|
|
||||||
|
@ -25,7 +25,11 @@ Function Get-TimeStamp {
|
|||||||
if ($MyInvocation.InvocationName -ne ".") {
|
if ($MyInvocation.InvocationName -ne ".") {
|
||||||
Invoke-Expression ".\.venv\Scripts\Activate.ps1"
|
Invoke-Expression ".\.venv\Scripts\Activate.ps1"
|
||||||
|
|
||||||
RunTests
|
@("potato") | ForEach-Object {
|
||||||
|
$env:KIND = $_
|
||||||
|
RunTests
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Invoke-Expression "deactivate"
|
Invoke-Expression "deactivate"
|
||||||
}
|
}
|
||||||
|
@ -43,5 +43,5 @@ class TestErrors:
|
|||||||
"unknown-0": {"state": True},
|
"unknown-0": {"state": True},
|
||||||
"vban-out-1": {"name": "streamname"},
|
"vban-out-1": {"name": "streamname"},
|
||||||
}
|
}
|
||||||
with pytest.raises(ValueError, match="invalid config key 'unknown'"):
|
with pytest.raises(ValueError, match="invalid config key 'unknown-0'"):
|
||||||
vm.apply(CONFIG)
|
vm.apply(CONFIG)
|
||||||
|
@ -300,17 +300,19 @@ class Remote(CBindings):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def target(key):
|
def target(key):
|
||||||
kls, m2, *rem = key.split("-")
|
match key.split("-"):
|
||||||
match kls:
|
case ["strip" | "bus" | "button" as kls, index] if index.isnumeric():
|
||||||
case "strip" | "bus" | "button":
|
|
||||||
index = m2
|
|
||||||
target = getattr(self, kls)
|
target = getattr(self, kls)
|
||||||
case "vban":
|
case [
|
||||||
dir = f"{m2.rstrip('stream')}stream"
|
"vban",
|
||||||
index = rem[0]
|
"in" | "instream" | "out" | "outstream" as direction,
|
||||||
target = getattr(self.vban, dir)
|
index,
|
||||||
|
] if index.isnumeric():
|
||||||
|
target = getattr(
|
||||||
|
self.vban, f"{direction.removesuffix('stream')}stream"
|
||||||
|
)
|
||||||
case _:
|
case _:
|
||||||
ERR_MSG = f"invalid config key '{kls}'"
|
ERR_MSG = f"invalid config key '{key}'"
|
||||||
self.logger.error(ERR_MSG)
|
self.logger.error(ERR_MSG)
|
||||||
raise ValueError(ERR_MSG)
|
raise ValueError(ERR_MSG)
|
||||||
return target[int(index)]
|
return target[int(index)]
|
||||||
|
@ -172,8 +172,8 @@ class VbanMidiOutstream(VbanOutstream):
|
|||||||
def _make_stream_pair(remote, kind):
|
def _make_stream_pair(remote, kind):
|
||||||
num_instream, num_outstream, num_midi, num_text = kind.vban
|
num_instream, num_outstream, num_midi, num_text = kind.vban
|
||||||
|
|
||||||
def _make_cls(i, dir):
|
def _make_cls(i, direction):
|
||||||
match dir:
|
match direction:
|
||||||
case "in":
|
case "in":
|
||||||
if i < num_instream:
|
if i < num_instream:
|
||||||
return VbanAudioInstream(remote, i)
|
return VbanAudioInstream(remote, i)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user