Migrate from old git host
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using Microsoft.AspNetCore.Components.Forms;
|
||||
|
||||
namespace BlazorApp1.Handler.Interfaces;
|
||||
|
||||
public interface IFileHandler
|
||||
{
|
||||
public Task SaveFile(IBrowserFile file);
|
||||
public Task<bool> DeleteTempFile(string filePath);
|
||||
public string GetFileReference(string filename);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using BlazorApp1.Models;
|
||||
|
||||
namespace BlazorApp1.Handler.Interfaces;
|
||||
|
||||
public interface IVideoHandler
|
||||
{
|
||||
public bool ConvertVideo(string filePath, FFOptionsCodecs codecs, FFOptionsFilters filters, out string newFilePath);
|
||||
}
|
||||
Reference in New Issue
Block a user