use of org.fagu.fmv.ffmpeg.ioe.IntMediaInput in project fmv by f-agu.
the class FFMPEGExecutorBuilder method addMediaInputWebCam.
/**
* @return
*/
public InputProcessor addMediaInputWebCam() {
String format = Devices.webCam().getName();
InputProcessor input = addMediaInput(new IntMediaInput(0));
input.format(format);
input.frameRate(FrameRate.PAL);
return input;
}
Aggregations