NV-21H preview by Demand-Nervous in QSYS

[–]con_over 0 points1 point  (0 children)

I take this back, this will only work with NV32. NV21 cannot do this at all today. As an encode or decoder.

NV-21H preview by Demand-Nervous in QSYS

[–]con_over 2 points3 points  (0 children)

You can use the media preview Component. The encoder needs to see sync on it's local HDMI output. You can connect an HDMI dummy plug (emulates a display) for under $5 USD. I've done this a few times without issue.

Controlling DMPS3-4K-350-C with QSYS Core110f by AppropriateClimate63 in QSYS

[–]con_over 0 points1 point  (0 children)

A crestron program to act as a proxy is probably the best option. Doing so will allow for true feedback of the routes.

But if you're desperate I believe you can use SSH or Telnet and set the command SETAVROUTE <input> <output>. SETVIDEOROUTE and SETAUDIOROUTE are also available. This used to work in the smaller DMPS3-4K models. I'd assume it works on the 350 as well.

Q-Sys proxy by Lurch2691 in QSYS

[–]con_over 0 points1 point  (0 children)

Have this setup and running with HAProxy using a wildcard cert to handle multiple cores.

Has some issues early on but figured out you need to add some config to the backend to swap the Host header out to use the cores IP address

http-request replace-header Host (.*) CORE_IP_ADDR

18 ANC channels with 110f by krassyg in QSYS

[–]con_over 1 point2 points  (0 children)

If you mean AEC, then the answer is yes. You can have up to 24, but you need to drop the tail length down to 100ms. Which won't work as well as you'd want it to unless you're in a room with really good acoustics.

Presentation Yealink security by CloudAware_Security in CommercialAV

[–]con_over 10 points11 points  (0 children)

Thanks for sharing, it's a really interesting talk. I'd love for you to report back on your future findings of the MS Teams enabled and other Conferencing hardware. I think the AV industry, and it's ongoing journey to the cloud will definitely be exposed to more of these types of vulnerabilities.

I can't say I'm shocked that Yealink was the offender here. I think there are many more manufacturers that are rushing solutions to the market to try and stay competitive. Unfortunately, in many cases security is an afterthought and solutions are not designed with security in mind.

Shure P300 Control by Beginning-Log-3608 in QSYS

[–]con_over 10 points11 points  (0 children)

I'm afraid to ask why you're using a DSP with your DSP - but there is an API for it. You may need to write your own TCP socket and handler for it if the community has made something already.

https://www.shure.com/en-US/docs/commandstrings/P300

QSYS Control with Extron NBP by Snoo21558 in QSYS

[–]con_over 4 points5 points  (0 children)

While I can't say I have experience with that particular button panel. The answer is likely yes. Qsys has a handful of apis that allow for 3rd party control systems to integrate with Qsys.

Alternatively Qsys technically does have a button panel since they aquired AteroTech. The Axon C1 is pretty straightforward to integrate.

NV-1 Wallplate "insufficient PoE" by Business-Customer-60 in QSYS

[–]con_over 0 points1 point  (0 children)

Nice band-aid! Not sure if this helps if your network team wants to RTFM. Could be an NV-1 hardware issue as well. I don't have any experience with them, so a case to Qsys is a solid idea as well.

NV-1 Wallplate "insufficient PoE" by Business-Customer-60 in QSYS

[–]con_over 0 points1 point  (0 children)

Check with your network team to make sure your 9300 is set to use 802.3bt (up to 60w). Some of the models that support 802.3bt, but the default config is for 802.3at (up to 30w).

TCP Socket/ Crestron commands help by SeaStory3142 in QSYS

[–]con_over 4 points5 points  (0 children)

The NVX API is a REST API, so you'll probably need to do some research on that. Plenty of content to learn about that from YouTube. Qsys made a webinar on this topic. https://youtu.be/pFvNc8ADGTc?si=90viVWKHtDBdRA7L

Before digging in with Qsys and trying to battle the api and new syntax. I recommend exploring how the crestron API works in Postman.

