001package net.bramp.ffmpeg;
002
003import java.io.IOException;
004import java.util.List;
005
006/**
007 * Runs a process returning a Reader to its stdout.
008 *
009 * @author bramp
010 */
011public interface ProcessFunction {
012  /** Runs a process with the given arguments and returns the process handle. */
013  Process run(List<String> args) throws IOException;
014}