net.bramp.ffmpeg.options.MainEncodingOptions 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
package net.bramp.ffmpeg.options;
import java.beans.ConstructorProperties;
/**
* @author bramp
*/
public class MainEncodingOptions {
public final String format;
public final Long startOffset;
public final Long duration;
@ConstructorProperties({"format", "startOffset", "duration"})
public MainEncodingOptions(String format, Long startOffset, Long duration) {
this.format = format;
this.startOffset = startOffset;
this.duration = duration;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy