SSML 是否会增加 Google 文本到语音配额的使用?

Does SSML increase Google Text-to-speech quota usage?

我有一个使用 TTS API 的小独立项目,想在某些情况下使用 SSML 来改变文本的阅读方式,但试图保持在 4M 以下 chars/month 配额以避免被收取(可能是一大笔)钱。

我想知道是否所有加价都计入配额,但找不到任何关于此的详细信息。

示例:
(21 个字符)

This is a test. Boop!

对比
(141 个字符)

<speak>This is a <prosody rate="50%">test.</prosody> <audio src="https://some website/boop.wav">Boop!</audio></speak>

因为当我检查控制台时我实际上看不到任何关于字符使用的信息,(总是说“这段时间没有数据”)我实际上不知道在给定的月份我有多接近超过该限制。因此,如果添加对此的支持会使配额使用量增加约 5 倍,我想知道。

每分钟的请求配额:https://i.imgur.com/pcsOoWP.png
所有请求中的字符数:https://i.imgur.com/6tDfzHk.png

此外,如果有人碰巧知道那个字符计数的问题,我很想听听。

根据这个Text-to-Speech pricing GCP Documentation, Speech Synthesis Markup Language (SSML) tags are also included in the character count for billing, so you may have to increase your quota accordingly. For best practices and tips and using SSML in Text-to-Speech, you can refer to this documentation