FFmpeg video transcode to a smaller MP4 (same resolution and fps)
FFmpeg video transcode to a smaller MP4 (same resolution and fps). H.264 (x264) or HEVC (nvenc GPU / x265 CPU). Caps: 16 GiB, 2 hours. Do not pay this URL first. 1) GET /v1/info 2) POST /v1/jobs with JSON {profile: nvenc|x264|x265} 3) HTTP PUT the file to the returned uploadUrl 4) POST /v1/jobs/start with JSON {id} and x402 upto on Base USDC. Bill is (durationSeconds/60)*rate. Jobs queue after pay; poll GET /v1/jobs/:id. /v1/info has queueLength and etaSeconds.
2160000 (raw units)
price
11
calls / 30d
1
unique payers
2026-09-08
updated
Provider
compress.codreanu.casa · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "upto",
"network": "eip155:8453",
"payTo": "0x0ed9b502f1c2fe38cb4c6715ba5256d1ffab9845",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2160000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"id": "os4cnacikeq8q2e2nyby0403"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"billedUsd": "$0.002283",
"durationSeconds": 13.7,
"etaSeconds": 6,
"id": "os4cnacikeq8q2e2nyby0403",
"maxPriceUsd": "$1.20",
"status": "queued"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"id": {
"description": "Job id from POST /v1/jobs. PUT the video to uploadUrl first. profile is chosen there, not on /start.",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://compress.codreanu.casa/v1/jobs/start" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://compress.codreanu.casa/v1/jobs/start");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://compress.codreanu.casa/v1/jobs/start")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/12899.json, and this resource appears in /discovery/resources and /discovery/search.