Capped folder ingest
Use maxFiles to keep batch submits predictable while testing new pipelines or customer imports.
Library automation
Queue many videos from folders, asset libraries, imports, and customer batches with metadata, idempotency, webhooks, and storage destinations.
Batch work is where automation matters most. Convertrilo lets teams process folders and media libraries without asking someone to babysit uploads in a dashboard.
await client.onDemandIngestFolder({
externalIdPrefix: "customer-import-2026-07",
sourceS3: {
bucket: "customer-source",
prefix: "incoming/"
},
outputDestination: "s3",
outputS3: {
bucket: "customer-output",
prefix: "encoded/"
},
codec: "h264",
resolution: "1080p",
maxFiles: 25
});Queue one job per video from a controlled source prefix.
Group jobs with external id prefixes and shared metadata.
Send each output to the right destination without manual downloads.
Use webhooks to reconcile large batches as each file completes.
Workflow
Each automation page maps to the same production path: API request, durable job row, queue, Rust worker, storage upload, terminal event, and reconciliation.
Pick a source folder or prefix in customer-owned storage.
Submit a capped ingest request with codec, resolution, and destination policy.
Track each returned job id independently through status or webhooks.
Update your library, CMS, or customer dashboard as outputs complete.
Use maxFiles to keep batch submits predictable while testing new pipelines or customer imports.
External ids and metadata keep each queued job connected to the original asset, tenant, or campaign.
Idempotency keys and webhook history make batch workflows easier to restart safely.
Folder ingest can discover video files from supported storage sources and queue one job per file, with maxFiles available as a safety cap.
Store returned job ids with your batch record, use externalIdPrefix for stable naming, and reconcile terminal states through webhooks or bulk status reads.
S3-compatible folder ingest is the most automation-friendly path today, and Google Drive folder workflows are also supported for service-account based integrations.
Choose your codec, resolution, FPS, bitrate, quality, and optimization settings. Convertrilo shows the NEU estimate before credits are reserved, and failed jobs release reserved credits back to your balance.