Chase.FFmpeg.Downloader 0.0.5

dotnet add package Chase.FFmpeg.Downloader --version 0.0.5
NuGet\Install-Package Chase.FFmpeg.Downloader -Version 0.0.5
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="Chase.FFmpeg.Downloader" Version="0.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Chase.FFmpeg.Downloader --version 0.0.5
#r "nuget: Chase.FFmpeg.Downloader, 0.0.5"
#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.
// Install Chase.FFmpeg.Downloader as a Cake Addin
#addin nuget:?package=Chase.FFmpeg.Downloader&version=0.0.5

// Install Chase.FFmpeg.Downloader as a Cake Tool
#tool nuget:?package=Chase.FFmpeg.Downloader&version=0.0.5

Chase.FFmpeg.Downloader 💽

This downloads the ffmpeg library.

Using Statement

using Chase.FFmpeg.Downloader;

Download Latest Version

/// Downloads the latest version of FFmpeg
FFmpegDownloader.Instance.GetLatest("/path/to/ffmpeg").Wait(); // Async Process

Location of the FFmpeg and FFProbe executable files

/// Path to ffmpeg executable
string ffmpeg = FFmpegDownloader.Instance.FFmpegExecutable;  // path/to/ffmpeg/ffmpeg.exe
/// Path to ffprobe executable
string ffprobe = FFmpegDownloader.Instance.FFprobeExecutable;  // path/to/ffmpeg/ffprobe.exe

The installed version of ffmpeg library

/// The installed ffmpeg version
string version = FFmpegDownloader.Instance.FFmpegVersion; // 4.0.1
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
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 Chase.FFmpeg.Downloader:

Package Downloads
Chase.FFmpeg

A ffmpeg tool for .net

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.5 165 8/30/2023
0.0.4 998 11/12/2022
0.0.3 393 11/12/2022
0.0.2 467 11/11/2022
0.0.1 391 11/11/2022

added support to search for existing installations for linux and osx