Using Midas/Behringer M32 X32 as AFV with ATEM

Questions about ATEM Switchers, Camera Converter and everything live!
  • Author
  • Message
Offline

Dan Hinrichs

  • Posts: 2
  • Joined: Mon Jun 26, 2017 5:26 am

Using Midas/Behringer M32 X32 as AFV with ATEM

PostTue Jun 27, 2017 2:29 am

Does anyone have any experience in setting up a Midas/Behringer M32/X32 board as a AFV (Audio-Follows-Video) using ATEM?

I am attempting to setup an external mixer to follow the video switcher. Attempts to connect and sync the mixing console and the BlackMagic system have not been successful. I have followed the BlackMagic ATEM user manual (P172) and have set the mixer to use "Mackie Control".

The configuration is as follows:
<Midas M32>
-- USB --
<Apple MacBook Pro iOS Sierra 10.8 running ATEM (v7.0.3)>
-- TCPIP --
Black Magic Production Studio 4K

All possible configurations from the audio console have been tried:
-- using the BM instructions to use a USB cable from the audio console to the computer
-- using a network TCP/IP connection between the console and computer
-- using the MIDI in-outs of the audio console to a MIDI-USB adaptor on the computer.

Using the MIDI 'only' interface from the mixer to the computer, I can see MIDI messages being sent from both the mixer and the ATEM software ... but the two don't talk to each other.

Any thoughts and suggestions will be appreciated.

Regards,
Dan Hinrichs
Offline
User avatar

Xtreemtec

  • Posts: 5397
  • Joined: Wed Jan 02, 2013 11:48 am
  • Location: The Netherlands

Re: Using Midas/Behringer M32 X32 as AFV with ATEM

PostTue Jun 27, 2017 8:01 pm

Ian Morrish is the guy you need.. His powershell is able to control the X32 mixer and also runs the Atem lib..
Daniel Wittenaar .:: Xtreemtec Media Productions ::. -= www.xtreemtec.nl =-
4K OBV Trailer, ATEM TVS HD, 4M/E Broadcast Studio 4K, Constelation 8K, Hyperdeck Studio 12G, Ursa Broadcast 4K, 4K fiber converters with Sony Control
Offline

Ian Morrish

  • Posts: 580
  • Joined: Sun Jan 18, 2015 9:24 pm
  • Location: New Zealand

Re: Using Midas/Behringer M32 X32 as AFV with ATEM

PostTue Jun 27, 2017 9:58 pm

I have done it with X-air, presume same OSC is available.
Using Windows PowerShell. Don't have the code on me as I'm traveling but you can find info on https://ianmorrish.wordpress.com/2017/0 ... using-osc/ and I'll put working code on github shortly

Sent from my SM-G950F using Tapatalk
Regards,
Ian Morrish
Video Integrated Scripting Environment
(Windows PowerShell with ATEM driver + more)
https://ianmorrish.wordpress.com
Offline

Dan Hinrichs

  • Posts: 2
  • Joined: Mon Jun 26, 2017 5:26 am

Re: Using Midas/Behringer M32 X32 as AFV with ATEM

PostWed Jun 28, 2017 6:54 am

This reply is directed to Ian -

You have an example of a an ATEM script using MIDI.

ref: https://gist.github.com/imorrish/b967ff ... 6b5a64e8db

Under the PowerShellMidi.dll, how did you get the "DeviceID" for the mixer?
I would think I need a different value for the X32?

Puzzled..
Dan
Offline

Ian Morrish

  • Posts: 580
  • Joined: Sun Jan 18, 2015 9:24 pm
  • Location: New Zealand

Re: Using Midas/Behringer M32 X32 as AFV with ATEM

PostFri Jun 30, 2017 7:01 am

Here is a script I use to list the midi device ID strings. I do have a scipt somewhere that just uses the first midi device found which works well if you only have one device connected. I'm trying to find that at the moment.

# change this path to match the location of the DLL on your machine
add-type -path 'C:\Users\imorrish\Documents\WindowsPowerShell\Modules\midi\PeteBrown.PowerShellMidi.dll'}

Import-Module "C:\Users\imorrish\Documents\WindowsPowerShell\PeteBrown.PowerShellMidi.dll"

function listinputs(){
Write-Host " "
Write-Host "MIDI Input Devices ========================= " -ForegroundColor Cyan

$inputDevices = Get-MidiInputDeviceInformation
foreach ($device in $inputDevices)
{
Write-Host " "
Write-Host " Name: " -NoNewline -ForegroundColor DarkGray; Write-Host $device.Name -ForegroundColor Red
Write-Host " ID: " -NoNewline -ForegroundColor DarkGray; Write-Host $device.Id -ForegroundColor Red
Write-Host " IsDefault: " -NoNewline -ForegroundColor DarkGray; Write-Host $device.IsDefault -ForegroundColor Red
Write-Host " IsEnabled: " -NoNewline -ForegroundColor DarkGray; Write-Host $device.IsEnabled -ForegroundColor Red
}
}

function listoutputs(){
Write-Host " "
Write-Host "MIDI Output Devices ========================= " -ForegroundColor Cyan


$outputDevices = Get-MidiOutputDeviceInformation
foreach ($device in $outputDevices)
{
Write-Host " "
Write-Host " Name: " -NoNewline -ForegroundColor DarkGray; Write-Host $device.Name -ForegroundColor Red
Write-Host " ID: " -NoNewline -ForegroundColor DarkGray; Write-Host $device.Id -ForegroundColor Red
Write-Host " IsDefault: " -NoNewline -ForegroundColor DarkGray; Write-Host $device.IsDefault -ForegroundColor Red
Write-Host " IsEnabled: " -NoNewline -ForegroundColor DarkGray; Write-Host $device.IsEnabled -ForegroundColor Red
}
}
listoutputs
listinputs
Regards,
Ian Morrish
Video Integrated Scripting Environment
(Windows PowerShell with ATEM driver + more)
https://ianmorrish.wordpress.com
Offline
User avatar

Roman Pytkin Pekarek

  • Posts: 2344
  • Joined: Tue Oct 30, 2012 1:11 pm
  • Location: SVK

Re: Using Midas/Behringer M32 X32 as AFV with ATEM

PostSun Jul 16, 2017 1:14 am

It must works without scripts .. Atem Control Surface application can be controlled by Mackie Control compatible device ..
http://tally.pytkin.sk
http://chucktv.eu
http://www.stonepp.tv
http://www.media-planet.sk

Return to Live Production

Who is online

Users browsing this forum: k02114 and 19 guests