mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 00:24:14 +01:00
57 lines
2.8 KiB
C#
57 lines
2.8 KiB
C#
using System.Drawing;
|
|
using FFMpegCore.Pipes;
|
|
|
|
namespace FFMpegCore.Extensions.System.Drawing.Common
|
|
{
|
|
public static class FFMpegImage
|
|
{
|
|
/// <summary>
|
|
/// Saves a 'png' thumbnail to an in-memory bitmap
|
|
/// </summary>
|
|
/// <param name="input">Source video file.</param>
|
|
/// <param name="captureTime">Seek position where the thumbnail should be taken.</param>
|
|
/// <param name="size">Thumbnail size. If width or height equal 0, the other will be computed automatically.</param>
|
|
/// <param name="streamIndex">Selected video stream index.</param>
|
|
/// <param name="inputFileIndex">Input file index</param>
|
|
/// <returns>Bitmap with the requested snapshot.</returns>
|
|
public static Bitmap Snapshot(string input, Size? size = null, TimeSpan? captureTime = null, int? streamIndex = null, int inputFileIndex = 0)
|
|
{
|
|
var source = FFProbe.Analyse(input);
|
|
var (arguments, outputOptions) = SnapshotArgumentBuilder.BuildSnapshotArguments(input, source, size, captureTime, streamIndex, inputFileIndex);
|
|
using var ms = new MemoryStream();
|
|
|
|
arguments
|
|
.OutputToPipe(new StreamPipeSink(ms), options => outputOptions(options
|
|
.ForceFormat("rawvideo")))
|
|
.ProcessSynchronously();
|
|
|
|
ms.Position = 0;
|
|
using var bitmap = new Bitmap(ms);
|
|
return bitmap.Clone(new Rectangle(0, 0, bitmap.Width, bitmap.Height), bitmap.PixelFormat);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Saves a 'png' thumbnail to an in-memory bitmap
|
|
/// </summary>
|
|
/// <param name="input">Source video file.</param>
|
|
/// <param name="captureTime">Seek position where the thumbnail should be taken.</param>
|
|
/// <param name="size">Thumbnail size. If width or height equal 0, the other will be computed automatically.</param>
|
|
/// <param name="streamIndex">Selected video stream index.</param>
|
|
/// <param name="inputFileIndex">Input file index</param>
|
|
/// <returns>Bitmap with the requested snapshot.</returns>
|
|
public static async Task<Bitmap> SnapshotAsync(string input, Size? size = null, TimeSpan? captureTime = null, int? streamIndex = null, int inputFileIndex = 0)
|
|
{
|
|
var source = await FFProbe.AnalyseAsync(input).ConfigureAwait(false);
|
|
var (arguments, outputOptions) = SnapshotArgumentBuilder.BuildSnapshotArguments(input, source, size, captureTime, streamIndex, inputFileIndex);
|
|
using var ms = new MemoryStream();
|
|
|
|
await arguments
|
|
.OutputToPipe(new StreamPipeSink(ms), options => outputOptions(options
|
|
.ForceFormat("rawvideo")))
|
|
.ProcessAsynchronously();
|
|
|
|
ms.Position = 0;
|
|
return new Bitmap(ms);
|
|
}
|
|
}
|
|
}
|