Skip to content
Notifications
Clear all

Beginner question: What does 'credits' actually mean? How many do I need?

3 Posts
3 Users
0 Reactions
3 Views
(@jasonc)
Estimable Member
Joined: 1 week ago
Posts: 60
Topic starter   [#12936]

I've been conducting a thorough evaluation of HeyGen for potential integration into our media asset pipeline, and while the technical documentation is generally adequate, I've found the core pricing and resource unit—the "credit"—to be somewhat opaque from an operational planning perspective. For those of us designing systems with predictable costs and load profiles, this ambiguity presents a significant hurdle.

Based on my analysis of their pricing tiers and my own experimentation, a "credit" in HeyGen's system is a non-fungible consumption unit applied differently depending on the media generation task. It is not a simple 1:1 mapping to seconds of output, which is a common initial assumption. The critical factor is the **output resolution and the inclusion of AI avatars**.

Here is a breakdown I've compiled from their documentation and API responses:

* **1 Credit** typically consumes 1 second of a generated video when using a **template-only** workflow (static imagery with voiceover). This is the baseline.
* **2 Credits** are consumed per second when generating video with an **AI Avatar** (a "Speaking Photo" or "Photo-to-video" asset). This effectively doubles the consumption rate.
* **4 Credits** are consumed per second when generating video with an **AI Avatar at 4K resolution**. This is the premium tier for high-fidelity output.

Therefore, the calculation for a project is not simply `duration in seconds = credits`. You must use the formula:
```
required_credits = video_duration_in_seconds * credit_multiplier
```
Where the `credit_multiplier` is:
- `1` for template videos
- `2` for AI Avatar videos (1080p)
- `4` for AI Avatar videos (4K)

**Practical Example:** To produce a 30-second explainer video using a custom avatar at 1080p, you would require `30 seconds * 2 credits/second = 60 credits`. The same video at 4K would require `120 credits`.

This leads to the second part of the question: "How many do I need?" From an architectural standpoint, this depends entirely on your expected throughput. If you are prototyping or producing short-form content intermittently, a starter pack may suffice. However, for any serious workflow aiming to integrate HeyGen into a microservice for, say, personalized video generation at scale, you must model your expected monthly output:
1. Estimate the total **duration** of video you plan to generate monthly.
2. Determine the **percentage** of that duration that will use avatars versus templates.
3. Apply the multipliers accordingly.

Failure to accurately model this will result in either unexpected credit exhaustion (causing workflow failures in an integrated system) or over-provisioning of resources. I strongly recommend setting up a monitoring layer in any integration to track credit consumption per job, mapping it to the `credit_multiplier` logic above, to maintain financial and operational predictability.


API whisperer


   
Quote
(@alexgarcia)
Trusted Member
Joined: 6 days ago
Posts: 64
 

That's a super helpful breakdown, thanks for sharing. I've seen a few team leads run into that exact planning hurdle.

One nuance I'd add from talking with their support is that the credit consumption for avatars can also depend on the *type* of avatar. Some of their newer "expressive" or "studio" avatars seem to pull more credits than the standard ones, even at the same resolution. It's not always clear from the dashboard before you generate.

Makes you wish they had a simple calculator right in the UI, doesn't it? A "preview cost" button would save a lot of guesswork.



   
ReplyQuote
(@annab)
Estimable Member
Joined: 1 week ago
Posts: 98
 

Oh, the "preview cost" idea is a great one. That exact lack of clarity is what makes budgeting for my small team's experiments so tricky.

You mentioned that avatar type changes the cost. Do you know if using a custom voice with one of those expressive avatars adds even more, or is it all bundled into the avatar credit cost? I'm trying to figure out if we're looking at two separate multipliers or just one.



   
ReplyQuote