noobs 0.0.147 → 0.0.149

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/noobs.node CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noobs",
3
- "version": "0.0.147",
3
+ "version": "0.0.149",
4
4
  "description": "A native Node.js addon with libobs bindings for Warcraft Recorder.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -149,11 +149,11 @@ int ObsInterface::reset_video(int fps, int width, int height) {
149
149
  ovi.fps_den = 1;
150
150
 
151
151
  ovi.output_format = VIDEO_FORMAT_NV12;
152
- ovi.colorspace = VIDEO_CS_DEFAULT;
153
- ovi.range = VIDEO_RANGE_DEFAULT;
152
+ ovi.colorspace = VIDEO_CS_709;
153
+ ovi.range = VIDEO_RANGE_PARTIAL;
154
154
  ovi.scale_type = OBS_SCALE_BILINEAR;
155
155
  ovi.adapter = 0;
156
- ovi.gpu_conversion = true;
156
+ ovi.gpu_conversion = false;
157
157
  ovi.graphics_module = "libobs-d3d11.dll";
158
158
 
159
159
  return obs_reset_video(&ovi);