Last updated:
0 purchases
ndi windows player
ndi_windows_player #
A native windows implementation of NDI stream decoding leveraging the flutter::TextureRegistrar.
Usage #
import 'package:ndi_windows_player/ndi_windows_player.dart';
...
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('NDIPlayer example'),
),
body: const Center(
child: AspectRatio(
aspectRatio: 16 / 9,
child: NdiPlayer(
name: "MACHINENAME (NDINAME)",
bandwidth: Bandwidth.high,
),
),
)
),
);
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.