Reworks default tools, moves some files

This commit is contained in:
Guillaume Tâche
2024-10-04 21:54:55 +02:00
parent df58cf4585
commit c58a8b0588
132 changed files with 600 additions and 257 deletions

View File

@@ -4,10 +4,6 @@ package com.github.gtache.autosubtitle;
* Type of a tool
*/
public enum ToolType {
/**
* The video converter (used to add subtitles)
*/
VIDEO_CONVERTER,
/**
* The subtitle extractor (used to extract subtitles from a video)
*/
@@ -15,5 +11,13 @@ public enum ToolType {
/**
* The subtitle translator (used to translate subtitles from one language to another)
*/
TRANSLATOR
TRANSLATOR,
/**
* The video converter (used to add subtitles)
*/
VIDEO_CONVERTER,
/**
* The video loader (used to load videos)w
*/
VIDEO_LOADER
}