Added Maven step to compile a .jar file with all dependencies (for easy deployment); Added code to define the FFMPEG binary path and video repository through a TOML file
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-05-02 16:15:01 -04:00
parent ffb7d2d9f1
commit f861445697
4 changed files with 113 additions and 93 deletions

View File

@ -15,8 +15,8 @@ public class App {
// read our config file
Config c = new Config(configFile);
// create new Transcoder object and start the service
//Transcoder t = new Transcoder("~/dragoon");
//t.transcode();
Transcoder t = new Transcoder(c);
t.transcode();
}
}