30 fps
job_6b53f34fb6bb4333The common normalisation target.
ffmpeg -i https://cdn.rendobar.com/assets/examples/sample.mp4 -vf "fps=30" -t 5 out.mp4Resamples video to a constant frame rate by duplicating or dropping frames.
fps is a filter and -r is an output option, and they are not the same thing. -r can change timestamps without touching frames; fps actually duplicates and drops so the output is genuinely constant-rate. Mixing both is how you get doubled durations.
Every row below is a real job. The same 1280x720 five-second H.264 source went through each variant, so the numbers are comparable to each other and to every other filter page on this site. Encode time is the FFmpeg step on its own, separated from the download and the upload.
| Variant | Encode | Output | Cost |
|---|---|---|---|
| 30 fps | 4034 ms | 627.1 KB · 1280x720 | $0.0056 |
| 15 fps | 2620 ms | 612.2 KB · 1280x720 | $0.0042 |
| Film rate | 1167 ms | 513.8 KB · 1280x720 | $0.0044 |
The common normalisation target.
ffmpeg -i https://cdn.rendobar.com/assets/examples/sample.mp4 -vf "fps=30" -t 5 out.mp4Halved rate, to show the effect on output size.
ffmpeg -i https://cdn.rendobar.com/assets/examples/sample.mp4 -vf "fps=15" -t 5 out.mp4Exact 23.976 as a fraction. Writing 23.976 introduces drift over long files.
ffmpeg -i https://cdn.rendobar.com/assets/examples/sample.mp4 -vf "fps=24000/1001" -t 5 out.mp4Each variant was submitted to the Rendobar API as an ffmpeg job against the same public source file, and the response was recorded verbatim. Encode time is the API's own per-step timing for the FFmpeg step. Output size is the byte count of the file the job produced. Cost is what the job was actually billed.
Nothing here was estimated, and the whole set is re-runnable, so if a figure looks wrong it can be checked rather than argued about. The 72 variants behind this filter reference cost $0.193082 in total to measure.
Resamples video to a constant frame rate by duplicating or dropping frames.
fps is a filter and -r is an output option, and they are not the same thing. -r can change timestamps without touching frames; fps actually duplicates and drops so the output is genuinely constant-rate. Mixing both is how you get doubled durations.
On a 1280x720 five-second H.264 source, the fastest variant on this page (Film rate) spent 1167 ms inside FFmpeg. That figure is the encode step alone, measured separately from the download and the upload, so it is the filter's own cost rather than the round trip.
Not with Rendobar. Every command on this page ran through the Rendobar API against a URL, with no local FFmpeg install and no server. The job id next to each row is the real job that produced the numbers.
Every command on this page ran through the API against a URL. No binary, no server.