BitRate27

Results 71 comments of BitRate27

This is because the COLLECTION_CLEANUP event is not acted on in preview_output.cpp: Add this case in the on_preview_scene_changed callback: case OBS_FRONTEND_EVENT_SCENE_COLLECTION_CLEANUP: obs_source_release(ctx->current_source); ctx->current_source = nullptr; break; Because we don't release...

In windows there are not different firewall rules between administrator and a user. This was most likely the result of parental controls or some third party restricting access for the...

I believe this is fixed in DistroAV 6.0.0 with the new Behavior option and should be closed.

This is fantastic work. Thanks for your effort. Could you try to explain how your fixes fix the problem you found. Also, how did you quantify the frame rate decrease?...

Thanks for the detailed bug report. Could you check to see if you are using the I444 video format in any of your sources? This one is the only one...

I was able to duplicate by putting an Dedicated NDI output filter on a color source and putting the parent scene of that color source on program. I had to...

It doesn't look like we are setting reset_ndi_receiver to true when the behavior changes. Is this on purpose?

DistroAV uses the NDILib_recv_ptz_is_supported API to determine if the camera supports PTZ over NDI. If it is supported, it uses the NDILib_recv_ptz_pan_tilt and NDILib_recv_ptz_zoom APIs to send the commands to...

I was thinking the same thing about tally send on each source, but I got discouraged thinking of the upgrade path from Output settings to source properties.

After analyzing this further with @Trouffman here https://github.com/DistroAV/DistroAV/issues/1086, a new approach of using scene events instead of source events proves more robust and complete in setting tally. Here is the...