Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 465 Bytes

File metadata and controls

26 lines (15 loc) · 465 Bytes

Frapper

Minimalist Fmmpeg Wraper for .Net.

About

Nuget package

Fmmpeg site

Usage

First, add ffmpeg.exe path to your App.config or Web.config.

<appSettings>
  <add key="ffmpeg:ExeLocation" value="C:\ffmpeg.exe" />
</appSettings>

Then:

using Frapper;

FFMPEG ffmpeg = new FFMPEG();
// Get file information :)
ffmpeg.RunCommand("--i C:\\lol.mp4");