Add alot of feats
All checks were successful
ci / Image build (push) Successful in 1m50s
ci / Deployment (push) Successful in 6s

This commit is contained in:
Joris Bertomeu
2024-10-02 16:09:38 +02:00
parent abcb3f9159
commit 2925cd043d
3 changed files with 113 additions and 38 deletions

View File

@@ -15,6 +15,10 @@ export class VideoProcessingService {
return this.http.post<{ jobId: string }>(`${this.apiUrl}/start-process`, data);
}
load(data: any): Observable<any> {
return this.http.post<any>(`${this.apiUrl}/processMPD`, data);
}
getJobsStatus(): Observable<Array<any>> {
return this.http.get<Array<any>>(`${this.apiUrl}/jobs-status`);
}