Godot Version
4.0.2
Question
Hello. I am trying to create a custom vtuber-esque streaming environment. Anyone know how I could stream my gameplay to Godot?
4.0.2
Hello. I am trying to create a custom vtuber-esque streaming environment. Anyone know how I could stream my gameplay to Godot?
I don’t think Godot has screen capturing capabilities, you may have to composite your stream within OBS
Yeah, I assumed that. I’m just wondering if OBS has an option to output video in real time to a certain location in your files, then you can read that output.
Might be able to use movie-maker mode or create a MovieWriter
object and manually call _write_begin
, then every frame use _write_frame
and _write_end
. Sounds like you would have to make a PNG sequence though, which will be very uncompressed and probably tough to work with in OBS.