Gondwana.Video 2.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Gondwana.Video --version 2.2.1
                    
NuGet\Install-Package Gondwana.Video -Version 2.2.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Gondwana.Video" Version="2.2.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Gondwana.Video" Version="2.2.1" />
                    
Directory.Packages.props
<PackageReference Include="Gondwana.Video" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Gondwana.Video --version 2.2.1
                    
#r "nuget: Gondwana.Video, 2.2.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Gondwana.Video@2.2.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Gondwana.Video&version=2.2.1
                    
Install as a Cake Addin
#tool nuget:?package=Gondwana.Video&version=2.2.1
                    
Install as a Cake Tool

Gondwana.Video

Gondwana.Video adds video playback capabilities to the Gondwana Game Engine using LibVLCSharp.

It supports embedding video playback into scenes for cutscenes, backgrounds, or UI elements.

Features

  • Video playback support
  • Integration with Gondwana rendering
  • Backed by LibVLCSharp
  • Suitable for cutscenes and overlays

Installation

dotnet add package Gondwana.Video

Requirements

  • VLC runtime libraries must be available on the target system

Usage

Initialize video support through the rendering or media system:

// Assume this is inside your GameHost or initialization flow

// 1. Engine pieces
var renderSurfaceHost = host.Engine.RenderSurfaceHost;
var view = host.Engine.Managers.Views.PrimaryView;

// 2. Create the VLC-backed video player
IVideoPlayer player = new VlcVideoPlayer(
    vlcArgs: new[]
    {
        "--no-audio-time-stretch",
        "--no-snapshot-preview"
    },
    initialWidth: 1280,
    initialHeight: 720);

// Optional: configure behavior
player.Loop = true;

// 3. Define source
var source = new Uri("assets/video/intro.mp4", UriKind.Relative);

// 4. Define screen-space bounds (HUD-style)
var bounds = new Rectangle(50, 50, 800, 450);

// 5. Create DirectVideo (this will call Open + Play internally in your pipeline)
var video = new DirectVideo(
    player,
    source,
    renderSurfaceHost,
    view,
    bounds,
    name: "IntroVideo");

Documentation

  • Gondwana � Core engine
  • Gondwana.WinForms � Rendering surface integration

License

MIT

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.2.4 98 5/9/2026
2.2.3 87 5/5/2026
2.2.2 89 5/3/2026
2.2.1 84 4/30/2026
2.2.0 95 4/29/2026
2.1.2 102 4/25/2026
2.1.1 96 4/20/2026
2.1.0 90 4/20/2026