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