Add remux option
All checks were successful
ci / Image build (push) Successful in 2m7s
ci / Deployment (push) Successful in 7s

This commit is contained in:
Joris Bertomeu
2025-08-25 15:13:25 +02:00
parent 3ee069c876
commit 4133204563
2 changed files with 21 additions and 6 deletions

View File

@@ -21,6 +21,7 @@ export class AppComponent implements OnInit {
jobs: Array<any> = [];
lastJobSuccess: boolean = false;
welcomeHeader: any = null;
processRemux: boolean = true;
loaded: any = null;
Math: any = Math;
@@ -124,6 +125,7 @@ export class AppComponent implements OnInit {
wantedResolution: this.loaded.videoTracks.find((res: any) => res.name === formData.wantedResolution),
mpdUrl: this.loadForm.get('mpdUrl')?.value,
mp4Filename: this.loadForm.get('mp4Filename')?.value,
wantedRemux: this.processRemux
});
console.log(data);
this.videoProcessingService.startProcess(data).subscribe({