iSukces.Cli.Ffmpeg 1.26.713.1

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

iSukces.Cli.Ffmpeg

Polska wersja

NuGet

.NET library for running FFmpeg from C# code. It provides a configuration model for ffmpeg calls, builds process arguments, and uses the base CLI process execution layer from the iSukces.CliTools package.

Requirements

  • .NET 10
  • FFmpeg installed and available as the ffmpeg command in the operating system or process environment

External tools

  • FFmpeg and the ffmpeg process are external dependencies supplied outside this package.
  • The original FFmpeg project is available at https://ffmpeg.org/, and the project's legal information is available at https://ffmpeg.org/legal.html.
  • This package does not include, distribute, install, download, link against, or license FFmpeg, the libav* libraries, or FFmpeg codecs.
  • This package invokes an independently installed FFmpeg executable as a separate operating-system process, passing command-line arguments and optionally communicating through the process standard streams.
  • Users are responsible for installing FFmpeg and ensuring that their use and distribution of the chosen FFmpeg build complies with the license applicable to that build.
  • Available formats, codecs, and processing behavior depend on the installed FFmpeg version and system configuration.

Installation

NuGet package:

dotnet add package iSukces.Cli.Ffmpeg

Usage

Minimal audio conversion call:

var result = await new FFmpegCli
{
    InputFile = "input.wav",
    OutFile = "output.mp3",
    OutputFormat = FFmpegOutputFormat.Mp3,
    AudioBitrate = FFmpegBitrate.FromKilobites(192)
}.RunAsync(workingDirectory: null);

Disable video and save audio:

var result = await new FFmpegCli
{
    InputFile = "movie.mp4",
    OutFile = "audio.wav",
    DisableVideo = true,
    OutputFormat = FFmpegOutputFormat.Wav
}.RunAsync(workingDirectory: null);

Main types

FFmpegCli

Builds arguments for the ffmpeg process and runs it through the base CLI mechanism. It supports input file, output file, disabling audio or video, audio channel count, sampling rate, bitrate, volume, output format, and custom arguments passed to FFmpeg.

FFmpegBitrate

Represents a bitrate value with a unit and formats it as an FFmpeg argument. FFmpegBitrate.FromKilobites() creates a bitrate value in kilobits.

FFmpegOutputFormat

Defines the supported output format: Mp3, Wav, Aac, or Ogg.

Build

dotnet build ..\iSukces.Cli.sln

Project configuration

  • Target framework: net10.0
  • Package license: MIT

Dependencies

  • iSukces.CliTools — base library for running CLI processes and building arguments.
  • Externally installed tool: FFmpeg available as the ffmpeg process.

Trademarks

FFmpeg is a trademark of Fabrice Bellard, originator of the FFmpeg project, according to the notice published on the FFmpeg Legal page. The FFmpeg name is used in this package descriptively only to indicate compatibility with the external FFmpeg tool. This package is not created, sponsored, or endorsed by the FFmpeg project.

FFmpeg is an external project. Copyrights in FFmpeg belong to the respective authors and copyright holders of the FFmpeg project. The upstream source code of the ffmpeg tool includes, among others, the notice Copyright (c) 2000-2003 Fabrice Bellard in the fftools/ffmpeg.c file. This package does not include FFmpeg source code; it only starts an externally installed ffmpeg process.

FFmpeg integration model

This package acts as a process wrapper. It does not copy FFmpeg code, link against libav* libraries, bundle FFmpeg binaries, or distribute FFmpeg. The integration consists of invoking a separate program through the operating system with command-line arguments and optional communication through the process standard input and output streams.

According to the GNU FAQ, communication through exec, command-line arguments, and pipes is normally communication between separate programs rather than one combined work. This summary is technical information and is not legal advice.

Disclaimer

This package only provides a .NET layer that starts the external ffmpeg process in the operating system. It acts as a bridge/facade for a tool supplied and installed outside this package.

This package does not include FFmpeg, does not modify how FFmpeg works, and is not responsible for its results, failures, environment requirements, resource usage, codecs, external component licenses, or any damages resulting from the use of that external tool.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.26.713.1 105 7/13/2026