mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
fix: keep track of local download progress
This commit is contained in:
@@ -10,7 +10,13 @@ interface IJobInput {
|
||||
|
||||
export interface JobStatus {
|
||||
id: string;
|
||||
status: "queued" | "running" | "completed" | "failed" | "cancelled";
|
||||
status:
|
||||
| "queued"
|
||||
| "optimizing"
|
||||
| "completed"
|
||||
| "failed"
|
||||
| "cancelled"
|
||||
| "downloading";
|
||||
progress: number;
|
||||
outputPath: string;
|
||||
inputUrl: string;
|
||||
|
||||
Reference in New Issue
Block a user