Search found 14 matches
- Sat Nov 28, 2020 9:58 pm
- Forum: Voicemeeter Remote API
- Topic: Streaming audio from Voicemeeter to remote WebSocket server
- Replies: 0
- Views: 57149
Streaming audio from Voicemeeter to remote WebSocket server
Can we stream the actual audio from individual Voicemeeter channels (both input and output) to a remote WebSocket server for processing? Does the Voicemeeter Remote API support sending the actual audio instead of just monitoring the channel input / output levels?
- Wed Nov 18, 2020 3:37 am
- Forum: Voicemeeter
- Topic: Possible bug with Macro Buttons and VM Potato when changing channel labels
- Replies: 3
- Views: 5023
Re: Possible bug with Macro Buttons and VM Potato when changing channel labels
Hi Vincent, thanks for taking care of this. I can confirm that this has been fixed in VoiceMeeter Potato 3.0.1.4. I am a happy and paid supporter of VoiceMeeter ![Smile :)](./images/smilies/icon_e_smile.gif)
![Smile :)](./images/smilies/icon_e_smile.gif)
- Wed Sep 30, 2020 2:46 am
- Forum: Voicemeeter
- Topic: Hardware interface (Arduino?) mute button for Voicemeeter channel and mute indicator LED
- Replies: 12
- Views: 17873
Re: Hardware interface (Arduino?) mute button for Voicemeeter channel and mute indicator LED
Did you get this working and are you willing to share it? I currently have an Arduino setup using basic midi however it would be great to have some feedback on the Arduino (eg powered fader). Hi TomW1605, It's not entirely mine to share since this project ended up turning into more of a collab, but...
- Wed Sep 02, 2020 2:27 am
- Forum: Voicemeeter
- Topic: Possible bug with Macro Buttons and VM Potato when changing channel labels
- Replies: 3
- Views: 5023
Possible bug with Macro Buttons and VM Potato when changing channel labels
I'm using Macro Buttons v1.0.3.1 and Voicemeeter Potato v3.0.1.3 to change channel names. Inside of my Macro Button configuration, strip(x).label refers to hardware input channels 1-3 when x = 0-2. Channel labels get applied correctly. The issue is when x = 3 and x = 4 (for hardware inputs 4 and 5)....
- Mon Aug 31, 2020 5:22 am
- Forum: Voicemeeter
- Topic: Using Remote API to record / pause the tape recorder instead of toggle between "paused" and "active" recording
- Replies: 2
- Views: 4403
Re: Using Remote API to record / pause the tape recorder instead of toggle between "paused" and "active" recording
Thank you VincentVincent Burel wrote:ok, i note your request for next update...
![Smile :)](./images/smilies/icon_e_smile.gif)
- Sun Aug 30, 2020 7:57 am
- Forum: Voicemeeter
- Topic: Hardware interface (Arduino?) mute button for Voicemeeter channel and mute indicator LED
- Replies: 12
- Views: 17873
Re: Hardware interface (Arduino?) mute button for Voicemeeter channel and mute indicator LED
Thanks guys. I figured it out. Looks like InitializeDLLInterfaces() does not call VBVMR_Login() automatically.
Once I called VBVMR_Login() manually, everything started working![Very Happy :D](./images/smilies/icon_e_biggrin.gif)
Once I called VBVMR_Login() manually, everything started working
![Very Happy :D](./images/smilies/icon_e_biggrin.gif)
- Thu Aug 27, 2020 3:39 am
- Forum: Voicemeeter
- Topic: Using Remote API to record / pause the tape recorder instead of toggle between "paused" and "active" recording
- Replies: 2
- Views: 4403
Using Remote API to record / pause the tape recorder instead of toggle between "paused" and "active" recording
I'm using the Voicemeeter Remote API to automate a few things. I posted in the wrong topic, and I can't move or delete the post unfortunately. According to the Voicemeeter Remote API manual here: https://download.vb-audio.com/Download_CABLE/VoicemeeterRemoteAPI.pdf , you can use it to control the in...
- Thu Aug 27, 2020 3:24 am
- Forum: Voicemeeter
- Topic: How to control patch insert on / off with Voicemeeter Macro Buttons
- Replies: 2
- Views: 7314
Re: How to control patch insert on / off with Voicemeeter Macro Buttons
Thanks! That workedAndres wrote:Hi. You can configure a 2-positions button in Macro Buttons to turn on/off patch insert for a channel. The parameter is Patch.insert[k] where k goes from 0 to 21. (There are 22 channels in total). See this example:
![Smile :)](./images/smilies/icon_e_smile.gif)
- Wed Aug 26, 2020 8:35 am
- Forum: Voicemeeter
- Topic: How to control patch insert on / off with Voicemeeter Macro Buttons
- Replies: 2
- Views: 7314
How to control patch insert on / off with Voicemeeter Macro Buttons
Voicemeeter has the ability to enable patch inserts for the different channels (Menu > System Settings / Options). Are we able to enable / disable patch inserts with Voicemeeter Macro Buttons? In the Voicemeeter Banana user manual here on page 36, it says "Voicemeeter remote API also allows cha...
- Thu Aug 20, 2020 3:56 pm
- Forum: Voicemeeter
- Topic: Hardware interface (Arduino?) mute button for Voicemeeter channel and mute indicator LED
- Replies: 12
- Views: 17873
Re: Hardware interface (Arduino?) mute button for Voicemeeter channel and mute indicator LED
yes of course, it's programmed like a standard microsoft dll, you can use it with any language able to call _stdcall functions. Edit: I got past that message by changing the unsigned short * to a wchar_t *. Now I have a very basic C++ program, and I've copied the code from vmr_client.c over. I chan...