Search found 11 matches
- Fri Jul 14, 2023 9:25 pm
- Forum: Voicemeeter Remote API
- Topic: [macro] Enable/disable EQ in Bus
- Replies: 2
- Views: 33115
Re: [macro] Enable/disable EQ in Bus
Thanks a LOT, Ragnar!!!!
- Tue Jul 11, 2023 5:44 pm
- Forum: Voicemeeter Remote API
- Topic: [macro] Enable/disable EQ in Bus
- Replies: 2
- Views: 33115
[macro] Enable/disable EQ in Bus
Hello Vincent / Forum users,
Is there a macro function that enables/disables the EQ in a given bus?
I failed to find it on the VoiceMeeter User Manual - using VM Banana here.
Thanks a lot!
Is there a macro function that enables/disables the EQ in a given bus?
I failed to find it on the VoiceMeeter User Manual - using VM Banana here.
Thanks a lot!
- Sat Mar 14, 2020 11:14 pm
- Forum: Voicemeeter Remote API
- Topic: Load() button map does not expand %% system variables
- Replies: 1
- Views: 26349
Load() button map does not expand %% system variables
Hi Vince! I tried to create a button map Load() using %% environment variable but it didn't work. Example: Load("%USERPROFILE%\auto\cq-map.xml"); Will fail. However, if I: Load("c:\users\rodrigo\auto\cq-map.xml"); Works flawlessly. Just reporting. As I have posted in other thread...
- Sat Mar 14, 2020 11:10 pm
- Forum: Voicemeeter Remote API
- Topic: [Feature Request] Load different button map via command
- Replies: 6
- Views: 53179
Re: [Feature Request] Load different button map via command
Hello! Implemented as of version 2.0.5.1! Syntax: Load("c:\directory\button-map.xml"); Gotcha: As of version 2.0.5.3 it does not expand system variables when composing the path. So define the explicit path. Works GREAT! Featured in: https://github.com/rfrht/Voicemeeter-FT-991A#a-nice-featu...
- Thu Feb 06, 2020 9:33 pm
- Forum: Voicemeeter Remote API
- Topic: [Macro Buttons] System.execute over VBAN
- Replies: 8
- Views: 47108
Re: [Macro Buttons] System.execute over VBAN
Okay - I figured out, it WORKS!!! \o/ :D :D :D :D SO - for Push Buttons! The steps are: 5. Leave the button state as "Push Button" 6. In "Request for Button ON/ Trigger IN define: System.SendMidi("vban1", "note-on", 2, 64, 64); 7. in "Request for Button OFF/Tr...
- Thu Feb 06, 2020 9:12 pm
- Forum: Voicemeeter Remote API
- Topic: [Macro Buttons] System.execute over VBAN
- Replies: 8
- Views: 47108
Re: [Macro Buttons] System.execute over VBAN
Hey Vince! We're almost there!!! So, for documentation sake: REMOTE = Computer that you want to have some program to run CONTROL = Computer where you will be using Macro Buttons to run stuff in REMOTE 1. Configure the Macro Button In the REMOTE computer that will be performing the tasks with the sys...
- Wed Feb 05, 2020 11:13 am
- Forum: Voicemeeter Remote API
- Topic: [Macro Buttons] System.execute over VBAN
- Replies: 8
- Views: 47108
Re: [Macro Buttons] System.execute over VBAN
Hi again, Vince! Thank you very much for your post! Well Vince, I'm afraid that I couldn't figure out how to do it - In either Midi Mapping or vban-2-midi apps I necessarily have to specify a Midi Input Device Well, the truth is I'm sort of clueless - and I swear that I have read the documentation :...
- Mon Feb 03, 2020 8:18 pm
- Forum: Voicemeeter Remote API
- Topic: [Macro Buttons] System.execute over VBAN
- Replies: 8
- Views: 47108
Re: [Macro Buttons] System.execute over VBAN
Hello Vince!
Thank you very much for your reply.
I wanted to trigger a command in the remote computer using the Macro Button - Is there any provision or functionality for it?
Thanks again!!
Thank you very much for your reply.
I wanted to trigger a command in the remote computer using the Macro Button - Is there any provision or functionality for it?
Thanks again!!
- Sun Feb 02, 2020 12:07 am
- Forum: Voicemeeter Remote API
- Topic: [Macro Buttons] System.execute over VBAN
- Replies: 8
- Views: 47108
[Macro Buttons] System.execute over VBAN
Hi there, Vince! Let the following macro button, for execution in the remote computer. 1. Mute Strip 1 2. Mute Strip 2 3. Execute a command. BEGIN_SECTION("vban1") Strip[1].Mute=1; Strip[2].Mute=1; System.Execute("c:\users\rodrigo\auto\ptt-off.cmd"); END_SECTION By running this m...
- Thu Aug 29, 2019 1:29 pm
- Forum: Voicemeeter Remote API
- Topic: Remote API EQ question
- Replies: 1
- Views: 17595
Remote API EQ question
Hi there all; I built a 123 Hz Notch Filter (to filter out a subtone) in a 2P function button, configured like this: Button ON: Bus(0).EQ.on=1; Bus(0).EQ.channel(0).cell(2).on=1; Bus(0).EQ.channel(0).cell(2).type=1; Bus(0).EQ.channel(0).cell(2).f=123; Bus(0).EQ.channel(0).cell(2).gain=0; Bus(0).EQ.c...