All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itshidu.ffmpeg.nut.NutReaderListener Maven / Gradle / Ivy

package com.itshidu.ffmpeg.nut;

public interface NutReaderListener {

  /**
   * Executes when a new stream is found.
   *
   * @param stream The stream
   */
  void stream(Stream stream);

  /**
   * Executes when a new frame is found.
   *
   * @param frame A single Frame
   */
  void frame(Frame frame);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy