Fix wantToUpscale
This commit is contained in:
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user