Widest compatibility
job_362c7303d9184c2dWhat almost every delivery chain should end with.
ffmpeg -i https://cdn.rendobar.com/assets/examples/sample.mp4 -vf "format=yuv420p" -t 5 out.mp4Forces a pixel format inside the filter graph.
format=yuv420p is the fix for video that plays everywhere except QuickTime and Safari. Many filters output yuv444p or rgb, and those are legal H.264 but unsupported by a lot of hardware decoders. Adding it as the last filter costs nothing and prevents the bug.
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 |
|---|---|---|---|
| Widest compatibility | 933 ms | 514.0 KB · 1280x720 | $0.0024 |
| Higher chroma | 1021 ms | 556.0 KB · 1280x720 | $0.0039 |
| With alpha | 951 ms | 514.0 KB · 1280x720 | $0.0025 |
What almost every delivery chain should end with.
ffmpeg -i https://cdn.rendobar.com/assets/examples/sample.mp4 -vf "format=yuv420p" -t 5 out.mp4Better colour, narrower playback support.
ffmpeg -i https://cdn.rendobar.com/assets/examples/sample.mp4 -vf "format=yuv422p" -t 5 out.mp4Only meaningful in codecs that carry alpha.
ffmpeg -i https://cdn.rendobar.com/assets/examples/sample.mp4 -vf "format=yuva420p" -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.
Forces a pixel format inside the filter graph.
format=yuv420p is the fix for video that plays everywhere except QuickTime and Safari. Many filters output yuv444p or rgb, and those are legal H.264 but unsupported by a lot of hardware decoders. Adding it as the last filter costs nothing and prevents the bug.
On a 1280x720 five-second H.264 source, the fastest variant on this page (Widest compatibility) spent 933 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.