Rebase a timecode (or a raw frame count) from one frame rate to another on a rea
Rebase a timecode (or a raw frame count) from one frame rate to another on a real-time basis, so the wall-clock position is preserved. Give a source frameRate plus timecode or totalFrames, and a toFrameRate (with optional toDropFrame). Returns the target timecode, frame count and seconds.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
457 msmedian answer time
$0.002listed price per call
$0.002price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://timecode.openverbs.com/v1/convert
| Category | Everything else |
|---|---|
| Provider host | timecode.openverbs.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.002 | 457 ms |
Example input (from the provider)
{
"body": {
"dropFrame": false,
"frameRate": 24,
"toDropFrame": false,
"toFrameRate": 24
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"dropFrame": {
"description": "Source drop-frame (auto-detected from a timecode separator if omitted).",
"type": "boolean"
},
"frameRate": {
"description": "Source frame rate.",
"enum": [
24,
25,
30,
48,
50,
60,
23.976,
29.97,
47.952,
59.94
],
"type": "number"
},
"timecode": {
"description": "Source timecode (use instead of totalFrames).",
"maxLength": 20,
"minLength": 1,
"type": "string"
},
"toDropFrame": {
"description": "Target drop-frame (29.97/59.94 only). Default false.",
"type": "boolean"
},
"toFrameRate": {
"description": "Target frame rate.",
"enum": [
24,
25,
30,
48,
50,
60,
23.976,
29.97,
47.952,
59.94
],
"type": "number"
},
"totalFrames": {
"description": "Source frame count (use instead of timecode).",
"maximum": 1000000000000,
"minimum": 0,
"type": "integer"
}
},
"required": [
"frameRate",
"toFrameRate"
],
"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"
}
},
"required": [
"input"
],
"type": "object"
}