A Go wrapper for the Voiceemeter API
Go to file
2022-06-30 23:20:15 +01:00
examples/observer register, deregister forwarding methods added to remote type. 2022-06-26 01:36:32 +01:00
tests export pdirty, mdirty through remote type 2022-06-30 23:08:35 +01:00
voicemeeter ratelimit for pooler set at 33ms 2022-06-30 23:20:15 +01:00
.gitignore quick.go added to gitignore 2022-06-23 14:07:53 +01:00
CHANGELOG.md strip comp added to higher 2022-06-30 22:20:18 +01:00
go.mod now using testify/assert 2022-06-25 01:03:08 +01:00
go.sum now using testify/assert 2022-06-25 01:03:08 +01:00
LICENSE Initial commit 2022-06-22 20:45:19 +01:00
README.md added functions for types in readme 2022-06-30 23:09:45 +01:00

Go Reference

A Go Wrapper for Voicemeeter API

This package offers a Go interface for the Voicemeeter Remote C API.

For an outline of past/future changes refer to: CHANGELOG

Tested against

  • Basic 1.0.8.2
  • Banana 2.0.6.2
  • Potato 3.0.2.2

Requirements

Installation

Add to your go.mod file:

require github.com/onyx-and-iris/voicemeeter-api-go v1.0.0

Install voicemeeter-api-go package from your console

go get github.com/onyx-and-iris/voicemeeter-api-go

Use

main.go

package main

import (
	"fmt"

	"github.com/onyx-and-iris/voicemeeter-api-go/voicemeeter"
)

func main() {
	kindId := "banana"
	vmRem := voicemeeter.GetRemote(kindId)

	vmRem.Login()

	vmRem.Strip[0].SetLabel("rode podmic")
	vmRem.Strip[0].SetMute(true)
	fmt.Printf("Strip 0 (%s) mute was set to %v\n", vmRem.Strip[0].GetLabel(), vmRem.Strip[0].GetMute())

	vmRem.Logout()
}

kindId

Pass the kind of Voicemeeter as an argument. kindId may be:

  • basic
  • banana
  • potato

Remote Type

vmRem.Strip

[]t_strip slice containing both physicalStrip and virtualStrip types

vmRem.Bus

[]t_bus slice containing both physicalBus and virtualBus types

vmRem.Button

[]button slice containing button types, one for each macrobutton

vmRem.Command

pointer to command type, represents action type functions

vmRem.Vban

pointer to vban type, containing both vbanInStream and vbanOutStream slices

vmRem.Device

pointer to device type, represents physical input/output hardware devices

vmRem.Recorder

pointer to recorder type, represents the recorder

vmRem.Type

returns the type of Voicemeeter as a string

vmRem.Version

returns the version of Voicemeeter as a string

vmRem.SendText

sets many parameters in script format ("Strip[0].Mute=1;Bus[3].Gain=3.6")

vmRem.Register

register an object as an observer

vmRem.Deregister

deregister an object as an observer

Available commands

Strip

The following functions are available

  • GetMute() bool
  • SetMute(val bool)
  • GetMono() bool
  • SetMono(val bool)
  • GetSolo() bool
  • SetSolo(val bool)
  • GetLimit() int
  • SetLimit(val int) from -40 to 12
  • GetLabel() string
  • SetLabel(val string)
  • GetGain() float64
  • SetGain(val float32) from -60.0 to 12.0
  • GetMc() bool
  • SetMc(val bool)
  • GetComp() float64
  • SetComp(val float32) from 0.0 to 10.0
  • GetGate() float64
  • SetGate(val float32) from 0.0 to 10.0
  • GetAudibility() float64
  • SetAudibility(val float32) from 0.0 to 10.0
  • GetA1() bool - GetA5() bool
  • SetA1(val bool) - SetA5(val bool)

Bus

The following functions are available

  • String() string
  • GetMute() bool
  • SetMute(val bool)
  • GetEq() bool
  • SetEq(val bool)
  • GetMono() bool
  • SetMono(val bool)
  • GetLabel() string
  • SetLabel(val string)
  • GetGain() float64
  • SetGain(val float32) from -60.0 to 12.0

Button

The following functions are available

  • GetState() bool
  • SetState(val bool)
  • GetStateOnly() bool
  • SetStateOnly(val bool)
  • GetTrigger() bool
  • SetTrigger(val bool)

Command

The following functions are available

  • Show()
  • Hide()
  • Shutdown()
  • Restart()
  • Lock(val bool)

VBAN

  • vmRem.Vban.Enable() vmRem.Vban.Disable() Turn VBAN on or off
Instream | Outstream
  • vmRem.Vban.InStream vmRem.Vban.OutStream

The following functions are available

  • GetOn() bool
  • SetOn(val bool)
  • GetName() string
  • SetName(val string)
  • GetIp() string
  • SetIp(val string)
  • GetPort() int
  • SetPort(val int) from 1024 to 65535
  • GetSr() int
  • SetSr(val int) (11025, 16000, 22050, 24000, 32000, 44100, 48000, 64000, 88200, 96000)
  • GetChannel() int
  • SetChannel(val int) from 1 to 8
  • GetBit() int
  • SetBit(val int) 16 or 24
  • GetQuality() int
  • SetQuality(val int) from 0 to 4
  • GetRoute() int
  • SetRoute(val int) from 0 to 8

Device

The following functions are available

  • Ins
  • Outs
  • Input(val int)
  • Output(val int)

Recorder

The following functions are available

  • Play()
  • Stop()
  • Pause()
  • Replay()
  • Record()
  • Ff()
  • Rew()

Run tests

To run all tests:

go run test ./...

Official Documentation