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