What problem does it solve?
This Skill helps you run VisioForge Media Blocks SDK in a .NET console app to create and control media processing pipelines without any UI, preview surface, or message loop.
Core Features & Use Cases
- Graph-based pipeline orchestration: Build directed media graphs by wiring source, encoder/transform, and sink blocks (transcode, mux, and stream-style topologies).
- Headless sink strategies: Use file and network sinks as the pipeline terminus instead of UI renderer blocks.
- Production-oriented setup guidance: Covers NuGet/package pinning, license registration, and common “DLL not found / codec not found / trial expired / truncated output” failure modes.
- Use Case: Batch convert many input files by composing a consistent topology (e.g., UniversalSourceBlock → H264/AAC encoders → MP4SinkBlock) and running it unattended in CI or scheduled jobs.
Quick Start
Create a .NET console app, wire a UniversalSourceBlock to H264/AAC encoders and an MP4SinkBlock, then start the pipeline and wait until it stops so the MP4 muxer trailer is written.