mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
adding stub for ffmpeg
This commit is contained in:
@@ -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 {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user