implement eq endpoints

attach eq subrouter to strip/bus routers

minor bump
This commit is contained in:
2026-04-05 04:09:00 +01:00
parent 44c14dfeeb
commit 9760bc8338
6 changed files with 111 additions and 7 deletions

87
src/vmr_http/web/eq.py Normal file
View File

@@ -0,0 +1,87 @@
"""module for equalizer related endpoints."""
from fastapi import APIRouter, Body, Depends
from vmr_http.dependencies import get_voicemeeter_client
from vmr_http.models.eq import EQChannelCellParams
cell_router = APIRouter()
@cell_router.patch('/{cell_index}')
@cell_router.put('/{cell_index}')
async def update_strip_eq_channel_cell_params(
index: int,
channel_index: int,
cell_index: int,
params: EQChannelCellParams,
voicemeeter=Depends(get_voicemeeter_client),
):
"""Update one or more parameters for the specified strip eq channel cell."""
cell = voicemeeter.strip[index].eq.channel[channel_index].cell[cell_index]
updated = {}
for key, value in params.model_dump(exclude_unset=True).items():
setattr(cell, key, value)
updated[key] = getattr(cell, key)
return updated
@cell_router.get('/{cell_index}/on')
async def get_strip_eq_channel_cell_on(
index: int, channel_index: int, cell_index: int, voicemeeter=Depends(get_voicemeeter_client)
):
"""Get the current on status for the specified strip eq channel cell."""
return {'on': voicemeeter.strip[index].eq.channel[channel_index].cell[cell_index].on}
@cell_router.get('/{cell_index}/type')
async def get_strip_eq_channel_cell_type(
index: int, channel_index: int, cell_index: int, voicemeeter=Depends(get_voicemeeter_client)
):
"""Get the current type for the specified strip eq channel cell."""
return {'type': voicemeeter.strip[index].eq.channel[channel_index].cell[cell_index].type}
@cell_router.get('/{cell_index}/f')
async def get_strip_eq_channel_cell_f(
index: int, channel_index: int, cell_index: int, voicemeeter=Depends(get_voicemeeter_client)
):
"""Get the current f value for the specified strip eq channel cell."""
return {'f': voicemeeter.strip[index].eq.channel[channel_index].cell[cell_index].f}
@cell_router.get('/{cell_index}/gain')
async def get_strip_eq_channel_cell_gain(
index: int, channel_index: int, cell_index: int, voicemeeter=Depends(get_voicemeeter_client)
):
"""Get the current gain value for the specified strip eq channel cell."""
return {'gain': voicemeeter.strip[index].eq.channel[channel_index].cell[cell_index].gain}
@cell_router.get('/{cell_index}/q')
async def get_strip_eq_channel_cell_q(
index: int, channel_index: int, cell_index: int, voicemeeter=Depends(get_voicemeeter_client)
):
"""Get the current q value for the specified strip eq channel cell."""
return {'q': voicemeeter.strip[index].eq.channel[channel_index].cell[cell_index].q}
router = APIRouter()
router.include_router(cell_router, prefix='/{index}/eq/channel/{channel_index}/cell')
@router.patch('/{index}/eq')
@router.put('/{index}/eq')
async def update_strip_eq_params(
index: int, on: bool = Body(..., embed=True), voicemeeter=Depends(get_voicemeeter_client)
):
"""Update one or more equalizer parameters for the specified strip index."""
strip_eq = voicemeeter.strip[index].eq
strip_eq.on = on
return {'on': strip_eq.on}
@router.get('/{index}/eq/on')
async def get_strip_eq_on(index: int, voicemeeter=Depends(get_voicemeeter_client)):
"""Get the current equalizer on status for the specified strip index."""
return {'on': voicemeeter.strip[index].eq.on}