Real-Time Vision AI Is About to Eat Everything, Overshoot Is the Pick-and-Shovel Play
For the last two years, every AI demo has been the same: upload an image, wait three seconds, get a result. That's fine for generating memes. It's useless for anything that actually moves.
Physical security cameras don't pause for inference. Robots don't wait for your API call to return. A goalkeeper can't hold still while a VLM figures out where the ball is going. Real-time vision AI requires a fundamentally different infrastructure stack, and almost nobody has built it.
Overshoot has. Sub-200ms from stream in to structured JSON out. Any video source. Any VLM. Three lines of code. That's the pitch, and the team has the receipts to back it up.
What Overshoot Actually Does
Overshoot is an API infrastructure layer for real-time vision applications. You connect a video stream, phone camera, webcam, YouTube live, RTSP security feed, screen share, and Overshoot handles everything from frame extraction to VLM inference to returning structured results.
The customer is the developer building the vision app. They don't want to manage FFmpeg pipelines, figure out WebRTC handshakes, or benchmark which VLM gives the fastest response for their specific use case. They want to write overshoot.connect(stream_url, on_result=callback) and move on with their lives.
Business model is usage-based API pricing. You pay per inference run, per frame analyzed, or per minute of stream time, the classic pick-and-shovel approach that scales with your customers without requiring Overshoot to build the end applications themselves.
Three hundred developers are already using it. The use cases are sprawling: physical security (real-time anomaly detection), gaming (AI that watches what's on screen), robotics (perception pipelines), sports analytics (tracking player movements at 60fps), consumer apps (live translation, accessibility tools). The connecting thread is that all of them need fast vision inference at streaming frame rates.
How the Pipeline Actually Works
Video Ingestion: Every Protocol, One Endpoint
The first problem is just getting video into the system cleanly. Overshoot accepts WebRTC (browser and mobile), RTSP (IP cameras, security systems), HLS (live streaming platforms, CDN-delivered content), and direct file upload for near-live processing.
Each protocol has different latency characteristics and buffering behavior. WebRTC is designed for sub-100ms delivery but is notoriously annoying to implement correctly, ICE negotiation, STUN/TURN server management, and codec negotiation all add complexity. RTSP is simpler but comes with higher latency by default. HLS operates on 2-10 second segment windows. Handling all four cleanly without accidentally inheriting the worst latency characteristics of each protocol is non-trivial work.
The Codec Layer: Where the Real Latency Wins Happen
This is where Overshoot earns its performance claims. Most vision API platforms treat video as a container for JPEG frames, decode the video, extract frames, JPEG-compress each one, send to VLM. Straightforward. Also catastrophically inefficient.
H.264 and H.265 video is already spatially compressed. Intelligently, the codec stores only what changed from the previous frame in most cases (P-frames and B-frames). Decoding to raw pixels and re-encoding to JPEG throws away this information and burns CPU cycles you didn't need to spend.
Overshoot's custom codec-level frame extraction works at the compressed bitstream level. The team, with a GPU kernel engineer from Meta AI and an Intel Computer Vision AI Frameworks Engineer, can extract frame data without full decompression where possible, and can make smarter decisions about which frames are worth decoding at all based on the compressed-domain signal alone.
This is not stuff you Google. This is the kind of knowledge that lives in compiler engineering teams at chip companies and distributed systems teams at video platforms. It's why the team matters as much as the product.
Adaptive Frame Sampling: Not Every Frame Needs a PhD
A 30fps video stream is 30 frames per second. Running VLM inference on every frame would be astronomically expensive and completely unnecessary for most applications. A security camera watching an empty parking lot doesn't need GPT-4o Vision 30 times a second.
Overshoot's adaptive sampling layer decides which frames actually need inference. The core signals are scene change detection (did something significant happen visually?), motion magnitude (how much is moving, and where?), and application-specific heuristics (a sports analytics app might care about every frame during a play, but almost nothing between them).
Scene change detection at the codec level is actually cheap, the codec already has motion vectors and residual energy signals baked in. You can compute a meaningful "how much changed?" score without fully decoding the frame. This is exactly the kind of compression-domain trick that turns an expensive inference pipeline into an efficient one.
The result is configurable target inference rates, maybe 2 frames per second for a static scene, 10 for high activity, with the sampling engine handling the decision-making automatically.
VLM Routing: Picking the Right Model for the Job
There is no single best VLM for all vision tasks. GPT-4o Vision gives you high accuracy but slower latency and higher cost. Gemini Flash is faster and cheaper but has different capability tradeoffs. Claude has particular strengths in structured output and reasoning over visual content. Open-source models running on dedicated GPU clusters can be faster still for specific fine-tuned use cases.
Overshoot routes inference requests across models based on configurable criteria: latency budget (is this a real-time alert or a background analysis?), cost tolerance, accuracy requirements, and historical performance on similar frame content. This routing layer also handles retries, fallbacks, and load balancing across API providers.
The operational complexity here is substantial. You're managing API keys, rate limits, error handling, and latency SLAs across multiple external providers simultaneously, while guaranteeing end-to-end latency commitments to your customers.
Edge Deployment: Geographic Proximity Matters
Physics is the ultimate latency constraint. A roundtrip from a camera in Frankfurt to a US East Coast inference server adds 80-120ms before you've done any computation. For sub-200ms total, that's more than half your budget spent on the speed of light.
Overshoot runs edge inference servers distributed geographically, routing incoming streams to the nearest available worker. This isn't just running a few VMs in different regions, it's building an intelligent routing layer that accounts for current server load, VLM availability at each edge, and the latency/cost tradeoffs of serving from a more distant but less loaded edge node.
Combined with the codec optimizations, adaptive sampling, and optimized VLM routing, the result is consistent sub-200ms inference, 10x faster than alternatives that run on centralized infrastructure and treat video like a slow sequence of images.
Difficulty Score
| Discipline | Score | Notes |
|---|---|---|
| ML / AI | 8 / 10 | VLM integration itself is API calls, but adaptive sampling, scene change heuristics, and building quality routing logic across models requires real ML intuition. Fine-tuning for latency versus accuracy tradeoffs is genuinely hard. |
| Data | 5 / 10 | The data problems are real but standard: high-throughput streaming ingestion, time-series inference logs, usage metering. Nothing exotic, but you need to get the I/O right at volume. |
| Backend | 9 / 10 | This is mostly a backend problem. Codec-level video processing, streaming protocol handling, low-latency distributed systems, multi-region routing, and stateful stream management across WebRTC/RTSP/HLS simultaneously. This is the hard part. |
| Frontend | 4 / 10 | The product is an API. There's a dashboard, documentation, and probably a stream preview UI, none of it is particularly special. The difficulty lives entirely in the plumbing. |
| DevOps | 8 / 10 | Multi-region edge deployment with sub-200ms SLAs is serious infrastructure work. GPU cluster management, streaming server orchestration, auto-scaling on bursty video workloads, and zero-downtime deploys for always-on streams. Kubernetes would be the starting point, not the ending point. |
The Moat: What's Genuinely Hard Here
The API surface is not the moat. Anyone can wrap VLM APIs in a streaming endpoint this weekend. That's not the point.
The moat is the combination of codec-level optimization, streaming protocol expertise, GPU kernel tuning, and inference serving architecture that produces consistent sub-200ms latency at scale. Each of those disciplines is independently rare. Having all four in a founding team, Uber pricing systems (distributed, latency-sensitive), Meta GPU kernels, Intel CV frameworks, Intel acquisition founding engineer, is genuinely uncommon.
There's also a data flywheel starting to emerge. As more developers use the platform, Overshoot accumulates signal about which VLMs perform best for which frame types, what sampling rates work for which application categories, and where geographic latency bottlenecks appear. That routing intelligence compounds over time.
The hard technical work is also self-reinforcing. Once you've built custom codec-level extraction that's meaningfully faster than the naive approach, you have a performance gap that competitors can't close without doing the same deep work. It's not a one-way door, but it's a heavy door.
What's easier: building a basic demo that connects a webcam to GPT-4o Vision and calls it a real-time vision platform. That takes a weekend. Plenty of these exist. They don't work at 30fps, they don't have sub-200ms latency, and they fall over at any real load. The demos are easy. The infrastructure is not.
Replicability Score
Here's the honest breakdown of why it lands at 52.
The things you can replicate quickly: the API design, the SDK interface, the VLM routing logic in its basic form, the billing infrastructure, the dashboard, and the documentation. A competent team of two engineers could have a working prototype in a week that passes a demo. It would accept streams. It would return JSON. It would feel like Overshoot.
The things you cannot replicate quickly: the codec-level frame extraction that achieves the latency numbers, the adaptive sampling that makes it cost-efficient at scale, the inference batching that keeps GPU utilization high without blowing latency budgets, and the multi-region edge deployment that handles geographic latency. These require engineers who have done this specific combination of work before.
The expertise required isn't just "good engineers", it's specifically GPU kernel engineers who understand video codecs, and streaming infrastructure engineers who understand inference serving. That's a narrow Venn diagram. You could hire your way into it over 6-12 months. You could not bootstrap your way into it over a weekend.
52 means: if you really wanted to compete, you could. It would take the right 2-3 engineers, a year of focused work, and you'd probably still be chasing Overshoot's performance numbers while they were iterating on the next layer of optimization. Not impossible. Not a weekend project. A real engineering effort against a team with a head start and the exact right expertise.
Why Now
VLMs crossed a capability threshold in 2024-2025 where they became genuinely useful for real-time vision tasks, not just image description, but spatial reasoning, object tracking, action recognition, and anomaly detection. The models exist. The developer demand exists. The infrastructure didn't.
Overshoot is the Cloudflare Workers moment for vision AI, the layer that makes the powerful underlying technology accessible without requiring every developer to become a systems engineer to use it. The timing is right because the models got good enough to be worth building on top of, and the systems engineering gap is still large enough to matter.
Three hundred developers don't adopt an API infrastructure tool because the demo is pretty. They adopt it because it solves a real problem. Overshoot is solving the real problem.
