package FFMPEG;
import Common.JsonObject;
import java.io.IOException;
import java.nio.file.Path;
public abstract class Stream extends JsonObject
{
public abstract Process createStream(Path dir) throws IOException;
public abstract Integer getSegmentLengthMilli();
public abstract String getManifest();
}