TensorStack.Video 0.1.18

Prefix Reserved
dotnet add package TensorStack.Video --version 0.1.18
                    
NuGet\Install-Package TensorStack.Video -Version 0.1.18
                    
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="TensorStack.Video" Version="0.1.18" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TensorStack.Video" Version="0.1.18" />
                    
Directory.Packages.props
<PackageReference Include="TensorStack.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 TensorStack.Video --version 0.1.18
                    
#r "nuget: TensorStack.Video, 0.1.18"
                    
#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 TensorStack.Video@0.1.18
                    
#: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=TensorStack.Video&version=0.1.18
                    
Install as a Cake Addin
#tool nuget:?package=TensorStack.Video&version=0.1.18
                    
Install as a Cake Tool

TensorStack.Video

TensorStack.Video provides the core, cross-platform abstractions for video processing in TensorStack.
It defines shared base classes used by platform-specific implementations such as TensorStack.Video.Windows and TensorStack.Video.Linux.


Frame Interpolation

The Interpolation Pipeline uses RIFE (Real-Time Intermediate Flow Estimation) RIFE analyzes motion between consecutive frames and predicts new intermediate frames, producing smoother motion and higher frame rates without traditional frame blending artifacts.
It’s designed for both speed and quality, making it ideal for upscaling or enhancing AI-generated and low-FPS video content.

Quick Start

This minimal example demonstrates how to perform video frame interpolation using TensorStack.Video.Windows.

[nuget: TensorStack.Video.Windows]
[nuget: TensorStack.Providers.DML]

async Task QuickStartAsync()
{
    var provider = Provider.GetProvider();

    // Create the interpolation pipeline
    using (var pipeline = InterpolationPipeline.Create(provider))
    {
        // Read video stream
        var inputStream = new VideoInputStream("Input.mp4");

        // Interpolate the stream (e.g., 3x frame rate)
        var outputStream = pipeline.RunAsync(new InterpolationStreamOptions
        {
            Multiplier = 3,
            Stream = inputStream.GetAsync()
        });

        // Save the output video
        await outputStream.SaveAync("Output.mp4");
    }
}

  • Multiplier — Defines how many new frames are generated between existing ones.
    For example, a value of 3 triples the frame rate (turning 30 FPS into 90 FPS).
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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 (1)

Showing the top 1 NuGet packages that depend on TensorStack.Video:

Package Downloads
TensorStack.Video.Windows

Windows video processing with FFmpeg, OpenCvSharp4, and ONNX Runtime.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.18 160 10/23/2025
0.1.17 84 10/17/2025
0.1.9 160 10/13/2025