With the increasing prevalence of AI assistants such as ChatGPT (OpenAI) or Claude (Anthropic), the way technical knowledge is used and communicated is changing. Instead of relying exclusively on traditional knowledge repositories such as forums or wikis, users can now ask specific questions and often receive immediately usable answers.
AI can be a valuable support, especially in the context of vMix and its scripting capabilities (VB.NET, HTTP API) – not as a replacement for documentation, but as a complementary tool.
AI assistants are text-based systems that have been trained to understand and generate language. Among other things, they can:
They do not access a vMix system live, but work exclusively with the information provided by the user.
AI can assist in writing vMix scripts, for example for:
Example (VB.NET script for vMix):
If API.Function(“Fade”, Input:=3) Then API.Function(“OverlayInput1In”, Input:=5) End If
AI can explain what this script does or extend it, for example, with conditions, timers, or status queries.
This is especially useful for users who do not program regularly.
The code itself is not always the problem, but rather the conceptual question:
As helpful as AI is, it has clear limitations:
Note: Every suggestion generated by AI should be checked before live use.
The quality of the answer depends heavily on the quality of the question.
“I am using vMix 27 and would like to use a VB.NET script to hide the current input when a key is pressed and display overlay 1 with input 5 after 3 seconds. How can I do this?”
Even though AI can provide many answers quickly, a Wiki remains important:
AI helps with understanding, a Wiki with permanent reference.