You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,7 @@ POST /api/v1/convert # Universal media conversion
74
74
POST /api/v1/analyze # Quality metrics (VMAF, PSNR, SSIM)
75
75
POST /api/v1/stream # HLS/DASH adaptive streaming
76
76
POST /api/v1/estimate # Processing time/cost estimation
77
+
POST /api/v1/batch # Batch processing (up to 100 jobs)
77
78
```
78
79
79
80
### Job Management
@@ -83,6 +84,8 @@ GET /api/v1/jobs # List and filter jobs
83
84
GET /api/v1/jobs/{id} # Job status and progress
84
85
GET /api/v1/jobs/{id}/events # Real-time progress (SSE)
85
86
DELETE /api/v1/jobs/{id} # Cancel job
87
+
GET /api/v1/batch/{id} # Batch job status and progress
88
+
DELETE /api/v1/batch/{id} # Cancel entire batch
86
89
```
87
90
88
91
### System & Health
@@ -107,15 +110,27 @@ GET /docs # Interactive API documentation
107
110
-**VMAF** - Perceptual video quality measurement
108
111
-**PSNR** - Peak Signal-to-Noise Ratio
109
112
-**SSIM** - Structural Similarity Index
113
+
114
+
> **📊 Need detailed media analysis?** Check out our companion [FFprobe API](https://github.com/rendiffdev/ffprobe-api) for comprehensive media file inspection, metadata extraction, and format analysis.
0 commit comments