TensorStack.Video.Windows
0.1.9
Prefix Reserved
See the version list below for details.
dotnet add package TensorStack.Video.Windows --version 0.1.9
NuGet\Install-Package TensorStack.Video.Windows -Version 0.1.9
<PackageReference Include="TensorStack.Video.Windows" Version="0.1.9" />
<PackageVersion Include="TensorStack.Video.Windows" Version="0.1.9" />
<PackageReference Include="TensorStack.Video.Windows" />
paket add TensorStack.Video.Windows --version 0.1.9
#r "nuget: TensorStack.Video.Windows, 0.1.9"
#:package TensorStack.Video.Windows@0.1.9
#addin nuget:?package=TensorStack.Video.Windows&version=0.1.9
#tool nuget:?package=TensorStack.Video.Windows&version=0.1.9
TensorStack.Video.Windows
TensorStack.Video.Windows provides Windows-specific support for reading and writing video.
It facilitates efficient access to video streams, enabling frames to be read, processed, and saved back to common formats using the Windows media stack.
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 of3triples the frame rate (turning 30 FPS into 90 FPS).
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0-windows10.0.17763 is compatible. net10.0-windows was computed. |
-
net9.0-windows10.0.17763
- OpenCvSharp4 (>= 4.11.0.20250507)
- OpenCvSharp4.runtime.win (>= 4.11.0.20250507)
- System.Linq.Async (>= 6.0.3)
- TensorStack.Video (>= 0.1.9)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on TensorStack.Video.Windows:
| Package | Downloads |
|---|---|
|
TensorStack.WPF
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.