mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
10 lines
286 B
C#
10 lines
286 B
C#
using Avalonia.Media.Imaging;
|
|
using splitter.probe;
|
|
|
|
namespace Splitter_UI.Services;
|
|
|
|
public interface IThumbnailService
|
|
{
|
|
Task<Bitmap?> CreateThumbnailAsync(string file, VideoInfo probe, TimeSpan? skip = null, int? width = null, int? height = null, int? rotateDegree = null);
|
|
}
|