ndi_windows_player 0.1.0 copy "ndi_windows_player: ^0.1.0" to clipboard
ndi_windows_player: ^0.1.0 copied to clipboard

PlatformWindows

A native windows implementation of NDI stream decoding leveraging the flutter::TextureRegistrar.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:ndi_windows_player/ndi_windows_player.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: AspectRatio(
            aspectRatio: 16 / 9,
            child: NdiPlayer(
              name: "MACHINENAME (NDINAME)",
              bandwidth: Bandwidth.high,
            ),
          ),
        )
      ),
    );
  }
}
2
likes
150
points
15
downloads

Publisher

unverified uploader

Weekly Downloads

A native windows implementation of NDI stream decoding leveraging the flutter::TextureRegistrar.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on ndi_windows_player

Packages that implement ndi_windows_player