adding stub for ffmpeg

This commit is contained in:
Ben Fry
2021-06-27 08:25:34 -04:00
parent f87fee10ef
commit 0d3a02c89e
@@ -0,0 +1,26 @@
package processing.app.tools;
import java.awt.*;
import java.io.File;
import java.io.IOException;
class FFmpegEngine {
Component parent;
FFmpegEngine(Component parent) {
this.parent = parent;
}
String[] getFormats() {
return new String[] {
"MPEG-4", "Animated GIF"
};
}
void write(File movieFile, File[] imgFiles, File soundFile,
int width, int height, double fps, String formatName) throws IOException {
}
}