From 34e1d0f6dd896b5f227bd2b11a6f22f4f33af12a Mon Sep 17 00:00:00 2001 From: Joris Bertomeu Date: Mon, 25 Aug 2025 15:17:32 +0200 Subject: [PATCH] Add remux option --- src/app/video-processing.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/video-processing.service.ts b/src/app/video-processing.service.ts index 4364595..016f9b8 100644 --- a/src/app/video-processing.service.ts +++ b/src/app/video-processing.service.ts @@ -32,7 +32,7 @@ export class VideoProcessingService { } downloadFile(filePath: string): Observable { - return this.http.get(`${this.apiUrl}/download/${filePath}`, { responseType: 'blob' }); + return this.http.get(`${this.apiUrl}/download${filePath}`, { responseType: 'blob' }); } flushQueue(): Observable {