mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
11 lines
261 B
C#
11 lines
261 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace splitter;
|
|
|
|
public interface ISegmentProcessor
|
|
{
|
|
Task ProcessSegment( string inputFile, string outputFile, double start, double length, string[] ffmpegPassthroughParameters);
|
|
}
|