tomaszzmuda / Xabe.FFmpeg

.NET Standard wrapper for FFmpeg. It allows to process media without know how FFmpeg works, and can be used to pass customized arguments to FFmpeg from dotnet core application.

Home Page:https://xabe.net/product/xabe_ffmpeg/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Snapshot to memoryStream

foxi69 opened this issue · comments

using (MemoryStream memoryStream = new MemoryStream()) {
IConversion conversion = await FFmpeg.Conversions.FromSnippet.Snapshot(inputFilePath, memoryStream, TimeSpan.FromSeconds(50));
IConversionResult result = await conversion.Start();
}

Is it possible with this library?