Ndilibdotnet2 File
4.1 Create a Sender var sendSettings = new NDIlib.send_create_t
Console.WriteLine($"source.p_ndi_name @ source.ip_address");
You must manage pixel data marshaling (e.g., using byte[] pinned with GCHandle ). 5. Receiving Video (Receiver) 5.1 Find Sources var sources = NDIlib.find_get_current_sources(IntPtr findInstance); foreach (var source in sources) ndilibdotnet2
// Your code here
1. Introduction The NDI .NET SDK v2 provides managed C#/VB.NET bindings for NewTek’s high-performance NDI protocol. It allows .NET applications to send, receive, and process video over IP with low latency. Introduction The NDI
var videoFrame = new NDIlib.video_frame_v2_t(); var audioFrame = new NDIlib.audio_frame_v2_t(); var metadataFrame = new NDIlib.metadata_frame_t(); NDIlib.recv_recv_v3(receiver, out videoFrame, out audioFrame, out metadataFrame);
Audio Sending var audioFrame = new NDIlib.audio_frame_v2_t var audioFrame = new NDIlib.audio_frame_v2_t()
sample_rate = 48000, no_channels = 2, no_samples = 960, // 20ms @ 48kHz timecode = 0, p_data = audioDataPtr ; NDIlib.send_send_audio_v2(sender, ref audioFrame); Send:
p_ndi_name = "My .NET Sender", // visible on network p_groups = null, // optional group filtering clock_video = true, // auto timestamp clock_audio = true ; IntPtr sender = NDIlib.send_create(ref sendSettings); // Prepare frame (e.g., 1920x1080, RGBA) var videoFrame = new NDIlib.video_frame_v2_t
