FFmpegArgs.Outputs
1.4.1
.NET 5.0
.NET Standard 2.0
.NET Framework 4.6.2
Additional Details
Map from input error
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
Install-Package FFmpegArgs.Outputs -Version 1.4.1
dotnet add package FFmpegArgs.Outputs --version 1.4.1
<PackageReference Include="FFmpegArgs.Outputs" Version="1.4.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FFmpegArgs.Outputs --version 1.4.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FFmpegArgs.Outputs, 1.4.1"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install FFmpegArgs.Outputs as a Cake Addin
#addin nuget:?package=FFmpegArgs.Outputs&version=1.4.1
// Install FFmpegArgs.Outputs as a Cake Tool
#tool nuget:?package=FFmpegArgs.Outputs&version=1.4.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FFmpegArgs
FFmpegArgs is a cli-wrapper library support generate argument for ffmpeg executable.
The standout feature that many cli-wrapper libraries don't have is the FFmpeg FilterGraph system.
Get it on NuGet Package
- Support file/url/pipe in/output.
- Works on most systems - if ffmpeg can execution.
- 130+ filters, add more in future
- 380+ filters auto-generate
Example
FFmpegArg ffmpegArg = new FFmpegArg().OverWriteOutput();
var green_video = ffmpegArg.AddVideoInput(new VideoFileInput(@"chromakey.mp4")
.SsPosition(TimeSpan.FromSeconds(0.5)));
var background_video = ffmpegArg.AddVideoInput(new VideoFileInput(@"background.mp4")
.SsPosition(TimeSpan.FromSeconds(1))
.ToPosition(TimeSpan.FromSeconds(10)));
var color_keys = green_video.ImageMaps.First()
.ColorKeyFilter()//ColorKey
.Color(Color.FromArgb(101, 220, 8))
.Similarity(0.25f)
.Enable("between(t,0,10)").MapOut//ITimelineSupport
.ScaleFilter().W("iw/3").H("ih/3").MapOut//Scale
.SplitFilter(2).MapsOut;//Split
var overlay = color_keys.First()
//overlay color_key on-center background_video
.OverlayFilterOn(background_video.ImageMaps.First()).X("(W-w)/2").Y("(H-h)/2").MapOut;
ffmpegArg.AddOutput(new VideoFileOutput(@"out.mp4", overlay, background_video.AudioMaps.First()).Fps(24));
ffmpegArg.AddOutput(new VideoFileOutput(@"out2.mp4", color_keys.Last(), background_video.AudioMaps.First()).Fps(30));
var renderResult = ffmpegArg
.Render(c => c
.WithFFmpegBinaryPath("path to ffmpeg")
.WithWorkingDirectory(Directory.GetCurrentDirectory()))
.Execute();
For more example, see FFmpegArgs.Test
LICENCE
MIT
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.6.2
- FFmpegArgs.Cores (>= 1.4.0 && < 1.5.0)
-
.NETStandard 2.0
- FFmpegArgs.Cores (>= 1.4.0 && < 1.5.0)
-
net5.0
- FFmpegArgs.Cores (>= 1.4.0 && < 1.5.0)
-
net6.0
- FFmpegArgs.Cores (>= 1.4.0 && < 1.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.