ADD FFMPEG conversion

This commit is contained in:
2025-05-08 21:59:03 +02:00
parent 920bcc32b1
commit d27276b66a
8 changed files with 274 additions and 10 deletions

View File

@@ -43,7 +43,9 @@ public class JobService {
Thread thread = new Thread(() -> {
while (true) {
if (!jobQueue.isEmpty()) {
Runnable task = jobQueue.poll();
Job task = jobQueue.poll();
logger.info("Starting job {}", task.getUuid());
task.run(); // Execute the task
}