Learn how to use batch processing to transcribe multiple files simultaneously on VoxScriber.
Automate the transcription of multiple files simultaneously. Learn strategies, monitoring, and best practices to maximize efficiency and results.
Process dozens or hundreds of files simultaneously. 10x faster
Optimize credit and resource usage. 30% savings
Keep your projects organized.
# Upload multiple files
curl -X POST https://api.vozparatexto.com.br/v1/batch/upload \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "files[]=@audio1.mp3" \
-F "files[]=@audio2.mp3" \
-F "files[]=@audio3.mp3" \
-F "engine=ASSEMBLYAI" \
-F "language=en-US"
// Response
{
"batchId": "batch_abc123",
"totalFiles": 3,
"status": "PROCESSING",
"files": [
{ "id": "upload_1", "name": "audio1.mp3", "status": "QUEUED" },
{ "id": "upload_2", "name": "audio2.mp3", "status": "QUEUED" },
{ "id": "upload_3", "name": "audio3.mp3", "status": "QUEUED" }
]
}
| Resource | Free Plan | Lite Plan | Advanced Plan | Pro Plan | |---|---|---|---|---| | Files per batch | 3 | 10 | 25 | 100 | | Parallel processing | 1 | 2 | 3 | 5 | | Maximum batch size | 100 MB | 500 MB | 2 GB | 10 GB | | Queue priority | Normal | Normal | High | Maximum |
| Status | Description |
|---|---|
| QUEUED | In queue awaiting processing |
| UPLOADING | Upload in progress |
| PROCESSING | Transcription in progress |
| COMPLETED | Transcription completed successfully |
| FAILED | Processing failed |
| RETRYING | Automatically retrying |
The batch panel shows:
Check your credit balance before starting a large batch. The system calculates the estimated cost before starting, but individual transcriptions in progress cannot be canceled.
Possible causes: Unsupported format, corrupted file, insufficient credits.
Solutions: Check the formats of the failed files, try reprocessing individually, confirm your credit balance.
Possible causes: Many large files, peak hours, parallel processing limit.
Solutions: Split into smaller batches, submit during off-peak hours, consider upgrading your plan for more parallel slots.
Possible causes: Variable audio quality, different languages, incorrect settings.
Solutions: Normalize the audio before uploading, configure language per file when needed, review batch settings.
For very large batches (more than 50 files), split them into sub-batches of 20-30 files. This makes monitoring easier and allows you to identify issues more quickly.