Published 2026-06-03 · 28 min read · By Nikolay Sapunov, CEO at Fora Soft
Why this matters
If you are a founder, product manager, or operations lead, you are being sold a new "AI video tool" every week, and the listicles ranking them tell you which demo looks best — not which one belongs in your product, at your scale, under your budget. This article is the map underneath all of those tools. It gives you one framework to place any AI video tool in your stack, one decision for how to source it, one rule for surviving the constant model churn, and one checklist for the disclosure rules that now attach to AI-made video. Read it once and you can hold a useful conversation with any engineer or vendor about any AI video tool, this year or next.
This is the meta-playbook for the whole AI for Video Engineering section: it ties the individual deep-dives together into a single decision system. Where a specific tool needs depth, we link to its dedicated article rather than repeat it here.
The first split: two kinds of "AI in video production"
The phrase "AI in video production" points at two different jobs, and almost every planning mistake we see starts by mixing them.
The first job is the AI inside the product — the features your end users see and touch. Call this Track A. A live caption that appears under a speaker, an automatic clip cut from a two-hour stream, a voice-over generated from a script, a search box that jumps to the second a product appeared on screen: these are product features. They run in your pipeline, cost you money per minute of video, and your users judge your product by how well they work.
The second job is the AI used to build the product — the tools your engineers point at their own work. Call this Track B. A coding assistant that writes a first draft of a function, an agent that scaffolds a test suite, a tool that turns a bug report into a proposed fix: these never touch your users. They change how fast and how cheaply your team ships, and your users never see them directly.
A simple test sorts any tool in seconds. Ask: does a paying customer ever experience the output of this AI? If yes, it is Track A, and it lives in your product budget, your latency budget, and your compliance surface. If no, it is Track B, and it lives in your engineering-productivity budget. Runway generating a background plate that ends up in a published video is Track A. Cursor helping an engineer write the upload service is Track B. The same company name can appear on both sides in different contexts, so judge the use, not the brand.
Why does the split matter so much? Because the two tracks answer to different owners, different risks, and different rules. A Track A feature that produces a wrong caption can mislead a viewer and, as we will see, can trigger a disclosure law. A Track B assistant that writes a wrong line of code is caught in code review, the same place a junior engineer's mistake is caught. Teams that budget Track B tools as if they were product features over-invest in governance no user will ever benefit from; teams that ship Track A features with Track B's casual "the human will catch it" attitude ship misleading video into a regulated market. Keep the two tracks on separate ledgers from the first planning meeting.
Figure 1. The two tracks of "AI in video production," mapped across the five stages of the video lifecycle. Track A capabilities (top) are product features; Track B tools (bottom) speed the build. Each Track A box links to its deep-dive article in this section.
The map: where AI attaches across the video lifecycle
Once you have sorted a tool into a track, the next question is where in the work it attaches. Video production, whether for a live shopping stream or a telemedicine consult recording, moves through five stages. Think of the stages like a factory line: raw material comes in one end, a finished, delivered product comes out the other, and AI can be bolted onto any station.
Stage one is plan and ingest — everything before the camera matters. Here AI helps draft scripts, storyboards, and shot lists, and it ingests existing footage into a searchable archive. The archive step is the quiet workhorse: a system that watches old footage and tags what it sees turns a dead tape library into something you can query. We cover archive search and retrieval in the video RAG deep-dive.
Stage two is produce and capture — the live moment, or the shoot. This is where real-time AI earns its keep and where latency is unforgiving. Live captions, real-time translation, background blur, noise suppression, and content moderation all run here, against a clock measured in milliseconds. The whole real-time toolkit, and the budget that governs it, sits in the sub-100-millisecond latency-budget article.
Stage three is post-produce — the work done on the recording after the moment has passed. There is no clock here, which makes it the cheapest and most valuable place to apply AI. Automatic clipping, dubbing, subtitling, B-roll generation, and synthetic voice-over all live in post. The editing-tool landscape — Opus Clip, Descript, and their peers — is covered in the AI video-editor tools deep-dive, and generative footage in the generative-video comparison.
Stage four is deliver — getting the finished video to the viewer. AI shows up here as per-title encoding, upscaling of old archives, and personalization of what each viewer sees next. Delivery rides on standard plumbing — the same streaming protocols and containers every video product uses — which matters later when we talk about what stays stable.
Stage five is operate and govern — keeping the running system honest, cheap, and legal. This is where evaluation rigs measure whether the AI is still good enough, where cost controls live, and where the provenance and disclosure machinery attaches. Cost control belongs in the 25-levers cost article; governance gets its own section below.
The map is the point, not the tool names. Tools come and go; the five stations stay. When a vendor pitches you "an AI video tool," your first two questions are now automatic: which track, and which stage? Those two answers tell you whose budget it lands in, what its latency tolerance is, and which other tools it competes with or complements.
The four ways to get any AI capability
Here is the move that surprises most non-technical planners: every AI capability in the map above — Track A or Track B, any stage — can be obtained in exactly one of four ways. The capability is the same; the sourcing decision is separate. Picking the wrong source is the single most common way AI video budgets blow up.
The first way is to buy a hosted API. You send your video or text to a vendor's server, they run the model, they send back the result, and you pay per use. This is renting. It is the fastest to start, needs no machine-learning team, and costs nothing when idle. The catch is that cost scales with every minute of video, your data leaves your walls, and you are exposed to the vendor's price changes and shutdowns.
The second way is to fine-tune an open model. You take a freely available model and train it a little further on your own examples — surveillance footage, medical consultations, your e-learning catalog — so it learns your domain. Fine-tuning is like hiring a capable generalist and sending them on a two-week course in your specialty. It needs some machine-learning skill and a labeled dataset, but it can make a small, cheap model beat a giant general one on your task. We walk through this end to end in the domain fine-tuning article.
The third way is to self-host an open model as-is. You run a freely available model on your own hardware, unchanged. You own the latency, the privacy, and the per-minute cost — once the hardware is paid for, more video is nearly free — but you also own the servers, the uptime, and the engineering to keep it running. The serving stack for this is the vLLM, Triton, and TensorRT inference article.
The fourth way is to build a custom system from the ground up. You design and train your own model, or stitch several together into something no vendor sells. This is the most expensive and slowest path, justified only when the capability is your actual product and no off-the-shelf option is good enough.
A worked example shows why the choice matters. Suppose you need to transcribe video — speech to text — and you expect 100,000 minutes a month. Imagine a hosted API charges roughly $0.006 per minute. The monthly bill is:
100,000 minutes × $0.006 / minute = $600 per month
Now suppose self-hosting an open speech model needs one GPU server at, say, $1,500 a month, plus about $1,000 of engineering time to keep it healthy:
$1,500 server + $1,000 ops = $2,500 per month (fixed)
At 100,000 minutes, renting wins clearly — $600 against $2,500. But the API bill grows with volume and the self-hosted bill barely moves. Find the crossover by dividing the fixed cost by the per-minute price:
$2,500 ÷ $0.006 per minute ≈ 417,000 minutes per month
Below roughly 417,000 minutes a month, renting is cheaper; above it, owning is cheaper. The exact numbers are illustrative and shift with your vendor and hardware, but the shape is the lesson: APIs win at low and spiky volume, self-hosting wins at high and steady volume, and the crossover is a number you can compute before you commit. The full pricing mechanics live in the cost-model article and its companion on real AI costs.
| Sourcing mode | Time to first result | Cost shape | Control & privacy | Best when |
|---|---|---|---|---|
| Buy a hosted API | Days | Per-minute, scales with use | Lowest — data leaves your walls | Low or spiky volume; validating an idea; no ML team |
| Fine-tune an open model | Weeks | Training cost + cheaper serving | Medium-high — you hold the weights | A narrow domain where a small model can beat a big one |
| Self-host an open model | Weeks | Fixed hardware, near-free per minute | High — nothing leaves your walls | High, steady volume; strict privacy; predictable cost |
| Build a custom system | Months | Highest up front | Total | The capability is your product and nothing off-the-shelf fits |
Figure 2. The four sourcing modes as a decision tree. Start at the top with volume and privacy, and most capabilities resolve to "buy" or "self-host" within three questions.
The rule that survives the churn: stable spine, swappable model
Anyone who has watched this space for a year knows the deepest practical problem: the tools change constantly. New video models drop most weeks. Prices are cut and raised. APIs are deprecated on published timelines — in 2026, even a flagship text-to-video service can announce a sunset date for its developer API, giving teams a fixed window to move off it. If your product is wired directly to one specific model, every one of these events is an emergency.
The engineering answer is old and reliable, and it rescues you from the churn: separate what the capability does from which model does it. Put a thin layer of your own code between your product and the model — an interface that says "turn this audio into text" or "describe what is in this frame" without naming a vendor. Behind that interface, you can swap one transcription model for another in an afternoon. In front of it, your product never notices.
The analogy is a wall socket. Your lamp does not care which power plant made the electricity; it cares that the socket delivers a steady 230 volts in the shape it expects. The socket is the stable interface; the power plant is the swappable supplier. Build the socket once, and you can change suppliers — or run two at once and pick the cheaper one per job — without rewiring the lamp.
What belongs on the stable spine, and what is swappable? The spine is the things that almost never change: the five lifecycle stages, the streaming protocols and containers that deliver your video, the browser interfaces that give code access to video frames, and your own capability interfaces. The swappable parts are the specific models and the specific vendors — exactly the things the listicles obsess over. Spend your durable engineering effort on the spine. Treat the models as consumables.
Common mistake: hard-wiring a single vendor into your product. The fastest way to start is to call a vendor's API directly from your product code, and that is fine for a prototype. It becomes a trap the moment that code ships, because the vendor's next price hike, outage, or deprecation is now your outage. The fix costs a day: wrap every model call in your own small interface before launch, so the vendor's name appears in exactly one file you control. Teams that skip this step pay for it during the first deprecation notice, always at the worst time.
Figure 3. What to build on (the stable spine) versus what to treat as replaceable (the swappable model layer). The spine changes on a scale of years; the model layer changes on a scale of weeks.
What an AI video feature actually costs
A tool's sticker price is the smallest of the four costs it brings. Planners who budget only the per-minute model fee are routinely surprised by a final bill several times larger. There are four cost lines, and you should name all four before you commit.
The first line is the model cost — the per-minute or per-token fee for running the AI itself. This is the number on the vendor's pricing page, and it is the only one most plans include.
The second line is integration — the engineering to wire the capability into your pipeline, build the stable interface around it, handle errors, and test it. This is one-time but real, and it is larger for real-time features in stage two than for batch features in stage three, because beating a clock is harder than running whenever you like.
The third line is evaluation and quality — the ongoing work of measuring whether the AI is still good enough. AI outputs are not deterministic; a model that was accurate last month can drift as your content changes or as the vendor updates it silently. You need a rig that scores outputs continuously, which means labeled examples, a scoring method, and someone watching the dashboard. Teams that skip this find out about quality regressions from angry users.
The fourth line is governance — the provenance, disclosure, and audit machinery the law now requires for AI-made media, covered in the next section. It is small if you design it in early and painful if you bolt it on after launch.
A useful rule of thumb from projects we have scoped: for a Track A feature, the model fee is often the smallest of the four lines over the first year. The integration and evaluation lines, paid in engineering time, frequently dwarf it. This is why the "it's only $0.006 a minute" pitch is misleading — the minute is cheap; making the minute trustworthy, integrated, and legal is where the money goes. The 25 concrete levers for pulling all four lines down are in the cost-optimization article.
Figure 4. The four cost lines of an AI video feature. The model fee is the visible tip; integration, evaluation, and governance are the larger costs below the waterline.
The governance layer under everything
There is one layer that now sits under every Track A feature that generates or alters video, and ignoring it is no longer an option. From 2 August 2026, the European Union's AI Act — Regulation (EU) 2024/1689 — applies its transparency rules, and they speak directly to AI-made video.
Two parts of Article 50 matter for video teams. First, providers of AI systems that generate synthetic audio, image, video, or text must mark those outputs, in a machine-readable form, as artificially generated — Article 50(2). Second, anyone deploying an AI system that creates or manipulates video amounting to a "deep fake" must disclose that the content is artificially generated or manipulated — Article 50(4). In plain terms: if your product makes or meaningfully alters a video with AI, the output must carry a machine-readable "made by AI" mark, and a viewer-facing disclosure where it could be mistaken for real.
There is a nuance worth holding onto, because it draws the line between a caption tool and a deepfake. Article 50(2) does not apply where the AI "performs an assistive function for standard editing" or does not substantially alter the input. Auto-trimming silence or cleaning up audio is assistive editing. Generating a synthetic presenter who never existed, or putting words in a real person's mouth, is substantial alteration. The first sits below the disclosure line; the second sits above it. When you are unsure, the safe reading is that anything a viewer could mistake for unaltered reality needs disclosure.
How do you actually attach a machine-readable "made by AI" mark to a video? This is where the C2PA standard comes in. C2PA — the Coalition for Content Provenance and Authenticity, a Joint Development Foundation project — publishes a technical specification for Content Credentials: a cryptographically signed record, attached to the media, that states where the content came from and how it was changed. By 2026 the specification reached version 2.4, and its 2.3 revision added support for live video, so even a stream can carry provenance. The practical effect is that "mark the output as AI-generated" has a concrete, standard implementation you can adopt rather than invent. Watermarking schemes such as Google's SynthID complement it for cases where a visible or embedded signal is wanted. We engineer the full disclosure stack — Content Credentials, watermarking, and the user-facing labels — in the C2PA and disclosure-engineering article, and the broader regulatory picture in the EU AI Act engineering article.
The reason this is a build requirement and not a legal footnote is timing. Provenance signing is cheap when it is part of your pipeline from the start — the moment a frame is generated or altered, you sign it. It is expensive and sometimes impossible to add later, because you cannot retroactively prove the origin of a video you already published unsigned. Put the governance layer on the map at design time, alongside the feature it serves.
Figure 5. The governance layer. Every AI generation or substantial alteration step (top) attaches a provenance and disclosure obligation (bottom): machine-readable marking under EU AI Act Article 50, implemented with C2PA Content Credentials and watermarking.
Track B in practice: the AI your engineers use to build
The other half of "AI in video production" is the half your users never see — the Track B tools that change how fast your team ships the product. This half matured fast. By the start of 2026, an industry developer survey found that roughly 74% of developers worldwide had adopted specialized AI development tools, and about 90% used at least one AI coding tool at work. The same survey found that around 70% of engineers run two to four such tools at once, the common pattern being one assistant inside the editor and another for larger, multi-step tasks.
The leaders, by that survey, sort into a familiar shape: the long-standing incumbent assistant remains the most widely used at work, while newer agentic tools — one editor-based, one command-line — each reached roughly 18% workplace use, with the command-line tool scoring highest on developer satisfaction. The names will rotate; the pattern is the durable insight, and it mirrors Track A exactly. There is a stable spine — the editor, the version-control system, the test suite, the review process — and a swappable layer of assistants on top. Adopt the assistants freely, because switching them is cheap, but never let them erode the spine. We profile the specific Track B agents for video work in the computer-use agents article and the framework choices in the agent-framework comparison.
The single discipline that makes Track B safe is the same one that catches a junior engineer's mistakes: review. An AI assistant writes a plausible first draft, and plausible is not the same as correct — the same 2026 survey found that a large share of developers still do not fully trust AI output accuracy. Treat generated code as a draft that must pass the same review, the same tests, and the same standards as any human-written code. Teams that keep that discipline ship faster with AI; teams that drop it ship faster and break more, then spend the saved time on incident calls. The speed is real, but it comes from a stronger spine, not a weaker one.
Where Fora Soft fits in
We have built video products since 2005 — video conferencing, streaming, OTT and Internet TV, surveillance, e-learning, telemedicine, and AR/VR — across more than 239 shipped projects, and the meta-playbook above is the system we use to scope AI work in any of them. We sort each requested capability into Track A or Track B, place it on the five-stage map, choose a sourcing mode against the client's real volume, wrap it behind a stable interface so the model stays swappable, and design the provenance layer in from the first sprint rather than after launch. The verticals differ — a telemedicine scribe and a live-shopping clipper raise very different privacy and disclosure questions — but the decision system is the same one laid out here.
What to read next
- The shape of AI inside a video product — the orientation article this playbook builds on.
- The real cost of AI in video products — the full pricing mechanics behind the four cost lines.
- C2PA and AI-disclosure engineering — how to implement the governance layer.
Talk to us · See our work · Download
- Talk to a video engineer about placing AI in your product — book a scoping call.
- See our case studies across conferencing, streaming, surveillance, and telemedicine — explore our work.
- Download the AI Video Tooling Decision Map — the one-page planner that fits this whole framework on a single sheet: get the PDF.
References
- European Parliament and Council. Regulation (EU) 2024/1689 (Artificial Intelligence Act), Article 50 — Transparency Obligations. Official Journal version of 13 June 2024; transparency obligations enter into force 2 August 2026 per Article 113. Read directly via the EU AI Act text. Tier 1 (official legislation). Supports: Article 50(2) machine-readable marking of synthetic audio/image/video/text with the standard-editing exception; Article 50(4) deepfake disclosure for deployers. https://artificialintelligenceact.eu/article/50/
- Coalition for Content Provenance and Authenticity (C2PA). C2PA Technical Specification — Content Credentials, v2.4 (2026). Joint Development Foundation project. Tier 1 (official specification). Supports: cryptographically signed provenance records attached to media; v2.3 added live-video support. https://spec.c2pa.org/specifications/specifications/2.4/index.html
- W3C. WebCodecs (Working Draft) and WebRTC 1.0 (Recommendation). Tier 1 (official web standards). Supports: the stable browser interfaces that give code low-level access to video frames and real-time media — part of the durable spine. https://www.w3.org/TR/webcodecs/
- IETF. RFC 8216 — HTTP Live Streaming; RFC 6716 — Definition of the Opus Audio Codec. Tier 1 (official standards). Supports: the delivery and audio plumbing the toolchain rides on, cited as examples of the stable spine. https://www.rfc-editor.org/rfc/rfc8216
- ISO/IEC 23000-19 — Common Media Application Format (CMAF). Tier 1 (official standard). Supports: the container the delivery stage and C2PA live-video signing build on. https://www.iso.org/standard/85623.html
- Bitmovin. 9th Annual Video Developer Report 2025/26 (September 2025). Tier 4 (deployer-survey). Supports: AI in video engineering led by accessibility/transcription (46%), personalization (35%), and tagging/categorization (35%); cost control the #1 concern (38%). https://bitmovin.com/video-developer-report/
- JetBrains. "Which AI Coding Tools Do Developers Actually Use at Work?" (April 2026). Tier 4 (developer survey). Supports: ~74% adopted AI dev tools by Jan 2026; ~90% use at least one at work; ~70% run two to four; workplace-use and satisfaction shares for leading assistants. https://blog.jetbrains.com/research/2026/04/which-ai-coding-tools-do-developers-actually-use-at-work/
- Meticulous Research; Grand View Research; Fortune Business Insights. AI video generation and editing software market sizing (2026). Tier 6 (analyst estimates, labelled with year). Supports: AI video generation & editing software market ~USD 3.67B in 2026 growing to ~USD 24.89B by 2036 (~21.4% CAGR); AI video generator segment ~USD 0.85–1.8B in 2026 depending on definition. https://www.meticulousresearch.com/product/ai-video-generation-and-editing-software-market-forecast-6359
- European Commission, Shaping Europe's Digital Future. Code of Practice on marking and labelling of AI-generated content (second draft, 3 March 2026). Tier 2 (implementing guidance). Supports: the practical labelling rules implementing Article 50; draft status flagged. https://digital-strategy.ec.europa.eu/en/policies/code-practice-ai-generated-content