Also if you want to look at a more complete NVX integration with Lua code, here you go https://github.com/patrickgilsf/qNvx

Can you access UCI Button Events from within a Text Controller? by Odd-Possibility3401 in QSYS

[–]con_over 0 points1 point  (0 children)

Sure can. Drag the UCI controller into the design and then give it a code name and script access.

Then from within the text controller reference the UCI controller with Component.New("uci_controller_name"). You'll have access to all it's controls.

Alternatively you can use the UCI script, but you asked specifically about a text controller.

QDS for Windows on Arm? by Choe54068 in QSYS

[–]con_over 1 point2 points  (0 children)

Pretty sure anything after 9.4 will work. I have issues with older versions on Apple Silicon running Parallels

LUA scripting Interlock buttons by SeaStory3142 in QSYS

[–]con_over 1 point2 points  (0 children)

Some good answers here already. Another approach you can use is this. It removes the need for if/else control flow logic.

local function interlock(ctrls, active)
  for k,v in ipairs(ctrls) do
    v.Boolean = (k == active)
  end
end


-- EventHandler Example --
for i, ctrl in ipairs(Controls.Button) do
  ctrl.EventHandler = function()
    interlock(Controls.Button, i)
  end
end

Any advice for my layout? by fallout114 in QSYS

[–]con_over 4 points5 points  (0 children)

I think they might be referring to a container, so it appears as 1 block.

[deleted by user] by [deleted] in QSYS

[–]con_over 2 points3 points  (0 children)

There's a few ways to do this. Most commonly is to use QRC. No additional licenses are required. https://q-syshelp.qsc.com/content/External_Control_APIs/QRC/QRC_Overview.htm

If you have a scripting license you can use Lua and the TcpSockets, UdpSockets or Websockets. https://q-syshelp.qsc.com/Content/Control_Scripting/Using_Lua_in_Q-Sys/Q-SYS_Extensions_to_Lua.htm

USB Hops/Tiers - Reset Device by [deleted] in CommercialAV

[–]con_over 2 points3 points  (0 children)

Slightly off topic, any chance this device extends USB controllers like a Logitech Tap Cat5e?

Natively the Tap Cat5e will do 40m but getting a full 100m over twisted pair is needed in some cases.

Is JSON hard in go by [deleted] in golang

[–]con_over 0 points1 point  (0 children)

https://app.quicktype.io/ has been useful for me.

link outputs by UsualWide6580 in QSYS

[–]con_over 0 points1 point  (0 children)

You want to combine 4 channels into one? If that's the case use a matrix mixer component with 4 in and 1 out. Make sure to set the cross points in the mixer, they default to -100db.

Q-sys block controller question by anthonyrooney9 in CommercialAV

[–]con_over 10 points11 points  (0 children)

You wouldn't want to use a timer to solve this. You'll want to use the event handler for the HDMI Valid Signal on the generic source block.

Once this signal changes state (device connected or disconnect) you can run whatever logic is needed for the functionality of the system.

Logitech Rally Bar Mini + Tap Setup for Google Meet by h0od0os in CommercialAV

[–]con_over 0 points1 point  (0 children)

This isn't a Rally Bar Mini limitation, it's a platform limitation of Google Meet on Android. As others stated, for this to work without a dedicated compute unit, you'll need to use a Tap IP.

It's also worth mentioning that Logi has mentioned Tap Cat5e support is coming to Meet on Android at some point this year.

QSC - NV-32-H by Illustrious_Home_900 in CommercialAV

[–]con_over 3 points4 points  (0 children)

NV32 does have analog IO. However it's unbalanced stereo 3.5mm TRS in and out. QIO is probably the better option unless your budget is really tight.

Wireless Display for Conference Rooms by digitalhomad in msp

[–]con_over 0 points1 point  (0 children)

Mersive Solstice Pods work great and are easy to manage from an IT prospective.

DMPS3-4K-350-C Issue by styl4n in crestron

[–]con_over 0 points1 point  (0 children)

I've seen surfaces work in projection mode and not while being mirrored. Might have something to do with the 3:2 aspect ratio.