turn off the scaled output in settings - output. V veny New Member Jan 19, 2021 #12 Same error Attachments 2021-01-19 08-15-25.txt 7.4 KB · Views: 47 Harold Active Member Jan 19, 2021 #13 And if you switch your base and output resolution to 1920x1080?...
but consider dropping theOutput (Scaled) Resolutionto1280x720unless you have a fast internet upload speed and a powerful computer. Streaming at 1080p is much more intensive than 720p, and the latter is decent enough when starting out.
const int image_resolution_limit = 10000*10000; if ((image.cx * image.cy > image_resolution_limit)) { blog(LOG_WARNING, "Image resolution over 100MP limit and get downscaled"); float down_scale = (image.cx * image.cy) / (float)image_resolution_limit; *cx_out = (uint32_t)(image...