Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is it possible to query the status of a DeckLink output? #324

Open
loveolsson opened this issue Jan 17, 2023 · 1 comment
Open

Is it possible to query the status of a DeckLink output? #324

loveolsson opened this issue Jan 17, 2023 · 1 comment

Comments

@loveolsson
Copy link

Description:

Before the transition to the native WebSocket fuctionality in OBS it was possible to query the status of a DeckLink output. I can't find how to do that in the latest version.

What worked while using obs-websocket 4.9.1 and obs-websocket-js 4.0.3:

const { outputs } = await this.ws.send('ListOutputs');
const decklink = outputs.find((op) => op.name === 'decklink_output');
const isActive = decklink?.active === true;

Is there any new functionality, such as sending a CallVendorRequest to the DeckLink plugin that replaces this functionality?

Versions Used (if applicable):

  • obs-websocket-js version: 5.0.2
  • obs-websocket plugin version:
  • obs-studio version: 29.0.0
  • node version:
@loveolsson
Copy link
Author

I found the call GetOutputList in the plugin code, and it works just like before, only that the definition is missing in obs-websocket-js.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant