From 0c867d0ce089c1868a40eeb958d2caaabd2e6ed0 Mon Sep 17 00:00:00 2001 From: Joris Bertomeu Date: Tue, 26 Aug 2025 17:30:36 +0200 Subject: [PATCH] Fix wantToUpscale --- src/app/app.component.html | 9 +++++++-- src/app/app.component.ts | 4 +++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index 76f9c55..ad57b28 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -170,14 +170,19 @@ -
- +
+
+ + +
diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 6a5b19a..46b7e9c 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -23,6 +23,7 @@ export class AppComponent implements OnInit { lastJobSuccess: boolean = false; welcomeHeader: any = null; processRemux: boolean = true; + wantToUpscale: boolean = true; loaded: any = null; Math: any = Math; @@ -242,7 +243,8 @@ 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 + wantedRemux: this.processRemux, + wantToUpscale: this.wantToUpscale }); this.videoProcessingService.startProcess(data).subscribe({ next: (response) => {