001package net.bramp.ffmpeg.progress;
002
003/** Captures output from the ffmpeg command line as status occurs. */
004// TODO Consider adding other stats. Start, end, stream, error
005public interface ProgressListener {
006  // Called every time there is status, typically once a second, and at the end.
007  // The Progress.status will normally be CONTINUE, until after the last frame, when it will be END.
008  void progress(Progress progress);
009}