NReco.VideoConverter
1.1.4
Prefix Reserved
Install-Package NReco.VideoConverter -Version 1.1.4
dotnet add package NReco.VideoConverter --version 1.1.4
<PackageReference Include="NReco.VideoConverter" Version="1.1.4" />
paket add NReco.VideoConverter --version 1.1.4
#r "nuget: NReco.VideoConverter, 1.1.4"
// Install NReco.VideoConverter as a Cake Addin
#addin nuget:?package=NReco.VideoConverter&version=1.1.4
// Install NReco.VideoConverter as a Cake Tool
#tool nuget:?package=NReco.VideoConverter&version=1.1.4
Video converter component for C#/.NET (wrapper for ffmpeg command line tool). Can convert video/audio files, transcode live streams, extract video thumbnails, apply watermarks to video, screen capture etc - everything that is possible with ffmpeg from the command line. Supports .NET streams for input/output (encode/decode without tmp files).
Product | Versions |
---|---|
.NET Framework | net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on NReco.VideoConverter:
Repository | Stars |
---|---|
steponteam/FaceRecognization
A C# wrapper of arcsoft's face recogization library.
|
For .NET Core use a wrapper-only build (without ffmpeg.exe, it should be deployed separately):
NReco.VideoConverter.LT
More info (online demo, usage examples): https://www.nrecosite.com/video_converter_net.aspx
v.1.1.4 changes:
- FFMpeg updated to v.4.2.1
- added GetVideoThumbnail overloads that accept ConvertSettings (to pass any custom ffmpeg options)
- fixed (rare) InvalidOperationException issue related to cleanup of FFMpeg Process
- fixed issue with FFMpegInput.Format in ConvertMedia overload that accepts FFMpegInput[]
v.1.1.3 changes:
- FFMpeg updated to v.4.0 (note: Win XP/Server 2003 no longer supported)
v.1.1.2 changes:
- FFMpeg updated to v.3.2.2
- ConvertLiveMediaTask.Stop uses only 'q' command if possible (CTRL+C method not used because of instability)
- Fixed IOException issue thrown by ConvertLiveMedia
- added FFMpegConverter.LogLevel property
- added FFMpegConverter.ExtractFFmpeg() method (forces extraction of ffmpeg binaries)
v.1.1.1 changes:
- FFMpegConverter.Stop switched from sending CTRL+C to ffmpeg console to 'q' command written to stdin: this approach is more stable and compatible with .NET Core
- Fixed issue with NullReferenceException from Process.WaitForExit (thrown when Stop method is called from another thread)
- added NReco.VideoConverter.LT build for NET Standards 1.5 (can be used from .NET Core apps)