changeResolution static method

Future<bool> changeResolution(
  1. DiveCoreResolution base,
  2. DiveCoreResolution output
)

Change the base and output resolution of the output video.

Implementation

static Future<bool> changeResolution(DiveCoreResolution base, DiveCoreResolution output) async {
  final rv = await obslib.changeResolution(base.width, base.height, output.width, output.height);
  return rv;
}