mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
13 lines
290 B
C#
13 lines
290 B
C#
using splitter.probe;
|
|
|
|
namespace Splitter_UI.Services;
|
|
|
|
public sealed class FileProbeService : IFileProbeService
|
|
{
|
|
public async Task<VideoInfo> ProbeAsync(string inputFile)
|
|
{
|
|
var res = await Task.Run(() => ProbeVideo.Probe(inputFile, false));
|
|
return res;
|
|
}
|
|
}
|