dive_obslib 0.3.0 copy "dive_obslib: ^0.3.0" to clipboard
dive_obslib: ^0.3.0 copied to clipboard

outdated

A Flutter plugin package for Dive that provides low level access to obslib using FFI.

example/lib/main.dart

import 'package:dive_obslib/dive_obslib.dart';

/// dive_obslib Example
void main() async {
  await setupOBS();
}

Future<bool> setupOBS() async {
  bool rv = await obslib.obsStartup();
  if (rv) {
    rv = obslib.startObs(
      1920,
      1080,
      1920,
      1080,
      30000,
      1001,
    );
    if (rv) {
      obslib.audioSetDefaultMonitoringDevice();
    }
  }
  return rv;
}
2
likes
0
pub points
0%
popularity

Publisher

verified publisherlarryaasen.com

A Flutter plugin package for Dive that provides low level access to obslib using FFI.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

ffi, flutter

More

Packages that depend on dive_obslib