mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
15 lines
326 B
C#
15 lines
326 B
C#
using splitter;
|
|
using splitter.algo;
|
|
using splitter.probe;
|
|
|
|
public record SingleTask(
|
|
SingleJob Job,
|
|
VideoInfo Info,
|
|
string OutputFileName,
|
|
int SegmentIndex,
|
|
int TotalSegments,
|
|
double SegmentStart,
|
|
double SegmentLength,
|
|
Func<int, ISegmentProcessor> ProcessorFactory
|
|
);
|