What the heck is that setting?
Saturday, November 13, 2021
X32 edit PC Transport Control
Friday, October 29, 2021
Insert an EQ onto a bus on an x32
Its easy. What isn't really clear, especially if you are running a rack on X32 Mix is that
FX1-4 are sidechain/insert, and FX 5-8 are inserts.
XMIX screen
So all you have to do is pick your 31 band eq, and put them into FX 5-8
Since each one is a dual 31 band, you set the BUS to which ever one you want to go to what EQ.
So in the above example, you'll see I have bus 1&2 going to FX slot 5 (insert) and they FX is selected (purple) to activate it. Now bus 1 & 2 have a 31 band inserted. You can EQ your wedges.
You'll see FX slot 6 has bus #4 going to it, an i have channel 5 with a 31 band inserted.
Tuesday, September 14, 2021
Origin missing MSVCP140.dll on Windows 10
Origin not installing on Windows 10 with a missing MSVCP140.dll ?
This should fix you up.
Go to that MS site and download the X86 version of this "x86: vc_redist.x86.exe"
Actually install both.
Install that and should be good to go.
Wednesday, July 21, 2021
CUSTOMIZATION of PTZoptics OBS controls
CUSTOMIZATION of PTZoptics OBS controls
The operator to can select tabs at the bottom of each camera view to make it easier to select a variety of preset positions, PTZ buttons
<form role="form" class="form-horizontal"><fieldset class="presets"><div class="row"><a class="call_preset preset_button preset-1" data-preset="1" href="#preset-1">Pulpit</a><a class="call_preset preset_button preset-2" data-preset="2" href="#preset-2">Communion Table</a><a class="call_preset preset_button preset-3" data-preset="3" href="#preset-3">Lecturn</a></div><div class="row"><a class="call_preset preset_button preset-10" data-preset="10" href="#preset-10">Organ</a><a class="call_preset preset_button preset-11" data-preset="11" href="#preset-11">Stairs</a><a class="call_preset preset_button preset-12" data-preset="12" href="#preset-12">12</a></div><div class="row"><a class="call_preset preset_button preset-13" data-preset="13" href="#preset-13">13</a><a class="call_preset preset_button preset-14" data-preset="14" href="#preset-14">14</a><a class="call_preset preset_button preset-15" data-preset="15" href="#preset-15">Control</a></div></fieldset>
Wednesday, July 14, 2021
Control PTZ optics using their OBS "PTZOptics Open Source Control Software"
This will let you control the PTZ optics camera using buttons that you can place inside your OBS Studio program.
First you want to download the PTZ optics package for their cameras to use with OBS
PTZOptics Open Source Software.zip
This is the most recent version (as of July 14, 2021). This one fixes a problem where you could only control 1 camera, despite claims that you could control 4 (or more)
Next, you unzip this file, and you can unzip it anywhere in your machine, doesn't need to be in the OBS folder. Just put it in a spot where you aren't going to accidently delete it later on.
Once you unzip it, you'll have a folder like this:
Here's the whole process you should know. The above example controls 4 cameras, you just use use a different folder for each camera you have. You could have a whole bunch, just copy/paste the Camera "X" folder and give it a new name. PTZOptics makes it very easy.
STEPS:
Go into the folder for a camera. I'll use Camera 1 as example
You will see a few pre-built layouts
Now select the entire URL location and copy it. We are going to paste this into OBS, and obs will use this file location and file URL to display the image you see now into OBS.
Go into OBS and select VIEW -> DOCKS -> CUSTOM BROWSER DOCKS
Then press "APPLY"
Change the IP Address to be the IP of the camera you are trying to control, then press "RELOAD CAMERA" (which means "save IP address"
Automatically move PTZoptics Camera OBS Studio based on scene
Have your PTZoptics camera move to a pre-programmed x/y/z location automatically
You can have your PTZoptics camera move to a preset position that you've stored automatically when you select a scene. Basically, we will use the "BROWSER" function in OBS to send an HTML command to the specific camera, that is formatted to trigger one of the pre-stored positions.
First, save a preset location. In this example, Position #25 has been saved. I'm doing this through the GUI of the PTZoptics camera.
Now in "Sources" we'll create a new one
Sunday, July 11, 2021
Ping a range of IPs from a Windows command prompt
This command will ping every ip from 192.168.2.1 to 192.168.2.255. You can change the IP range from 192.168.2 to reflect whatever ip range you want to use
This will ping every IP and echo both the IPS that do respond and the ones that don't
for /L %i in (1,1,255) do ping -w 20 -n 1 192.168.2.%i | find /i "Reply"
This will ping every IP and echo back ONLY the IPS that do respond
for /L %i in (1,1,255) do @ping -w 20 -n 1 192.168.2.%i | find /i "Reply"
Reply from 192.168.2.8: bytes=32 time<1ms TTL=64
Ping a range 1-100:
for /L %i in (1,1,100) do ping -w 20 -n 1 192.168.2.%i | find /i "Reply"
Ping a range 100-200:
for /L %i in (100,1,200) do ping -w 20 -n 1 192.168.2.%i | find /i "Reply"
Range 1 to 200, but ping every second value
for /L %i in (1,2,200) do ping -w 20 -n 1 192.168.2.%i | find /i "Reply"
Output to a file. Add " >> output.txt " to the end and it will put the output to a file called ouptput.txt
for /L %i in (1,1,255) do ping -w 20 -n 1 192.168.2.%i | find /i "Reply" >> output.txt



























