What problem does it solve?
It solves the challenge of integrating VisioForge Media Blocks SDK into a native .NET for macOS app by helping you correctly assemble a graph-based capture/encode/render/stream pipeline while avoiding common macOS permission, entitlements, and deployment pitfalls.
Core Features & Use Cases
- Native .NET for macOS pipeline composition: Build a MediaBlocksPipeline from sources, transform blocks, and sinks, connect pads, and start/stop reliably.
- macOS-specific requirements: Ensure Info.plist permission usage descriptions are present and non-empty, and trigger permission prompts via AVCaptureDevice access requests.
- Hardened runtime & signing readiness: Provide Entitlements.plist guidance for camera, microphone, and USB capture devices to prevent silent denials under signed/notarized builds.
- Practical scenarios: Preview + record to MP4/MOV, custom transcode graphs, network streaming sinks, and handling Apple Silicon vs Intel native libraries using the correct NuGet redist model.
Quick Start
Use the media-blocks-sdk-net-macos skill as a copy-paste template by creating a net10.0-macos project, wiring a macOS Storyboard with a VideoView host and Start/Stop buttons, then implementing the pipeline with SystemVideoSourceBlock, VideoRendererBlock, and (optionally) SystemAudioSourceBlock and AudioRendererBlock.