www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -0,0 +1,17 @@
package it.acxent.videoj;
public class TestVideo {
public static void main(String[] args) {
try {
String video = args[0];
String targetDir = args[1];
String targetName = args[2];
ManageVideoJ.extractNFrames(video, targetDir, targetName, 4);
} catch (Exception e) {
e.printStackTrace();
System.out.println("usage: TestVideo video targetdir targetname");
}
}
public static void testLogin() {}
}