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 Process run(List<String> args) throws IOException; 013}