net.bramp.ffmpeg.progress.ProgressParser Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of ffmpeg Show documentation
                Show all versions of ffmpeg Show documentation
Simple Java wrapper around FFmpeg command-line interface
                
             The newest version!
        
        package net.bramp.ffmpeg.progress;
import java.io.Closeable;
import java.io.IOException;
import java.net.URI;
/** Parses the FFmpeg progress fields */
public interface ProgressParser extends Closeable {
  void start() throws IOException;
  void stop() throws IOException;
  /**
   * The URL to parse to FFmpeg to communicate with this parser
   *
   * @return The URI to communicate with FFmpeg.
   */
  URI getUri();
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy