All posts

Claude Fable 5 vs GPT-5.6 Sol: $100 AI music video test

Huma ShaziaJuly 17, 2026 at 1:02 PM6 min read
Claude Fable 5 vs GPT-5.6 Sol: $100 AI music video test

Key Takeaways

GPT-5.6 Sol vs Claude Fable 5 – The ULTIMATE Comparison Test!

Claude Fable 5 vs GPT-5.6 Sol: $100 AI music video test
Source: Hacker News: Best
  • Claude Fable 5 spent $48.60 on generation but $25 on tokens, totaling $73.65. GPT-5.6 Sol spent $36.57 on generation but only $3.25 on tokens, totaling $39.82.
  • Both models autonomously researched video APIs, generated clips, edited with ffmpeg, and muxed final videos without human intervention.
  • GPT-5.6 Sol experimented with multiple video models in one run while Claude stuck to a single approach per budget tier.

A developer experiment pitted Claude Fable 5 against GPT-5.6 Sol in an unusual test: hand each model a song, a fixed dollar budget, and a set of tools, then let it autonomously produce a complete music video. No human editing. No hand-holding. The models researched video generation APIs, generated clips, analyzed their own footage, ran ffmpeg commands, and assembled final cuts. The result is a rare look at how frontier AI models make creative decisions when given real constraints.

Advertisement

What the experiment actually tested

The team at TryAI.dev built an agentic harness with six tools available to each model. A planning tool for thinking through strategy (free). Web search to research which video generation models exist. Budget checking. Image and video generation via FAL or Replicate APIs. And a local shell with ffmpeg for editing.

Both models received identical inputs: Bruno Mars and Mark Ronson's "Uptown Funk," a short text description, and a time-stamped lyric transcript. Each model ran at two budget levels, $25 and $100, for four total runs. Once the budget hit zero, paid generation stopped, but the model could continue editing whatever footage it had already produced.

The cost breakdown tells a different story than the headline

The $100 budget caps only the generation spend, meaning what the model pays FAL for actual video creation. But running the model itself costs money too. Claude Fable 5 charges $10 per million input tokens and $50 per million output tokens. GPT-5.6 Sol charges $5 and $30 respectively.

ModelBudgetGeneration SpendToken CostTotal Cost
Claude Fable 5$25$24.30$16.99$41.29
GPT-5.6 Sol$25$23.18$4.27$27.45
Claude Fable 5$100$48.60$25.05$73.65
GPT-5.6 Sol$100$36.57$3.25$39.82

Claude produced more clips at the $100 tier (80 vs. 70) and output at 1920x1080 resolution. But it burned through nearly eight times more on token costs than GPT-5.6 Sol. The Sol model benefited heavily from cached inputs, with 1.8 million of its 2.1 million input tokens coming from cache at the $100 level.

Different models made different creative choices

Given freedom to pick their own tools, the models diverged. Three of four runs went pure text-to-video. Only GPT-5.6 Sol at the $25 budget used an image-to-video pipeline, generating still frames with FLUX schnell at $0.003 per image, then animating them with Wan 2.2-5b.

At $100, GPT-5.6 Sol mixed three different video models in a single run: Wan 2.5 at $0.05 per second, Veo 3.1 Lite at $0.10 per second, and Hailuo 2.3 Standard at $0.28 per video. Claude Fable 5 stuck with a single model at each budget tier. At $100, it used Seedance 1.0 Pro, which outputs 1080p video at roughly $0.12 per second.

The error rates varied too. Claude Fable 5 at $100 had zero failed generation calls. GPT-5.6 Sol at $25 had 10 failures, mostly transient network errors. Failed calls weren't charged, but they consumed steps and time.

Advertisement

Wall-clock time was surprisingly similar

Despite different strategies, all four runs finished in 38 to 50 minutes. Claude Fable 5 at $100 finished fastest at 38 minutes 56 seconds with 28 steps. GPT-5.6 Sol at $100 took longest at 49 minutes 39 seconds with 34 steps. The $25 runs landed in between.

All four runs completed autonomously. None hit a step limit or timeout. Each produced a valid full-length video with the original song muxed in.

What founders should take from this

The experiment reveals a gap between nominal capability and actual cost. A "$100 AI video" might cost $73 or $40 depending on which model you choose, and the difference comes almost entirely from token pricing, not creative output. For startups building agentic workflows, model selection based on per-token cost matters more than headline budgets.

The models also showed different risk tolerances. Claude stuck with proven approaches. GPT-5.6 Sol experimented more, mixing models and trying image-to-video pipelines. Neither is inherently better. The right choice depends on whether you're optimizing for predictability or exploration.

The full harness is open-sourced at github.com/hershalb/music-video-arena. Anyone can fork it, swap in different models, and run their own comparisons.

ℹ️

Logicity's Take

This benchmark matters because it tests what agentic AI actually does when given autonomy and budget constraints, not just what it can do on isolated prompts. For founders building AI-powered creative tools, the 8x difference in token costs between Claude and GPT-5.6 Sol is the real finding. If you're using tools like [n8n](https://logicity.in/r/n8n) or [Make](https://logicity.in/r/make) to orchestrate AI workflows, model selection for agentic tasks should factor in total cost, not just API pricing per call. [Zapier](https://logicity.in/r/zapier) users running high-volume agentic loops will see these differences compound fast.

ℹ️

Disclosure

Some links in this post are affiliate links — Logicity earns a commission if you sign up, at no extra cost to you. We only link products we have used or actively recommend.

Also Read
16 AI prompt templates that stop agents from wasting money

Directly relevant for founders trying to control costs in agentic AI workflows

Frequently Asked Questions

How much does it cost to generate an AI music video?

In this test, total costs ranged from $27.45 to $73.65 for a full-length video, depending on the model and budget tier. Generation APIs charged $0.05 to $0.28 per clip, but the model's own token usage added $3 to $25 per run.

Can AI autonomously edit video with ffmpeg?

Yes. Both Claude Fable 5 and GPT-5.6 Sol used ffmpeg commands to analyze audio, cut clips, concatenate footage, and mux the final video with the original song. The models wrote and executed these commands without human intervention.

Which AI model is better for video generation?

It depends on your priorities. Claude Fable 5 produced more clips and higher resolution output but cost nearly twice as much overall. GPT-5.6 Sol experimented with multiple video models and finished cheaper due to lower token costs.

What video generation APIs did the models use?

The models chose from FAL and Replicate APIs. Options included Wan 2.5, Wan 2.2-5b, Veo 3.1 Lite, Hailuo 2.3 Standard, Seedance 1.0 Pro, and FLUX schnell for image generation.

ℹ️

Need Help Implementing This?

Logicity helps startups design cost-effective AI workflows. If you're building agentic systems and want to understand the real cost implications, reach out at logicity.in/contact.

Source: Hacker News: Best / TryAI

Advertisement
H

Huma Shazia

Senior AI & Tech Writer

Produced with AI assistance and reviewed by the Logicity editorial team. Learn more in our Editorial Policy.