dive 0.1.0-alpha.1 copy "dive: ^0.1.0-alpha.1" to clipboard
dive: ^0.1.0-alpha.1 copied to clipboard

outdated

The Dive core plugin. A toolkit for video recording and streaming.

example/dive_example.dart

import 'package:dive/dive.dart';

void main() {
  runDiveApp();

  DiveLog.message('Dive Example - Image');

  DiveExample().run();
}

class DiveExample {
  void run() {
    const filename = '/Users/larry/Downloads/IMG_8384.jpg';
    final properties = DiveCoreProperties.fromMap(
        {DiveImageInputProvider.PROPERTY_FILENAME: filename});

    final imageProvider = DiveImageInputProvider();
    final imageSource = imageProvider.create("image1", properties);

    final output1 =
        DiveOutput(name: 'output1', frameInput: imageSource?.frameOutput);
    output1.start();
    Future.delayed(Duration(seconds: 2), () {
      final output2 =
          DiveOutput(name: 'output2', frameInput: imageSource?.frameOutput);
      output2.start();

      Future.delayed(Duration(seconds: 2), () {
        final output3 =
            DiveOutput(name: 'output3', frameInput: imageSource?.frameOutput);
        final output4 =
            DiveOutput(name: 'output4', frameInput: imageSource?.frameOutput);
        output3.start();
        output4.start();

        const url =
            'https://storage.googleapis.com/cms-storage-bucket/6a07d8a62f4308d2b854.svg';

        final properties2 = DiveCoreProperties()
          ..setString(DiveImageInputProvider.PROPERTY_URL, url);

        final imageProvider2 = DiveImageInputProvider();
        final imageSource2 = imageProvider2.create("image2", properties2);
        final output5 =
            DiveOutput(name: 'output5', frameInput: imageSource2?.frameOutput);
        output5.start();
      });
    });
  }
}
8
likes
0
pub points
0%
popularity

Publisher

verified publisherlarryaasen.com

The Dive core plugin. A toolkit for video recording and streaming.

Homepage

License

unknown (LICENSE)

Dependencies

equatable, http, intl, riverpod, uuid

More

Packages that depend on dive