ca.carleton.gcrc.olkit.multimedia.converter.MultimediaConversionProgress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nunaliit2-multimedia Show documentation
Show all versions of nunaliit2-multimedia Show documentation
Library that converts multimedia files using command
line tools such as avconv and ImageMagick
package ca.carleton.gcrc.olkit.multimedia.converter;
public interface MultimediaConversionProgress {
/**
* This function is called to update the status on the
* multimedia conversion.
* @param percent Integer from 0 to 100, representing the progress
* of the conversion.
*/
public void updateProgress(int percent);
}