Questions tagged [obs]

OBS (Open Broadcaster Software), is a software package designed for video recording and live streaming, supporting a limited version of HLSL for implementing custom pixel shaders. GENERAL OBS SUPPORT IS OFF-TOPIC. QUESTIONS NEED TO BE PROGRAMMING RELATED. Question about the usage of OBS may be asked on https://superuser.com.

OBS, short for open broadcaster software, is free and open source software for video recording and live streaming. It supports a limited version of HLSL allowing users to write their own effects as pixel shaders.

Useful links

135 questions
2
votes
0 answers

OBS - Capture frames when recording screen

I'd like to record my whole screen and create images of each frame on the fly in OBS. I would like to record a third-party stream which I receive via web socket and want to extract each frame of the stream during run-time. I already have a solid…
enne87
  • 2,221
  • 8
  • 32
  • 61
2
votes
0 answers

Using a headless Chrome instance as an OBS source

Would it be possible to use an instance of headless Chrome that is created by Selenium in Python3 Here is the code that i'm using to launch headless chrome. options = Options() options.set_headless(True) driver_chrome =…
Dave
  • 65
  • 1
  • 12
1
vote
0 answers

Does OBS support RGBA camera?

I was playing around with the module "pyvirtualcam". In this demo, I created a virtual cam with RGBA, but the OBS couldn't display it properly. Does anyone know how to use it? import pyvirtualcam import cv2 import numpy from PIL import Image im =…
1
vote
0 answers

OBS Websocket with Python (Scene Switch: Current scene: {}

I am trying to switch between OBS scenes automatically based on whether a face is detected in a webcam feed. I am using the OBS WebSocket API to connect to OBS and switch between scenes. However, I am encountering an issue where the scene does not…
Nes Elm
  • 87
  • 1
  • 3
  • 12
1
vote
1 answer

obs-websocket-js failed to connect. Server sent no subprotocol

I want to use obs-websocket-js package to build an app to connect to OBS Studio through websocket. When I try running the connection function, I get a Failed to connect -1 Server sent no subprotocol error. The OBS Studio is running on Ubuntu 20.01…
CostelMD
  • 31
  • 3
1
vote
1 answer

Live stream Text-To-Speech audio

Goal: To play an audio file generated by TTS, at the same time as animating a characters mouth. Background: While streaming to Twitch I have several illustrated characters. Viewers can make one of the characters talk by triggering a command that…
OJ Smith
  • 43
  • 4
1
vote
1 answer

How to remake a request when the page reload Flutter / GetX

I'm making a flutter App for a project in my School and I have a problem. I have a page where there are widgets representing categories of articles and when a category is clicked a page with articles from that category is displayed. The problem is…
PascheK7
  • 11
  • 3
1
vote
1 answer

AWS EC2 g4ad.2xlarge Windows Server 2019: Virtual Audio Devices not showing in Sound Control Panel / otherwise listed as an Audio Device in OBS

AWS EC2 Servers do not have a device to process sound output from applications, Windows RDP creates a device while someone is logged in, but it is removed on disconnection. I am using this server to stream game-play from a Unity application, and I…
1
vote
0 answers

dash.js - stuck at buffering when trying to watch (new) live stream

This is my setup: I have a webpage which uses dash.js to view a live stream. The live stream is coming from my computer which is running OBS and NGINX. This works without a problem except when I call up the webpage within the first 30 seconds (or…
Zippy1970
  • 601
  • 6
  • 20
1
vote
2 answers

How to make a function return observable in Flutter using GetX?

I am trying to convert a code uses stateful widget and provider package to a code with using staless widget and GetX package, but I don't know what can I do for the following getter function? bool get isAuth { return token != null; } This…
user11874694
1
vote
1 answer

How to change "setState()" when using GetX in Flutter?

I have a login screen code like below that has a text button that changes the state of the Login button to Signup or reverse, and want to rewrite it to use GetX library. But I don't know how? enum AuthMode { Signup, Login } class…
user11874694
1
vote
1 answer

C# WebSockets. Obs-netsocket. Invalid JSON payload

So. I really tried to find a solution to the problem myself, but I think it was overwhelming. I am trying to send a WebSocket but it gets the same response every time. I'm using WebSocketSharp and Newtonsoft.Json My code in C# sr = new…
B4rawasz
  • 15
  • 4
1
vote
0 answers

How to link curl / curlpp to a CMake project?

I'm trying to build an obs-plugin, but I'm new to everything involved with it (c++, CMake, and the obs-plugin ecosystem). So, I tried to make my own based on the existing plugin https://github.com/royshil/obs-backgroundremoval I made some string…
Maed Hamed
  • 11
  • 1
  • 2
1
vote
1 answer

How does OBS distinguish something as a 3rd party overlay?

OBS has an option to not show 3rd party overlays (like the steam overlay) when using the game capture method and I would very much like parts of my application to, similarly, not show when being streamed. What kind of things should I be googling to…
Kyle
  • 403
  • 2
  • 10
1
vote
1 answer

change localstorage by changing url without changing site

I have a github pages site which displays user provided images, and uses localstorage for the images and settings. So far it's worked fine, but I'd like to be able to have multiple instances of this site open simultaneously with different settings.…
1
2
3
8 9