Created a Java w/ Maven project structure; added a simple directory creation and executes an FFMPEG command to transcode videos
This commit is contained in:
17
src/main/java/tech/bitgoblin/App.java
Normal file
17
src/main/java/tech/bitgoblin/App.java
Normal file
@ -0,0 +1,17 @@
|
||||
package tech.bitgoblin;
|
||||
|
||||
import tech.bitgoblin.video.Transcoder;
|
||||
|
||||
/**
|
||||
* The Bit Goblin video transcoder service.
|
||||
*
|
||||
*/
|
||||
public class App {
|
||||
|
||||
public static void main(String[] args) {
|
||||
// create new Transcoder object and start the service
|
||||
Transcoder t = new Transcoder("~/dragoon");
|
||||
t.transcode();
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user