diff --git a/.gitignore b/.gitignore
index 2ce1edd..dca5b44 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@ __pycache__
.DS_Store
.venv
_scripts
+*.env
\ No newline at end of file
diff --git a/app/dtos/user_batch.py b/app/dtos/user_batch.py
index c746373..a44778b 100644
--- a/app/dtos/user_batch.py
+++ b/app/dtos/user_batch.py
@@ -1,30 +1,35 @@
-import uuid
-from typing import Optional
-
-from pydantic import BaseModel, Field
-
-
-class DemographicInfo(BaseModel):
- phone: str
- passport_id: Optional[str] = None
- country: Optional[str] = None
-
-
-class UserDTO(BaseModel):
- id: uuid.UUID = Field(default_factory=uuid.uuid4)
- email: str
- name: str
- type: str
- passport_id: str
- passwordHash: str
- passwordSalt: str
- groupName: Optional[str] = None
- corporate: Optional[str] = None
- studentID: Optional[str | int] = None
- expiryDate: Optional[str] = None
- demographicInformation: Optional[DemographicInfo] = None
-
-
-class BatchUsersDTO(BaseModel):
- makerID: str
- users: list[UserDTO]
+import uuid
+from typing import Optional
+
+from pydantic import BaseModel, Field
+
+
+class DemographicInfo(BaseModel):
+ phone: str
+ passport_id: Optional[str] = None
+ country: Optional[str] = None
+
+class Entity(BaseModel):
+ id: str
+ role: str
+
+
+class UserDTO(BaseModel):
+ id: uuid.UUID = Field(default_factory=uuid.uuid4)
+ email: str
+ name: str
+ type: str
+ passport_id: str
+ passwordHash: str
+ passwordSalt: str
+ groupName: Optional[str] = None
+ corporate: Optional[str] = None
+ studentID: Optional[str] = None
+ expiryDate: Optional[str] = None
+ demographicInformation: Optional[DemographicInfo] = None
+ entities: list[dict] = Field(default_factory=list)
+
+
+class BatchUsersDTO(BaseModel):
+ makerID: str
+ users: list[UserDTO]
diff --git a/app/services/impl/training/training.py b/app/services/impl/training/training.py
index 7e5c8dd..ba1da4c 100644
--- a/app/services/impl/training/training.py
+++ b/app/services/impl/training/training.py
@@ -96,7 +96,9 @@ class TrainingService(ITrainingService):
for area in training_content.weak_areas:
weak_areas["weak_areas"].append(area.dict())
+ new_id = str(uuid.uuid4())
training_doc = {
+ 'id': new_id,
'created_at': int(datetime.now().timestamp() * 1000),
**exam_map,
**usefull_tips.dict(),
@@ -105,6 +107,7 @@ class TrainingService(ITrainingService):
}
doc_id = await self._db.save_to_db('training', training_doc)
return {
+ "id": new_id
"id": doc_id
}
diff --git a/app/services/impl/user.py b/app/services/impl/user.py
index bf64bd4..631f335 100644
--- a/app/services/impl/user.py
+++ b/app/services/impl/user.py
@@ -7,6 +7,11 @@ import shortuuid
from datetime import datetime
from logging import getLogger
+
+import pandas as pd
+from typing import Dict
+
+import shortuuid
from pymongo.database import Database
from app.dtos.user_batch import BatchUsersDTO, UserDTO
@@ -49,6 +54,15 @@ class UserService(IUserService):
FileHelper.remove_file(path)
return {"ok": True}
+ @staticmethod
+ def _map_to_batch(request_data: Dict) -> BatchUsersDTO:
+ users_list = [{**user} for user in request_data["users"]]
+ for user in users_list:
+ user["studentID"] = str(user["studentID"])
+
+ users: list[UserDTO] = [UserDTO(**user) for user in users_list]
+ return BatchUsersDTO(makerID=request_data["makerID"], users=users)
+
@staticmethod
def _generate_firebase_auth_csv(batch_dto: BatchUsersDTO, path: str):
# https://firebase.google.com/docs/cli/auth#file_format
@@ -119,12 +133,6 @@ class UserService(IUserService):
self._insert_new_user(user)
code = self._create_code(user, maker_id)
- if user.type == "corporate":
- self._set_corporate_default_groups(user)
-
- if user.corporate:
- self._assign_corporate_to_user(user, code)
-
if user.groupName and len(user.groupName.strip()) > 0:
self._assign_user_to_group_by_name(user, maker_id)
@@ -144,7 +152,8 @@ class UserService(IUserService):
'isFirstLogin': False,
'isVerified': True,
'registrationDate': datetime.now(),
- 'subscriptionExpirationDate': user.expiryDate
+ 'subscriptionExpirationDate': user.expiryDate,
+ 'entities': user.entities
}
self._db.users.insert_one(new_user)
@@ -164,74 +173,6 @@ class UserService(IUserService):
})
return code
- def _set_corporate_default_groups(self, user: UserDTO):
- user_id = str(user.id)
- default_groups = [
- {
- 'admin': user_id,
- 'id': str(uuid.uuid4()),
- 'name': "Teachers",
- 'participants': [],
- 'disableEditing': True,
- },
- {
- 'admin': user_id,
- 'id': str(uuid.uuid4()),
- 'name': "Students",
- 'participants': [],
- 'disableEditing': True,
- },
- {
- 'admin': user_id,
- 'id': str(uuid.uuid4()),
- 'name': "Corporate",
- 'participants': [],
- 'disableEditing': True,
- }
- ]
- for group in default_groups:
- self._db.groups.insert_one(group)
-
- def _assign_corporate_to_user(self, user: UserDTO, code: str):
- user_id = str(user.id)
- corporate_user = self._db.users.find_one(
- {"email": user.corporate}
- )
- if corporate_user:
- self._db.codes.update_one(
- {"id": code},
- {"$set": {"creator": corporate_user["id"]}},
- upsert=True
- )
- group_type = "Students" if user.type == "student" else "Teachers"
-
- group = self._db.groups.find_one(
- {
- "admin": corporate_user["id"],
- "name": group_type
- }
- )
-
- if group:
- participants = group['participants']
- if user_id not in participants:
- participants.append(user_id)
- self._db.groups.update_one(
- {"id": group["id"]},
- {"$set": {"participants": participants}}
- )
-
- else:
- group = {
- 'admin': corporate_user["id"],
- 'id': str(uuid.uuid4()),
- 'name': group_type,
- 'participants': [user_id],
- 'disableEditing': True,
- }
-
- self._db.groups.insert_one(group)
-
def _assign_user_to_group_by_name(self, user: UserDTO, maker_id: str):
user_id = str(user.id)
diff --git a/elai/AvatarEnum.py b/elai/AvatarEnum.py
new file mode 100644
index 0000000..73e1840
--- /dev/null
+++ b/elai/AvatarEnum.py
@@ -0,0 +1,62 @@
+from enum import Enum
+
+
+class AvatarEnum(Enum):
+ # Works
+ GIA_BUSINESS = {
+ "avatar_code": "gia.business",
+ "avatar_gender": "female",
+ "avatar_url": "https://elai-avatars.s3.us-east-2.amazonaws.com/common/gia/business/gia_business.png",
+ "avatar_canvas": "https://elai-avatars.s3.us-east-2.amazonaws.com/common/gia/business/gia_business.png",
+ "voice_id": "EXAVITQu4vr4xnSDxMaL",
+ "voice_provider": "elevenlabs"
+ }
+ # Works
+ VADIM_BUSINESS = {
+ "avatar_code": "vadim.business",
+ "avatar_gender": "male",
+ "avatar_url": "https://elai-avatars.s3.us-east-2.amazonaws.com/common/vadim/business/vadim_business.png",
+ "avatar_canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/vadim/business/vadim_business.png",
+ "voice_id": "flq6f7yk4E4fJM5XTYuZ",
+ "voice_provider": "elevenlabs"
+ }
+ ORHAN_BUSINESS = {
+ "avatar_code": "orhan.business",
+ "avatar_gender": "male",
+ "avatar_url": "https://elai-avatars.s3.us-east-2.amazonaws.com/common/orhan/business/orhan.png",
+ "avatar_canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/orhan/business/orhan.png",
+ "voice_id": "en-US-AndrewMultilingualNeural",
+ "voice_provider": "azure"
+ }
+ FLORA_BUSINESS = {
+ "avatar_code": "flora.business",
+ "avatar_gender": "female",
+ "avatar_url": "https://elai-avatars.s3.us-east-2.amazonaws.com/common/flora/business/flora_business.png",
+ "avatar_canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/flora/business/flora_business.png",
+ "voice_id": "en-US-JaneNeural",
+ "voice_provider": "azure"
+ }
+ SCARLETT_BUSINESS = {
+ "avatar_code": "scarlett.business",
+ "avatar_gender": "female",
+ "avatar_url": "https://elai-avatars.s3.us-east-2.amazonaws.com/common/scarlett/business/scarlett_business.png",
+ "avatar_canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/scarlett/business/scarlett_business.png",
+ "voice_id": "en-US-NancyNeural",
+ "voice_provider": "azure"
+ }
+ PARKER_CASUAL = {
+ "avatar_code": "parker.casual",
+ "avatar_gender": "male",
+ "avatar_url": "https://elai-avatars.s3.us-east-2.amazonaws.com/common/parker/casual/parker_casual.png",
+ "avatar_canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/parker/casual/parker_casual.png",
+ "voice_id": "en-US-TonyNeural",
+ "voice_provider": "azure"
+ }
+ ETHAN_BUSINESS = {
+ "avatar_code": "ethan.business",
+ "avatar_gender": "male",
+ "avatar_url": "https://elai-avatars.s3.us-east-2.amazonaws.com/common/ethan/business/ethan_business_low.png",
+ "avatar_canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/ethan/business/ethan_business_low.png",
+ "voice_id": "en-US-JasonNeural",
+ "voice_provider": "azure"
+ }
diff --git a/elai/avatars.json b/elai/avatars.json
new file mode 100644
index 0000000..463c50a
--- /dev/null
+++ b/elai/avatars.json
@@ -0,0 +1,1965 @@
+{
+ "avatars": [
+ {
+ "code": "gia",
+ "name": "Gia",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "limit": 300,
+ "defaultVoice": "elevenlabs@EXAVITQu4vr4xnSDxMaL",
+ "age": 32,
+ "ethnicity": "Black",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/business/listening/Gia_business_1.png",
+ "file": "s3://elai-avatars/common/gia/business/listening/gia_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/gia/business/listening/gia_business_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/business/gia_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/business/gia_business.png",
+ "limit": 300,
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/new_intro/gia_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/new_intro/Gia_business.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/casual/gia_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/casual/gia_casual.png",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/casual/listening/Gia_casual_1.png",
+ "file": "s3://elai-avatars/common/gia/casual/listening/gia_casual_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/gia/casual/listening/gia_casual_listening_alpha.mp4"
+ },
+ "limit": 300,
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/new_intro/gia_casual_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/new_intro/Gia_casual.png"
+ }
+ ]
+ },
+ {
+ "code": "dylan",
+ "name": "Dylan",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "limit": 300,
+ "age": 25,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/casual/listening/Dylan_casual_1.png",
+ "file": "s3://elai-avatars/common/dylan/casual/listening/dylan_casual_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/dylan/casual/listening/dylan_casual_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/casual/dylan_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/casual/dylan_casual.png",
+ "limit": 300,
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/new_intro/dylan_casual_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/new_intro/Dylan-casual.png"
+ },
+ {
+ "code": "call_centre",
+ "id": "call_centre",
+ "name": "Call Centre",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/callcentre/listening/Dylan_callcenter_1.png",
+ "file": "s3://elai-avatars/common/dylan/callcentre/listening/dylan_callcentre_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/dylan/callcentre/listening/dylan_callcentre_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/callcentre/dylan_callcentre.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/callcentre/dylan_callcentre.png",
+ "limit": 300,
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/new_intro/dylan_callcentre_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/dylan/new_intro/Dylan-callcentre.png"
+ }
+ ]
+ },
+ {
+ "code": "1547917583563",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": 0,
+ "left": 0,
+ "zoom": 1
+ },
+ "gender": "female",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v5_3d_render_small_quit_girl_with_flower_in_hair_p_0-1_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92NV8zZF9yZW5kZXJfc21hbGxfcXVpdF9naXJsX3dpdGhfZmxvd2VyX2luX2hhaXJfcF8wLTFfdGh1bWJuYWlsLmpwZyIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNzY1NDQwMH19fV19&Signature=Dy5ZIrpDYdEjNlQPx7SCoKjkrsgjLQMTYCs8hNQwYOY3OP71IaSPJrXbtGVGdgzt%7E6TJ9rFEGFodWzJjbsSsFnUql4uB8sqphLTWv0BHE7EYzvihHo-iIvsGx7Sl-Cy4QM9g4EmNosnipXJk15g3EdeOEfsI9cpojAuDVKrnOsd-bXta22KwDKwpcA0TJ66X0b9CBrr6KMSNNMNZGty4Ts5afaEpcycyRBLOiWDNaSh3DlJx%7EvjZ1W8YT3eElItQVQmuoc5kyKwmtqhFiQ4LD5r22CU41ZI32IeVkESyRQ41N4xNq1yClcyc9WirAZdnLck5y0tnJNwPqVZDvTIWVA__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v5_3d_render_small_quit_girl_with_flower_in_hair_p_0-1.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92NV8zZF9yZW5kZXJfc21hbGxfcXVpdF9naXJsX3dpdGhfZmxvd2VyX2luX2hhaXJfcF8wLTEuanBnIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI3NjU0NDAwfX19XX0_&Signature=ngJIsM1sdBNNXYh9Ro-4HKxF7hGaD%7Edu7dkzPkpwEn8Mc0BGgO0vTzxKfUx2OgTlDxoIJ%7ETt1J1rVQwVvETpvFWOZzsCIOJoWR7%7EDX3UBqAM%7E-iY8C6psCg5HBA53URZ9zN97wVyTBZrDCJvJzlnyYkrbWkfpsq4AjG3J-9lMApYe27%7EzGdsx9FvBkd7%7Ew25%7EOFHoDfAlfqv0v436JuKtxAEJTJnbsTXL0V%7ELQ6YT%7ExPzfMzC2ExG6I0K3L%7EiCgCykicVdpEk70Q5bD9X1D8d3QYD94IDpJiYQAD3jye3XqIk2O1-sq07ERY3mfua63EGd6Dax5wY1ERldawCYpq3g__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 0,
+ "y": 0,
+ "faceWidth": 768,
+ "faceHeight": 830,
+ "faceShare": 0.7204861111111112
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-5.mp4",
+ "variants": []
+ },
+ {
+ "code": "vadim",
+ "name": "Vadim",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 40,
+ "ethnicity": "White / Caucasian",
+ "defaultVoice": "elevenlabs@flq6f7yk4E4fJM5XTYuZ",
+ "limit": 300,
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/vadim/business/vadim_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/vadim/business/vadim_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/vadim/intro/vadim_bus.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/vadim/intro/vadim_bus.png",
+ "limit": 300
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/vadim/casual/vadim_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/vadim/casual/vadim_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/vadim/intro/vadim_cas.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/vadim/intro/vadim_cas.png"
+ }
+ ]
+ },
+ {
+ "code": "max",
+ "name": "Max",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "limit": 300,
+ "defaultVoice": "elevenlabs@TX3LPaxmHKxFdv7VOQHJ",
+ "age": 29,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/max/listening_business/Max_business_1.png",
+ "file": "s3://elai-avatars/common/max/listening_business/max_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/max/listening_business/max_business_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/max/max_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/max/max_business.png",
+ "limit": 300,
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/max/new_intro/max_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/max/new_intro/Max-business.png"
+ },
+ {
+ "code": "doctor",
+ "id": "doctor",
+ "name": "Doctor",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/max/doctor/listening_doctor/Max_doctor_1.png",
+ "file": "s3://elai-avatars/common/max/doctor/listening_doctor/max_doctor_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/max/doctor/listening_doctor/max_doctor_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/max/doctor/max_doctor.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/max/doctor/max_doctor.png",
+ "tilt": {
+ "left": 0.02
+ },
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/max/new_intro/max_doctor_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/max/new_intro/Max-doctor.png"
+ },
+ {
+ "code": "construction",
+ "id": "construction",
+ "name": "Construction",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/max/const/max_const.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/max/const/max_const_1.png",
+ "tilt": {
+ "left": 0.04
+ },
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/max/new_intro/max_constr_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/max/new_intro/Max-constr.png"
+ }
+ ]
+ },
+ {
+ "code": "daniel",
+ "name": "Daniel",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 30,
+ "ethnicity": "Black, Latino / Hispanic",
+ "limit": 300,
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/daniel/casual/daniel_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/daniel/casual/daniel_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/daniel/intro/daniel.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/daniel/intro/Daniel.png",
+ "limit": 300
+ },
+ {
+ "code": "fitness",
+ "id": "fitness",
+ "name": "Fitness",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/daniel/fitness/daniel_fitness.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/daniel/fitness/daniel_fitness.png",
+ "intro": "https://elai-avatars.s3.us-east-2.amazonaws.com/common/daniel/intro/fitness.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/daniel/intro/fitness.png",
+ "limit": 300
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/daniel/business/daniel_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/daniel/business/daniel_business.png",
+ "intro": "",
+ "introPoster": "",
+ "limit": 300
+ }
+ ]
+ },
+ {
+ "code": "neyson",
+ "name": "Neyson",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 25,
+ "limit": 300,
+ "ethnicity": "Black",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/neyson/business/2/neyson.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/neyson/business/neyson.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/neyson/business/intro/neyson.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/neyson/business/intro/neyson_int.png"
+ }
+ ]
+ },
+ {
+ "code": "orhan",
+ "name": "Orhan",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 34,
+ "limit": 300,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/orhan/casual/orhan.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/orhan/casual/orhan.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/orhan/intro/orhan_cas.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/orhan/intro/orhan_cas_1.png",
+ "limit": 300
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/orhan/business/orhan.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/orhan/business/orhan.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/orhan/intro/orhan_bus.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/orhan/intro/orhan_bus_1.png",
+ "limit": 300
+ }
+ ]
+ },
+ {
+ "code": "evelina",
+ "name": "Evelina",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 20,
+ "ethnicity": "Asian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/evelina/casual/evelina_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/evelina/casual/evelina_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/evelina/intro/evelina_cas.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/evelina/intro/evelina_cas.png"
+ }
+ ]
+ },
+ {
+ "code": "1363961221861",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": -0.1366120218579235,
+ "left": 0.08469945355191257,
+ "zoom": 2.098360655737705
+ },
+ "gender": "male",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/photoreal_a_photorealistic_portrait_of_a_man_in_a_crisp_busine_3_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9waG90b3JlYWxfYV9waG90b3JlYWxpc3RpY19wb3J0cmFpdF9vZl9hX21hbl9pbl9hX2NyaXNwX2J1c2luZV8zX3RodW1ibmFpbC5qcGciLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE3Mjc2NTQ0MDB9fX1dfQ__&Signature=uxb9UauWuHwnwMvBu2MKyHUd9fbOM%7E%7E4acjoLBLA5pUzzzkcZ0t9RWakHMkCddm3dnB1ct%7EB47k2utZRt35gLntljXz-WqcVAzB3C69nkrard0meITSVxmfhiqxvkdb9M9I-QiMpQGvRL%7EbU1pbV2hfAQh7O3Rww85na%7EjzNgv7seBEEFPuYEGv8WVrE31SmhP8hnSKJlnaqc13PVPtBEW%7EiUChB8-NvdZFLJzfeC49gJ3ZNtKsvCMNOA2BkHLxSNLN3LBjGBDM-AnrKgRUHkmTPrOj2F%7EwoDNcGTNVIaKzerWBlT0r0NyvygbKK9a-ax%7EQ4cOEQPatCZ9eYSA5Qnw__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/photoreal_a_photorealistic_portrait_of_a_man_in_a_crisp_busine_3.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9waG90b3JlYWxfYV9waG90b3JlYWxpc3RpY19wb3J0cmFpdF9vZl9hX21hbl9pbl9hX2NyaXNwX2J1c2luZV8zLmpwZyIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNzY1NDQwMH19fV19&Signature=QEOQYwhNitxBDl74ktuZ62b%7EM7uRWn1dXuP9D2sC3WxftpA7r8J7X1nLFaKHfz7i1O9RyRNZP7TyIEl6JIWDI4Vmlmyy29vvtmdks%7EK9VdyVDr6sZj7JJpTGQ6blZOha9YordXNAOleySrXBMQlRXmLVBiKRozzBU7DxZ7IYb0yiRNcH1nS3l3j4L2FGyIuwjcWku-cDUQL2wxHL5OzLklrc5kppIGQPxtpQg1Gi5zxKrX-Bq5x%7E1Hwj6LSTP9EhUq%7E5TtE7ls-31x2erC7s0XrK4TWX2j32pHHWvxtWmFBriuMPyPJN0ffMXbtdK3z%7EKdFaA-dduPO4gTIvB-xEWA__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 170,
+ "y": 50,
+ "faceWidth": 366,
+ "faceHeight": 366,
+ "faceShare": 0.3177083333333333
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-6.mp4",
+ "variants": []
+ },
+ {
+ "code": "mila",
+ "name": "Mila",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 27,
+ "limit": 300,
+ "ethnicity": "Asian",
+ "defaultVoice": "elevenlabs@ThT5KcBeYPX3keUQqHPh",
+ "variants": [
+ {
+ "code": "doctor",
+ "id": "doctor",
+ "name": "Doctor",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/doctor/listening/Mila_doctor_1.png",
+ "file": "s3://elai-avatars/common/mila/doctor/listening/mila_doctor_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/mila/doctor/listening/mila_doctor_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/doctor/mila_doctor.jpg",
+ "limit": 300,
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/doctor/mila_doctor.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/new_intro/mila_doctor_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/new_intro/Mia-doctor.png"
+ },
+ {
+ "code": "chief",
+ "id": "chief",
+ "name": "Chef",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/chief/listening/Mila_chief_1.png",
+ "file": "s3://elai-avatars/common/mila/chief/listening/mila_chief_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/mila/chief/listening/mila_chief_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/chief/mila_chief.jpg",
+ "limit": 300,
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/chief/mila_chief.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/new_intro/mila_chef_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/mila/new_intro/Mia-chief.png"
+ }
+ ]
+ },
+ {
+ "code": "derek",
+ "name": "Derek",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "limit": 300,
+ "defaultVoice": "elevenlabs@VR6AewLTigWG4xSOukaG",
+ "age": 29,
+ "ethnicity": "Latino / Hispanic",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/listening/Derek_casual_1.png",
+ "file": "s3://elai-avatars/common/derek/listening/derek_casual_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/derek/listening/derek_casual_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/derek_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/derek_casual.png",
+ "limit": 300,
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/new_intro/derek_casual_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/new_intro/Derek-casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/business/listening/Derek_business__1.png",
+ "file": "s3://elai-avatars/common/derek/business/listening/derek_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/derek/business/listening/derek_business_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/business/derek_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/business/derek_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/new_intro/derek_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/derek/new_intro/Derek-business.png"
+ }
+ ]
+ },
+ {
+ "code": "rory",
+ "name": "Rory",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 25,
+ "ethnicity": "Latino / Hispanic",
+ "variants": [
+ {
+ "code": "fitness",
+ "id": "fitness",
+ "name": "Fitness",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/rory/rory_fitness.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/rory/rory_fitness.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/rory/new_intro/rory_fitness_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/rory/new_intro/Rory-fintess.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/rory/business/rory_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/rory/business/rory_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/rory/new_intro/rory_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/rory/new_intro/Rory-business.png"
+ }
+ ]
+ },
+ {
+ "code": "flora",
+ "name": "Flora ",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 35,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/flora/business/flora_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/flora/business/flora_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/flora/new_intro/flora_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/flora/new_intro/flora_business.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/flora/casual/flora_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/flora/casual/flora_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/flora/new_intro/flora_casual_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/flora/new_intro/Flora_casual.png"
+ }
+ ]
+ },
+ {
+ "code": "scarlett",
+ "name": "Scarlett",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/scarlett/business/scarlett_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/scarlett/business/scarlett_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/scarlett/new_intro/scarlett.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/scarlett/new_intro/scarlett.png",
+ "age": 40,
+ "ethnicity": "White / Caucasian",
+ "variants": []
+ },
+ {
+ "code": "parker",
+ "name": "Parker",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 35,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "tilt": {
+ "left": -0.05
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/parker/business/parker_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/parker/business/parker_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/parker/new_intro/parker_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/parker/new_intro/Parker.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/parker/casual/parker_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/parker/casual/parker_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/parker/new_intro/parker_casual_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/parker/new_intro/Parker_casual+.png"
+ }
+ ]
+ },
+ {
+ "code": "roy",
+ "name": "Roy",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 25,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/roy/casual/roy_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/roy/casual/roy_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/roy/new_intro/roy_casual_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/roy/new_intro/Roy_casual.png"
+ },
+ {
+ "code": "chief",
+ "id": "chief",
+ "name": "Chef",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/roy/chief/roy_chief.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/roy/chief/roy_chief.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/roy/new_intro/roy_chef_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/roy/new_intro/Roy_chief.png"
+ }
+ ]
+ },
+ {
+ "code": "enzo",
+ "name": "Enzo",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "limit": 300,
+ "age": 40,
+ "ethnicity": "Black",
+ "variants": [
+ {
+ "code": "doctor",
+ "id": "doctor",
+ "name": "Doctor",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/listening/Enzo_doctor_1.png",
+ "file": "s3://elai-avatars/common/enzo/listening/enzo_doctor_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/enzo/listening/enzo_doctor_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/enzo_doctor.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/enzo_doctor..png",
+ "limit": 300,
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/new_intro/enzo_doctor_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/new_intro/Enzo-doctor.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/casual/listening/Enzo_casual_1.png",
+ "file": "s3://elai-avatars/common/enzo/casual/listening/enzo_casual_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/enzo/casual/listening/enzo_casual_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/casual/enzo_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/casual/enzo_casual.png",
+ "limit": 300,
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/new_intro/enzo_casual_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/enzo/new_intro/Enzo-casual.png"
+ }
+ ]
+ },
+ {
+ "code": "magnolia_v2",
+ "name": "Magnolia",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "limit": 300,
+ "age": 35,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/magnolia/listening_business/Magnolia_business_1.png",
+ "file": "s3://elai-avatars/common/magnolia/listening_business/magnolia_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/magnolia/listening_business/magnolia_business_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/magnolia/magnolia_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/magnolia/magnolia_business.png",
+ "limit": 300
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/magnolia/casual/listening_casual/Magnolia_casual_1.png",
+ "file": "s3://elai-avatars/common/magnolia/casual/listening_casual/magnolia_casual_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/magnolia/casual/listening_casual/magnolia_casual_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/magnolia/casual/magnolia_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/magnolia/casual/magnolia_casual.png",
+ "limit": 300
+ }
+ ]
+ },
+ {
+ "code": "1641142113121",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": -0.04684684684684685,
+ "left": -0.0045045045045045045,
+ "zoom": 1.3837837837837839
+ },
+ "gender": "female",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/photoreal_a_realistic_portrait_of_a_young_woman_with_long_flow_0_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9waG90b3JlYWxfYV9yZWFsaXN0aWNfcG9ydHJhaXRfb2ZfYV95b3VuZ193b21hbl93aXRoX2xvbmdfZmxvd18wX3RodW1ibmFpbC5qcGciLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE3Mjc2NTQ0MDB9fX1dfQ__&Signature=nzfp-C2lo6xqb5bIw4uBxJ-Y28co0cqt12FpYwvDbTiafe4S2jz67IidBzHLRw9wNSS9rDpZd6%7EPEPwhBmgYPESimtic2VsjWMrBjDKFT8Bhk1CyzB7u5nPLKUAZ2zhSZIgegykhdrJps18QzOhtKCPynNbWDTjbX-b9zieNBU90mTeXTj-GF8zZ-U92HtnKsFgksywiMKK2i-bc0Og%7EoepcsgpAOTauP4IDn78vEJZfedX6GJPkzKvCxbZW6qVLN8Y0i2jQQfQnY6Ljgce0oPCKd1uityzxibCjhggXOzXd5IItKjG6xcdt0kzrQ0ld6UTdWKHTl4D6mo2w86hcfg__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/photoreal_a_realistic_portrait_of_a_young_woman_with_long_flow_0.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9waG90b3JlYWxfYV9yZWFsaXN0aWNfcG9ydHJhaXRfb2ZfYV95b3VuZ193b21hbl93aXRoX2xvbmdfZmxvd18wLmpwZyIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNzY1NDQwMH19fV19&Signature=jQXWl1LfrBghfiKGNqjN67CmAY2h%7E-ou1XrWAfK%7EXe3zCcQP0FM%7ELumkkMXfv6KXfS6oC432LFB2uE0Y-21Ngr9ZIjTpRdVuQOQLuAw%7EmnkNq9RUauq%7EbjbB5KZRoKNoLGt47xyN3XLHs2h%7Eyd3NfmS5pkgYR3TuTU1kT91LLl4%7EWihuGQhjMu%7E-0eLAeqee3d46UpfYtrlBfFFPKQxCvtEc9fJfaI6mLQA%7ErUxPDqwLdq73ikedSw2eVjaeqOeQUYViZJF8Kg4LNiszHNowFfOx6T0UOgAsLX4bZyxxRsgErUSQd82g-4mCHWWyt4YOhzHpdnovcu3no7vdglWlCA__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 109,
+ "y": 26,
+ "faceWidth": 555,
+ "faceHeight": 555,
+ "faceShare": 0.4817708333333333
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-4.mp4",
+ "variants": []
+ },
+ {
+ "code": "amanda",
+ "name": "Amanda",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "limit": 300,
+ "age": 27,
+ "ethnicity": "White / Caucasian",
+ "defaultVoice": "elevenlabs@XrExE9yKIg1WjnnlVkGX",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/amanda_regular_low.jpg",
+ "limit": 300,
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/amanda_regular_low.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/new_intro/amanda-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/new_intro/Amanda-casual.png",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/listening_regular/Amanda_regular_1.png",
+ "file": "s3://elai-avatars/common/amanda/listening_regular/amanda_regular_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/amanda/listening_regular/amanda_regular_listening_alpha.mp4"
+ }
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "limit": 300,
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/amanda_business_low.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/amanda_business_low.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/new_intro/amanda-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/new_intro/Amanda-business.png",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/amanda/listening_business/Amanda_business_1.png",
+ "file": "s3://elai-avatars/common/amanda/listening_business/amanda_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/amanda/listening_business/amanda_business_listening_alpha.mp4"
+ }
+ }
+ ]
+ },
+ {
+ "code": "sonya",
+ "name": "Sonya",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 25,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/sonya/business/sonya_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/sonya/business/sonya_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/sonya/new_intro/intro.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/sonya/new_intro/Sonya.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/sonya/casual/sonya_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/sonya/casual/sonya_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/sonya/new_intro/Sonya_casual.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/sonya/new_intro/Sonya_casual.png"
+ }
+ ]
+ },
+ {
+ "code": "naomi",
+ "name": "Naomi",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/naomi_intro_2.mp4",
+ "age": 25,
+ "ethnicity": "Asian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/business_listening/Naomi_business_1.png",
+ "file": "s3://elai-avatars/common/naomi/business_listening/naomi_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/naomi/business_listening/naomi_business_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/naomi_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/naomi_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/new_intro/naomi_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/new_intro/Naomi_busines.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/casual/naomi_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/casual/naomi_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/new_intro/naomi_casual.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/naomi/new_intro/Naomi_casual.png"
+ }
+ ]
+ },
+ {
+ "code": "amber",
+ "name": "Amber",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 30,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/casual/amber_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/casual/amber_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/new_intro/amber-casual-1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/new_intro/Amber_casual.png",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/casual/listening/Amber_casual_1.png",
+ "file": "s3://elai-avatars/common/amber/casual/listening/amber_casual_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/amber/casual/listening/amber_casual_listening_alpha.mp4"
+ }
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/business/amber_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/business/amber_business.png",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/business/listening/Amber_business_1.png",
+ "file": "s3://elai-avatars/common/amber/business/listening/amber_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/amber/business/listening/amber_business_listening_alpha.mp4"
+ },
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/new_intro/amber-business-1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/amber/new_intro/Amber_business.png"
+ }
+ ]
+ },
+ {
+ "code": "lei",
+ "name": "Lei",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 30,
+ "ethnicity": "Asian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/lei/lei_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/lei/lei_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/lei/new_intro/lei-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/lei/new_intro/Lei-business.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/lei/casual/lei_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/lei/casual/lei_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/lei/new_intro/lei-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/lei/new_intro/Lei-casual.png"
+ }
+ ]
+ },
+ {
+ "code": "taylor",
+ "name": "Taylor",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/taylor/taylor_intro_2.mp4",
+ "age": 28,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/taylor/casual/taylor_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/taylor/casual/taylor_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/taylor/new_intro/taylor-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/taylor/new_intro/Taylor-casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/taylor/business/taylor_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/taylor/business/taylor_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/taylor/new_intro/taylor-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/taylor/new_intro/Taylor-business.png"
+ }
+ ]
+ },
+ {
+ "code": "kevin",
+ "name": "Kevin",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 27,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/listening_casual/Kevin_casual_1.png",
+ "file": "s3://elai-avatars/common/kevin/listening_casual/kevin_casual_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/kevin/listening_casual/kevin_casual_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/kevin_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/kevin_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/new_intro/kevin-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/new_intro/Kevin-casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/business/listening_business/Kevin_business_1.png",
+ "file": "s3://elai-avatars/common/kevin/business/listening_business/kevin_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/kevin/business/listening_business/kevin_business_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/business/kevin_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/business/kevin_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/new_intro/kevin-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/new_intro/Kevin-business.png"
+ },
+ {
+ "code": "construction",
+ "id": "construction",
+ "name": "Construction",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/const/listening_constr/Kevin-const.png",
+ "file": "s3://elai-avatars/common/kevin/const/listening_constr/kevin_const_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/kevin/const/listening_constr/kevin_const_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/const/kevin_const.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/const/kevin_const.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/new_intro/kevin-construction_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/kevin/new_intro/Kevin-constr.png"
+ }
+ ]
+ },
+ {
+ "code": "cody",
+ "name": "Cody",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 35,
+ "ethnicity": "Black",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/cody/casual/cody_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/cody/casual/cody_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/cody/new_intro/cody-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/cody/new_intro/Cody-casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/cody/business/cody_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/cody/business/cody_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/cody/new_intro/cody-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/cody/new_intro/Cody-business.png"
+ }
+ ]
+ },
+ {
+ "code": "nancy",
+ "name": "Nancy",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 30,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/business/listening/Nancy_business_1.png",
+ "file": "s3://elai-avatars/common/nancy/business/listening/nancy_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/nancy/business/listening/nancy_business_listening_alpha.mp4"
+ },
+ "tilt": {
+ "left": -0.02
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/business/nancy_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/business/nancy_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/new_intro/nancy-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/new_intro/Nancy-business.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/casual/listening/Nancy_casual_1.png",
+ "file": "s3://elai-avatars/common/nancy/casual/listening/nancy_casual_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/nancy/casual/listening/nancy_casual_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/casual/nancy_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/casual/nancy_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/new_intro/nancy-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/nancy/new_intro/Nancy-casual.png"
+ }
+ ]
+ },
+ {
+ "code": "michael",
+ "name": "Michael",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 37,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/casual/michael_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/casual/michael_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/new_intro/michael-casual.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/new_intro/Michael-casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/business/michael_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/business/michael_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/new_intro/michael-business.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/new_intro/Michael-business.png"
+ },
+ {
+ "code": "construction",
+ "id": "construction",
+ "name": "Construction",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/constr/michael_constr.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/constr/michael_constr.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/new_intro/michael-construction.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/michael/new_intro/Michael-constr.png"
+ }
+ ]
+ },
+ {
+ "code": "emilia",
+ "name": "Emilia",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 25,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/emilia/business/emilia_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/emilia/business/emilia_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/emilia/new_intro/emilia_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/emilia/new_intro/Emilia__business.png"
+ },
+ {
+ "code": "doctor",
+ "id": "doctor",
+ "name": "Doctor",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/emilia/doctor/emilia_doctor.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/emilia/doctor/emilia_doctor.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/emilia/new_intro/emilia_doctor_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/emilia/new_intro/emilia_doctor.png"
+ }
+ ]
+ },
+ {
+ "code": "luke",
+ "name": "Luke",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 26,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/business/luke_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/business/luke_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/new_intro/luke-business.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/new_intro/Luke-business-1.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/casual/luke_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/casual/luke_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/new_intro/luke-casual.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/new_intro/Luke-casual.png"
+ },
+ {
+ "code": "business_2",
+ "id": "business_2",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/business2/luke_business_2.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/business2/luke_business_2.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/new_intro/luke-business-2.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/luke/new_intro/Luke-business-2.png"
+ }
+ ]
+ },
+ {
+ "code": "richard",
+ "name": "Richard",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 60,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/richard/business/richard_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/richard/business/richard_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/richard/new_intro/richard-business.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/richard/new_intro/Richard-business.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/richard/casual/richard_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/richard/casual/richard_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/richard/new_intro/richard-casual.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/richard/new_intro/Richard-casual.png"
+ }
+ ]
+ },
+ {
+ "code": "stella",
+ "name": "Stella",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 35,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/casual/stella_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/casual/stella_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/new_intro/stella_casual_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/new_intro/Stella-casual.png"
+ },
+ {
+ "code": "casual_2",
+ "id": "casual_2",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/casual2/stella_casual_2.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/casual2/stella_casual_2.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/new_intro/stella_casual2_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/new_intro/casual_2.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/business/stella_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/business/stella_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/new_intro/stella_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/stella/business/new_intro/Stella.png"
+ }
+ ]
+ },
+ {
+ "code": "kira",
+ "name": "Kira",
+ "type": null,
+ "status": 2,
+ "tilt": {
+ "left": 0.05
+ },
+ "gender": "female",
+ "age": 25,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/listening_business/Kira_business_1.png",
+ "file": "s3://elai-avatars/common/kira/listening_business/kira_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/kira/listening_business/kira_business_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/kira_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/kira_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/new_intro/kira_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/new_intro/Kira-business.png"
+ },
+ {
+ "code": "doctor",
+ "id": "doctor",
+ "name": "Doctor",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/doctor/listening_doctor/Kira_doctor_1.png",
+ "file": "s3://elai-avatars/common/kira/doctor/listening_doctor/kira_doctor_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/kira/doctor/listening_doctor/kira_doctor_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/doctor/kira_doctor.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/doctor/kira_doctor.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/new_intro/kira_doctor_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/kira/new_intro/Kira-doctor.png"
+ }
+ ]
+ },
+ {
+ "code": "kamal",
+ "name": "Kamal",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "limit": 300,
+ "age": 43,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/listening_casual/Kamal_casual_1.png",
+ "file": "s3://elai-avatars/common/kamal/listening_casual/kamal_casual_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/kamal/listening_casual/kamal_casual_listening_alpha.mp4"
+ },
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/new_intro/kamal-casual-1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/new_intro/Kamal_casual.png",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/low/kamal_look2.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/low/kamal_look2_low.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/listening_business/Kamal_business_1.png",
+ "file": "s3://elai-avatars/common/kamal/listening_business/kamal_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/kamal/listening_business/kamal_business_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/low/kamal.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/low/kamal_low.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/new_intro/kamal-business-1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/new_intro/Kamal_business.png",
+ "limit": 300
+ },
+ {
+ "code": "thobe",
+ "id": "thobe",
+ "name": "Thobe",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/thobe/kamal_look3.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/thobe/kamal_look3.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/new_intro/kamal-thobe-1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/kamal/new_intro/Kamal_thobe.png"
+ }
+ ]
+ },
+ {
+ "code": "joseph",
+ "name": "Joseph",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "age": 42,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "construction",
+ "id": "construction",
+ "name": "Construction",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/joseph/constr/joseph_constr.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/joseph/constr/joseph_constr.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/joseph/new_intro/joseph-construction.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/joseph/new_intro/Joseph-constr.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/joseph/business/joseph_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/joseph/business/joseph_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/joseph/new_intro/joseph.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/joseph/new_intro/joseph.png"
+ }
+ ]
+ },
+ {
+ "code": "657802031273",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": 0,
+ "left": 0.03474520185307743,
+ "zoom": 1.0814030443414957
+ },
+ "gender": "male",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/rectangle-1220_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9yZWN0YW5nbGUtMTIyMF90aHVtYm5haWwuanBnIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI3NjU0NDAwfX19XX0_&Signature=P2Q4kEr%7E4cqFUyLqu--T020wz0zk-FXjBSh2aAuAbmwxiQAYqaVZyULqoqSPInV1phqpYSJlcNuBGk0VqUC2hWsnN7jKruYVrEshi2A1uFEzWJiPljSWSU1Aa5SraX-AOFVwTlqS1WeZr41T05Gw3GroTYc2N%7E5vfiNLVZgnYHkTHDwXhLxyGntPg5j359JhhvslPldqiNs-pHV3zU3W7O0jurwWinjUMV-aoE0BEsSAczR%7Ebdn2A3K4Xk8i49oADT6ImzKCAFJg7bm3qlmNkQRa1fMH2QAldd4wRyJx2owMfRrX7Kr6%7EvXoMTL6HhhtRI3jvA12Fb5ktDDFS9km2A__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/rectangle-1220.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9yZWN0YW5nbGUtMTIyMC5qcGciLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE3Mjc2NTQ0MDB9fX1dfQ__&Signature=DdoMY8Z1x7XXqc8No7fkxOf64XzAjvSgg6CiWWledt818M6iermOxohEEbVmnciLzHcVL93bZhFVi8rB7vTyl1mDX6Z1cVxaOdvU0DrM4e0ueGyPdN-q3h08UMQESI4Sa3X4jlR29OSp3M9nUBmBsJBoiQOFR5z0g2RtTNqHba2E%7EX40ZY3RTR36H9Exlw99Op0xZOoXM5aqUEV5TNhS3ol2ULXq%7EIZ4-7TGiZ%7EpAZ%7Ea5rIbbYZv05szR0xFa%7E6y2AceUHkhWtCDm7skT%7E5FT%7EzAWJ5ezM9%7E6Pbw7naSIBoeTrC81Op7EjIIixddDZkqY1mNI-7R9xui4ysc%7EC5hbw__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 9,
+ "y": 0,
+ "faceWidth": 1511,
+ "faceHeight": 1441,
+ "faceShare": 0.8818849449204407
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-7.mp4",
+ "variants": []
+ },
+ {
+ "code": "388613879006",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": 0,
+ "left": 0.03092006033182504,
+ "zoom": 1.158371040723982
+ },
+ "gender": "female",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v7_3d_render_business_woman_light_colors_potrait_1_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92N18zZF9yZW5kZXJfYnVzaW5lc3Nfd29tYW5fbGlnaHRfY29sb3JzX3BvdHJhaXRfMV90aHVtYm5haWwuanBnIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI3NjU0NDAwfX19XX0_&Signature=KxF8cHlqdqHwgmhjFkB1OO%7EXHPyZMULKVg6tqWZHQR%7ESYbrJI5TSeVukQ6QElURrvkzvtk5lj1bLuB8N53Vh8Ouz2su7m8rLljNiVrf8VAM95uVksLf%7E0YqhlBBZTukCchcz-83HwfrSAHiEVUDr5v5ZCwIOEptSczPEUasIsWZrBrgh3BH-P1rdeHv09mZewUZ9ZSd4bZT0nsKETGm5C7cTr4t62yeS%7EEafqWXgnh1eS3q5riAo9NJCupdp6zqlxE7wTmmUUUwYILkn5paexRCcNSHbWC61XwVmDMOyyAqwtOpkp4JVHmkcNsySYofUq%7EIpzKfObk2ZMGU9iArCrA__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v7_3d_render_business_woman_light_colors_potrait_1.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92N18zZF9yZW5kZXJfYnVzaW5lc3Nfd29tYW5fbGlnaHRfY29sb3JzX3BvdHJhaXRfMS5qcGciLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE3Mjc2NTQ0MDB9fX1dfQ__&Signature=UTSitemYmaenXwDcYIkqk8DtVdyVoVWJBvBaxdyYQlSolPSUfFUIBy-HmSI01SaSCw23yQuZnx4wjWCtTk4knmRfp8cL3LroeILIrO2k-ifHa%7E73NPHeFXdQ74lvHGyXLMZvhkgJ3NeASqyf1G87-lh2l2qrQCMpaaHC2Z8ieg86H-8YTDZ0qpky7NU4FvTu0Vxx0kvrpJ80FJzA0pOBn4ykhdWWFlJ5PHyrsZncg9tjmgpkX%7EKA4AQ6E4911jo4rpXKkwDORXR27JI7nXe4yjHBCrMQU32N5z%7E%7Et5RUpPMUZzKGqtcoEdtzy%7ESFaw%7EsILfogIQk8oHeSJx9sa8lyQ__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 32,
+ "y": 0,
+ "faceWidth": 663,
+ "faceHeight": 620,
+ "faceShare": 0.60546875
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-9.mp4",
+ "variants": []
+ },
+ {
+ "code": "leyla",
+ "name": "Leyla",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "defaultVoice": "elevenlabs@Xb7hH8MSUJpSbSDYk0k2",
+ "age": 25,
+ "ethnicity": "Black",
+ "variants": [
+ {
+ "code": "fitness",
+ "id": "fitness",
+ "name": "Fitness",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/leyla/leyla_fitness.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/leyla/leyla_fitness.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/leyla/new_intro/leyla_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/leyla/new_intro/Leyla-fitness.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/leyla/business/leyla_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/leyla/business/leyla_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/leyla/new_intro/leyla-business.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/leyla/new_intro/Leyla-business.png"
+ }
+ ]
+ },
+ {
+ "code": "noah",
+ "name": "Noah",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/avatars/custom/noah_hq.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/avatars/custom/noah_hq.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/noah/new_intro/noah-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/noah/new_intro/Noah.png",
+ "age": 35,
+ "ethnicity": "Asian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/noah/noah1/noah.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/noah/noah1/noah.png"
+ },
+ {
+ "code": "doctor",
+ "id": "doctor",
+ "name": "Doctor",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/noah/doctor_2_hq/noah_doctor_hq.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/noah/doctor_2_hq/noah_doctor_hq.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/noah/new_intro/noah-doctor_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/noah/new_intro/Noah-doctor.png"
+ }
+ ]
+ },
+ {
+ "code": "aniqa",
+ "name": "Aniqa",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/aniqa/new_intro/aniqa_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/aniqa/new_intro/Aniqa.png",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/aniqa/aniqa_low.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/aniqa/aniqa_low.png",
+ "age": 28,
+ "ethnicity": "Middle Eastern",
+ "variants": []
+ },
+ {
+ "code": "dora",
+ "name": "Dora",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 31,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/dora/business/dora_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/dora/business/dora_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/dora/business/new_intro/dora_business_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/dora/business/new_intro/dora_business_new.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/dora/casual/dora_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/dora/casual/dora_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/dora/casual/new_intro/dora_casual_new.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/dora/casual/new_intro/dora.png"
+ }
+ ]
+ },
+ {
+ "code": "megan",
+ "name": "Megan",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/megan_intro_2.mp4",
+ "age": 30,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/megan_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/megan_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/new_intro/megan-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/new_intro/Megan-casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/business/megan_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/business/megan_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/new_intro/megan-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/new_intro/Megan-business.png"
+ },
+ {
+ "code": "doctor",
+ "id": "doctor",
+ "name": "Doctor",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/doctor/megan_doctor.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/doctor/megan_doctor.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/new_intro/megan-doctor_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/megan/new_intro/Megan-doctor.png",
+ "tilt": {
+ "left": 0.05
+ }
+ }
+ ]
+ },
+ {
+ "code": "1110947882243",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": 0,
+ "left": 0.27121771217712176,
+ "zoom": 2.8339483394833946
+ },
+ "gender": "male",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v7_a_closeup_of_a_distinguished_professor_wearing_0_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92N19hX2Nsb3NldXBfb2ZfYV9kaXN0aW5ndWlzaGVkX3Byb2Zlc3Nvcl93ZWFyaW5nXzBfdGh1bWJuYWlsLmpwZyIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNzY1NDQwMH19fV19&Signature=A7I837pRTr%7E5DtmwdbNHBt1IPOjATTu-F5EChshRpY%7EA%7E1gCgLLiLgCwsnriGUUBENiBLdnIEAVSmW7DVf-4gkuYW63HPSF7KuR1I-k0uRFfmFYszEg%7EW8PK17ICZUzgfphCgR3e39BcD-mBWoxel5aGRvDztt-ChqTvQdOSSRUZfIC-r7cLXyyzCXIum435fcRqn8C4SRg3b9uTbd%7EY4UnhnmHV4GyXrNwBEFZ-5E72vHBazydnLfORad3qtOtcEdV-8FCSGsUvZNX--rAzLdPn3ByIbdWMSvIAYsNBD26rd%7EPKeYL9eLFdNF1ah-de3TnXz%7EHYr0t5Y3YgPndI2Q__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v7_a_closeup_of_a_distinguished_professor_wearing_0.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92N19hX2Nsb3NldXBfb2ZfYV9kaXN0aW5ndWlzaGVkX3Byb2Zlc3Nvcl93ZWFyaW5nXzAuanBnIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI3NjU0NDAwfX19XX0_&Signature=a0iVpjluab4TU1Ck39r9o4WK1CUHxo645c1ANmHtAOqVxIN2kRqfXWRHzyOysR%7E%7ErLgXiKtU-9-ENCvZgPZIHqQi3SFZf8MS8cxkcZ3i2We5PeF0UnfLaDge3ITRVC-%7EWmwjPDS2BCzYsgX3PwTCd4GYFViCmpb3bODXWYNni0OzsSyHWyClCo-WYBa0MJFry5H8SS0c2m2ywErel8%7E1CsvLDw8WeEy7cfLb4%7Egus8kLno4xhDnIqh3Qc%7ENhVOrLH4L3uF2wNX43SRTX3GUoTX8yaaYRxp0adRTOSDsxKoHvvNtqAm9DGuQc3JPTeoSRlpicy7w9Yr3cwJRhxjxoaQ__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 175,
+ "y": 0,
+ "faceWidth": 271,
+ "faceHeight": 271,
+ "faceShare": 0.529296875
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-8.mp4",
+ "variants": []
+ },
+ {
+ "code": "margaret",
+ "name": "Margaret",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 50,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/margaret/business/margaret_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/margaret/business/margaret_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/margaret/new_intro/margaret-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/margaret/new_intro/Margaret-business.png"
+ },
+ {
+ "code": "doctor",
+ "id": "doctor",
+ "name": "Doctor",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/margaret/doctor/margaret_doctor.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/margaret/doctor/margaret_doctor.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/margaret/new_intro/margaret-doctor_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/margaret/new_intro/Margaret-doctor.png"
+ }
+ ]
+ },
+ {
+ "code": "olivia",
+ "name": "Olivia ",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 38,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/casual/listening_casual/Olivia_casual_1.png",
+ "file": "s3://elai-avatars/common/olivia/casual/listening_casual/olivia_casual listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/olivia/casual/listening_casual/olivia_casual listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/casual/olivia_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/casual/olivia_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/new_intro/olivia-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/new_intro/Olivia-casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "listeningAvatar": {
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/business/listening_business/Olivia_business_1.png",
+ "file": "s3://elai-avatars/common/olivia/business/listening_business/olivia_business_listening.mp4",
+ "alpha_video_file": "s3://elai-avatars/common/olivia/business/listening_business/olivia_business_listening_alpha.mp4"
+ },
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/business/olivia_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/business/olivia_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/new_intro/olivia-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/olivia/new_intro/Olivia-business.png"
+ }
+ ]
+ },
+ {
+ "code": "tyler",
+ "name": "Tyler",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/tyler/tyler_intro_2.mp4",
+ "age": 35,
+ "ethnicity": "White / Caucasian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/tyler/casual/tyler_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/tyler/casual/tyler_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/tyler/new_intro/tyler-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/tyler/new_intro/Tyler-casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/tyler/business/tyler_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/tyler/business/tyler_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/tyler/new_intro/tyler-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/tyler/new_intro/Tyler-business.png"
+ }
+ ]
+ },
+ {
+ "code": "aspen",
+ "name": "Aspen",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/aspen/aspen_intro_2.mp4",
+ "age": 25,
+ "ethnicity": "Asian",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/aspen/aspen_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/aspen/aspen_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/aspen/new_intro/aspen-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/aspen/new_intro/Aspen-business.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/aspen/casual/aspen_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/aspen/casual/aspen_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/aspen/new_intro/aspen-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/aspen/new_intro/Aspen-casual.png"
+ }
+ ]
+ },
+ {
+ "code": "533713721819",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": 0,
+ "left": 0.16719745222929935,
+ "zoom": 1.8343949044585988
+ },
+ "gender": "female",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v7_a_mischievous_american_school_girl_with_a_backp_1_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92N19hX21pc2NoaWV2b3VzX2FtZXJpY2FuX3NjaG9vbF9naXJsX3dpdGhfYV9iYWNrcF8xX3RodW1ibmFpbC5qcGciLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE3Mjc2NTQ0MDB9fX1dfQ__&Signature=GJZ6Yb%7EZGd8wf594Twb%7E1Y6knIOdPkCVico85ftGAr5Opx%7EhShT96faFPKABM8edvnOyUvvJF8iaOzoyaENPcL9jTfr4KQD7MWMVgrX9l%7Eyqe5e0BzdNOVbNtaPb2kr2PJucrDrZSx0q3EulWP4E6%7EUPHiYbAFMKCLZc0O5njqHJuGtHHfX59768NZ6yddtJRwxfRaro%7EBI03LnHbc3zhaQ%7ETwR9Idkpq0ga9HmKBb4f11c%7EcISLzO5%7EAuwBB3CpXj167hFH0mcx5f8zSzzeV03q%7EF-lQL3ZzEf17oC0Bkyrn6Bp4Ds3lD%7EW0tytvTz03p9N7KATeaWzKqKF7MiB9A__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v7_a_mischievous_american_school_girl_with_a_backp_1.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92N19hX21pc2NoaWV2b3VzX2FtZXJpY2FuX3NjaG9vbF9naXJsX3dpdGhfYV9iYWNrcF8xLmpwZyIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNzY1NDQwMH19fV19&Signature=HzJ3Is1vcKn1XSBDCQPYS1-wwme21m6NYPOHl%7EOj9nYRw7z6pZqDZH3t0PrBpiSSsrSp7Oi3d6iQuwjRSU1MtUgzP22NbJTWuWMZgAre1GQgkuYykw81GiM5Dts2kQMJtmla6CZKTPfFA7Oc3MfkSM%7E4apNJ%7E2U3lTOlORwJKHXS5SP%7EAG9Xwrk5fxMHWBe4bFAzekXKPyba2SRr5SmG3YJJj-hCKDTsNc-ZMoiLB3QpE%7EmTIo%7ElAq95JRaBWlAt4jUkVX4fWaM7cMrXoYYJLFEChFlTCtSE8qKIyhMQ3YHVKogNAP1jxWa-WboOm3CdqL3gPJfUk4n6TzzGP8EOLA__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 157,
+ "y": 0,
+ "faceWidth": 628,
+ "faceHeight": 577,
+ "faceShare": 0.7513020833333334
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-11.mp4",
+ "variants": []
+ },
+ {
+ "code": "496765495523",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": 0,
+ "left": 0.05506607929515418,
+ "zoom": 1.6916299559471366
+ },
+ "gender": "male",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v7_a_portrait_of_a_young_man_illuminated_by_a_warm_1_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92N19hX3BvcnRyYWl0X29mX2FfeW91bmdfbWFuX2lsbHVtaW5hdGVkX2J5X2Ffd2FybV8xX3RodW1ibmFpbC5qcGciLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE3Mjc2NTQ0MDB9fX1dfQ__&Signature=RHpJa-aw6YBJ6J24B43V7eTI18zDumswSsq08xZ3%7EPw69ymmtj0MO3g-jcj-%7EpS3ysGmzcrvOjoowxzzob4%7ENbOcSy7n4L2z4nVHc7u2cthnAx-tzHR3E%7E6cwja%7Ebi78SOxgPEHIphsDMkSczEG7U4mcVQ%7EIwaGSocxfnElG31Phjs7Q%7E3tAVAyb0ediqlpGANpxxvA77NSTWhvCiGdsgNdQvqsLbrVnN7Vaow3SfDybxcGbYBWExov4ndv40XWwJcS4KuXRKDSEan-mr4Z2R-9CWpychOaaz6Y210ii%7EK%7EFHYlufXgA9plsq0zeTWje5AbFdO9bEk9A3rNP6oH%7ECQ__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v7_a_portrait_of_a_young_man_illuminated_by_a_warm_1.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92N19hX3BvcnRyYWl0X29mX2FfeW91bmdfbWFuX2lsbHVtaW5hdGVkX2J5X2Ffd2FybV8xLmpwZyIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNzY1NDQwMH19fV19&Signature=Bp0Tj1J1ek0D4R5jRaRl3cGnkOg6iQrHR0iy8UKlkvyNEXlWKZHQJKIgBKyciRUnruIvtYAm-h0EGIm81i0sLnEsRRPPSbbZkpWJRTNALV8jwN0DcXgwM293q6Oyb4q4w%7E539vFaZMI3%7EXJVCAIAuVcEaWa8RijsmnaN5Z%7Ep2rxTMuW38VJzJb9AxCuXy-C9yFSTFZaAP4pemW6zFWCi%7EyyFDjM9vj0BHTN%7EFNYFKGXmscqpws70YA%7EuX7j3ebyq60Ex1LU2Gkqa961Wtg7SLKqi4-3q7JjG1jwTswGEGDBP-SqvjF13gdefQfEPy8VQ0goxqSiITRE%7EG9SFiFU-ZQ__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 132,
+ "y": 0,
+ "faceWidth": 454,
+ "faceHeight": 429,
+ "faceShare": 0.837890625
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-10.mp4",
+ "variants": []
+ },
+ {
+ "code": "ethan",
+ "name": "Ethan",
+ "type": null,
+ "status": 2,
+ "tilt": {
+ "left": -0.02
+ },
+ "gender": "male",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/ethan/new_intro/ethan_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/ethan/new_intro/Ethan.png",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/ethan/business/ethan_business_low.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/ethan/business/ethan_business_low.png",
+ "age": 35,
+ "ethnicity": "Black",
+ "variants": []
+ },
+ {
+ "code": "alma",
+ "name": "Alma",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 32,
+ "ethnicity": "Black",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/alma/casual/alma_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/alma/casual/alma_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/alma/new_intro/alma-casual_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/alma/new_intro/Alma-casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/alma/business/alma_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/alma/business/alma_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/alma/new_intro/alma-business_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/alma/new_intro/Alma-business.png"
+ }
+ ]
+ },
+ {
+ "code": "42734972195",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": 0,
+ "left": -0.025451559934318555,
+ "zoom": 1.0509031198686372
+ },
+ "gender": "female",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v5_a_stunning_image_of_a_young_woman_in_a_light_bl_1-1_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92NV9hX3N0dW5uaW5nX2ltYWdlX29mX2FfeW91bmdfd29tYW5faW5fYV9saWdodF9ibF8xLTFfdGh1bWJuYWlsLmpwZyIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNzY1NDQwMH19fV19&Signature=DehLN6d7ATWW5bGuagbjnjDfTOGV%7E-6CqsqLF7iG54hBgfwDFvSRcbiVgIngHv1n6CFK%7Eh8c4UJnOfQyYc1aoNyMEM6Wav5gyh94hXTC9H72uRGa9lYnWrvhLeMW0hVKgmXwvq4X6K51g3PDq%7Eb2tVUpEWJcsXb4EVcdAcNsKaNk3vRCU%7EXs5fgaQOAdmJ7XjnMYUuuG8j7aSUnsbXjwXRyHjqyBqadNyYBBuUdkK--mz%7ER2Gkacc6lWPxlJnWeQcCudnhha1D6MH4NR%7ERx9rEZt0RZFDWo00%7EZdtvpersXHDRg2s4v6fE3J5fvCKAJN0imbyQtv8BVPYziIcCmmEQ__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/dreamshaper_v5_a_stunning_image_of_a_young_woman_in_a_light_bl_1-1.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9kcmVhbXNoYXBlcl92NV9hX3N0dW5uaW5nX2ltYWdlX29mX2FfeW91bmdfd29tYW5faW5fYV9saWdodF9ibF8xLTEuanBnIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI3NjU0NDAwfX19XX0_&Signature=cKw96qbIaGs-pLYt5mi-jk1WB02Aa-ij3Ta7oecMeY%7EACmmqw5NOBRX9vzRW6XsGh1HD3aaIU%7EbRAX9wQ8XZTR0DyiKZACTMa9ZfO5mPEJ4KpNQ9lfjMlevKIQK8FVH41jM5pYTh1ObzjdeAEHLxk60y1p9sJ-RgTto9zWJXbZQ9TM1W94MluAihcccbfjhb73HxU6FAeuIiTY2gqlGjw2b9cgxLbgqYqlkspwX0PaenV4zwDPY4zIu1aUmoUOdeOrjMuo2shC7urD4rrOUe7H6MnQCtjjd%7E8yLF%7EEoLM3IFHLsuOpUmVlhAmVwP1JkxbOvGgfO2jEe1CB3mg0eM2w__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 31,
+ "y": 0,
+ "faceWidth": 609,
+ "faceHeight": 667,
+ "faceShare": 0.8016826923076923
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-12.mp4",
+ "variants": []
+ },
+ {
+ "code": "jade",
+ "name": "Jade",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/jade/new_intro/jade_intro_2.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/jade/new_intro/Jade.png",
+ "canvas": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-footage/jade_jade_silent_look_modified_hq_low_1.png",
+ "thumbnail": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-footage/jade_jade_.silent_09.12.jpg",
+ "age": 23,
+ "ethnicity": "White / Caucasian",
+ "variants": []
+ },
+ {
+ "code": "brooke",
+ "name": "Brooke",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "age": 25,
+ "ethnicity": "Black",
+ "variants": [
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/brooke/brooke_business.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/brooke/brooke_business.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/brooke/new_intro/brooke_business.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/brooke/new_intro/brooke_business.png"
+ },
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/brooke/casual/brooke_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/brooke/casual/brooke_casual.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/brooke/new_intro/brooke_casual.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/brooke/new_intro/brooke_casual.png"
+ }
+ ]
+ },
+ {
+ "code": "1539984167115",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": -0.08703535811423391,
+ "left": -0.0022665457842248413,
+ "zoom": 1.3055303717135087
+ },
+ "gender": "female",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/tamara-bellis-edvqwvmlmgu-unsplash_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy90YW1hcmEtYmVsbGlzLWVkdnF3dm1sbWd1LXVuc3BsYXNoX3RodW1ibmFpbC5qcGciLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE3Mjc2NTQ0MDB9fX1dfQ__&Signature=eBYFA4RzhNpZWoMuAGDwGcSzpNsTxZm6RRTMWaZGvk2gcQgDZm6GI19LOSZH4RmuIj4quo-S-TJV0YbAcHY5hwkDaEM5JL-6O9hSg1x5CqaMHxoouHMy-YVEg3y4KARcjBqAwIo6O56pzz%7EGwS8-RyOHLRSsyaAO%7EnUpbycmzQgyfet8UXe9iqEYLsD-dF5frayGtvmTxxubmxsBCxybIjadhDfWc7iPcwVtxbDW7Jm9ozPdcKfkCGra0nD5MO0-PudMh7vimV1RPBJdqTFqWR3-U8tLUB2vhwuwOkmdIBBNAJ9seFf1lGTMlw%7EMrtz3-I5FEraIgPf%7EEvwUQRGx8w__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/tamara-bellis-edvqwvmlmgu-unsplash.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy90YW1hcmEtYmVsbGlzLWVkdnF3dm1sbWd1LXVuc3BsYXNoLmpwZyIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNzY1NDQwMH19fV19&Signature=FJaAW-aXBVj9vuvr8QfRNniNnDFNaW1wuPBhAdQvKMV%7ECJWMYLO%7EOoUjr2S-8fLTZH7kN3O-9NVxF6nfcSMqeXIoDpU6sWl%7EN2UX23UoL-w8lObE4UJC8m8rOZZvKAIg-ZVpVrUvLeMi9jx7hbB78IWBG2E7hA2cnAL0EbOSLfjv1onld4z0SNhC8Q9WOkjyh8QWxRdWmYmWju240Nn8JStHI9ZLpwyYUgBjS-VIRncY0Ro6AZ8d3PfLmWf-qQgE%7E0VCFNTJyNqg0m2YiCwN75cc%7E6sRs4ecMNu2cjOrpqagsQug6btvTgiZcsryeW5LUBmmBsNddYTQ5aMIBaXDQg__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 171,
+ "y": 96,
+ "faceWidth": 1103,
+ "faceHeight": 1103,
+ "faceShare": 0.5106481481481482
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-2.mp4",
+ "variants": []
+ },
+ {
+ "code": "gia_realtime_smooth",
+ "name": "Gia Seamless",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/casual/gia_casual.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/gia/casual/gia_casual.png",
+ "defaultVoice": "elevenlabs@EXAVITQu4vr4xnSDxMaL",
+ "variants": []
+ },
+ {
+ "code": "skye",
+ "name": "Skye",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "limit": 300,
+ "age": 27,
+ "ethnicity": "Black",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "limit": 300,
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/skye_2/skye_casual_2.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/skye_2/skye_casual_2.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/skye_2/new_intro/skye_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/skye_2/new_intro/Skye_casual.png"
+ },
+ {
+ "code": "business",
+ "id": "business",
+ "name": "Business",
+ "limit": 300,
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/skye_2/business/skye_business_2.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/skye_2/business/skye_business_2.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/skye_2/new_intro/skye-business.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/skye_2/new_intro/Skye_business.png"
+ }
+ ]
+ },
+ {
+ "code": "amira",
+ "name": "Amira",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/amira/hq/new_intro/amira__1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/amira/hq/new_intro/Amira.png",
+ "age": 29,
+ "ethnicity": "South Asian / Indian",
+ "variants": [
+ {
+ "code": "casual",
+ "id": "casual",
+ "name": "Casual",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/amira/hq/amira_1.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/amira/hq/amira.png"
+ }
+ ]
+ },
+ {
+ "code": "40937680419",
+ "type": "photo",
+ "status": 2,
+ "accountId": null,
+ "tilt": {
+ "top": -0.07985480943738657,
+ "left": 0.03901996370235935,
+ "zoom": 2.613430127041742
+ },
+ "gender": "male",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/stephanie-nakagawa-adskin0scdg-unsplash_thumbnail.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9zdGVwaGFuaWUtbmFrYWdhd2EtYWRza2luMHNjZGctdW5zcGxhc2hfdGh1bWJuYWlsLmpwZyIsIkNvbmRpdGlvbiI6eyJEYXRlTGVzc1RoYW4iOnsiQVdTOkVwb2NoVGltZSI6MTcyNzY1NDQwMH19fV19&Signature=OItJfDIIiWD-1vr4raC83uvFgaq40s6YMGIEkVLpX1bT0%7Ebs3GteBMz6vD453NFFyZMIwCxlxl1G-ABtprxqx0h9PxJOe2NAfThaiOWEBiGx%7ELLobvLhi6-JouQEQhUERsQ6NXSTfXq5QumSs%7EN57WI14Ax%7EZH65s2fycu9mgW9GmpN15YuUcdoLJ4hpIASxE1TMHrBl1nWU5dsGJVyPmikiByR%7E8Arw5xc7Q8gLKkbkBmp-GUXRApD8Txxh4AKC%7ErPU%7EaHSWNA7paUHP-wvVOH9B1bU87KQWEmGsAXN-ZJC5mGcXAsNCi46RHdIEERURwqbjolL0JJg8S3-0-lPuA__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/staging/avatar_uploads/63105155b5c45d0e07492bfc/stephanie-nakagawa-adskin0scdg-unsplash.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9zdGFnaW5nL2F2YXRhcl91cGxvYWRzLzYzMTA1MTU1YjVjNDVkMGUwNzQ5MmJmYy9zdGVwaGFuaWUtbmFrYWdhd2EtYWRza2luMHNjZGctdW5zcGxhc2guanBnIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzI3NjU0NDAwfX19XX0_&Signature=myNizLQp3Yl0zZnKEWQ1tc-2BVvvfxFkEzoCXKzItQGkQWe1gIOCwFq35c9oXZOB9QZy4YCErlmfgZYIxvbAUANfvgPGqyQxu9Sy8MxS%7EwykQV%7EIrcv8cVXvGa2fR-K3cWa35dUhdA7rarHCAE6OYPnUOoFy9ZY6bIDIdq59n-yUqfTKUT8Ryra5PP5zLwVuHJI7VRBbL4LZR10fwA4J2OYe-%7ErTsaW%7EbSfGMXdeG8GRNhlaaAgGjYzzvnxlSKRkyMmZTTlyX3b03IkUxsjZF3s812DwOkGamBFO50Eg9VP-2AtxRqPNQOwchPhH%7EwhQ-f-5av6Ghl1ENL%7E0axnssw__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "faceBbox": {
+ "x": 423,
+ "y": 44,
+ "faceWidth": 551,
+ "faceHeight": 551,
+ "faceShare": 0.2550925925925926
+ },
+ "intro": "https://elai-media.s3.eu-west-2.amazonaws.com/avatars-examples/photo-avatar-1.mp4",
+ "variants": []
+ },
+ {
+ "code": "terry",
+ "name": "Terry",
+ "type": null,
+ "status": 2,
+ "gender": "male",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/terry/new_intro/terry.mp4",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/terry/terry_main.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/terry/terry_main_3_1.png",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/terry/new_intro/Terry.png",
+ "age": 25,
+ "ethnicity": "White / Caucasian",
+ "variants": []
+ },
+ {
+ "code": "rose",
+ "name": "Rose",
+ "type": null,
+ "status": 2,
+ "gender": "female",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/common/rose/rose.jpg",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/common/rose/rose.png",
+ "intro": "https://d3u63mhbhkevz8.cloudfront.net/common/rose/new_intro/rose_1080.mp4",
+ "introPoster": "https://d3u63mhbhkevz8.cloudfront.net/common/rose/new_intro/Rose.png",
+ "age": 33,
+ "ethnicity": "White / Caucasian",
+ "variants": []
+ },
+ {
+ "code": "elai-cartoon",
+ "name": "Cartoon Cat",
+ "type": "mascot",
+ "status": 2,
+ "accountId": null,
+ "gender": "male",
+ "variants": [
+ {
+ "code": "elai_regular_anim",
+ "id": "elai_regular_anim",
+ "name": "Standing",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/regular/regular_1.png",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/regular/regular.jpg"
+ },
+ {
+ "code": "elai_business_anim",
+ "id": "elai_business_anim",
+ "name": "Business",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/business/business.png",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/business/business.png"
+ },
+ {
+ "code": "elai_basketball_anim",
+ "id": "elai_basketball_anim",
+ "name": "Basketball",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/basketball/basketball.png",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/basketball/basketball.png"
+ },
+ {
+ "code": "elai_superhero_anim",
+ "id": "elai_superhero_anim",
+ "name": "Superhero",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/superhero/superhero.png",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/superhero/superhero.png"
+ },
+ {
+ "code": "elai_skater",
+ "id": "elai_skater",
+ "name": "Skater",
+ "canvas": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/skater/skater.png",
+ "thumbnail": "https://d3u63mhbhkevz8.cloudfront.net/cartoons/elai/skater/skater.png"
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/elai/english_voices.json b/elai/english_voices.json
new file mode 100644
index 0000000..8a1d865
--- /dev/null
+++ b/elai/english_voices.json
@@ -0,0 +1,3386 @@
+{
+ "voices": [
+ {
+ "name": "English",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Andrew M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AndrewMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-andrewmultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Tony",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-TonyNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural-en-us.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Davis",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-DavisNeural",
+ "icon": "us",
+ "styleList": [
+ "chat",
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:chat-en-us.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jason",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JasonNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ryan",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-RyanNeural",
+ "icon": "gb",
+ "styleList": [
+ "cheerful",
+ "chat"
+ ],
+ "stylePreview": {
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-ryanneural:cheerful-en-us.mp3",
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-ryanneural:chat-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-ryanneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Brian M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-BrianMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-brianmultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Wade",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "30",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-30-en-us.mp3"
+ },
+ {
+ "id": "26",
+ "name": "Promo",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-26-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Lee",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "23",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_lee.m._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Paul",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "41",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_paul.b._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Jeremy",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "13",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jeremy.g._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Tobin",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "16",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_tobin.a._narration_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 21
+ },
+ {
+ "character": "Zach",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "54",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_zach.e._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Tristan",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "18",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_tristan.f._narration_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Theo",
+ "name": "English (GB)",
+ "locale": "en-GB",
+ "icon": "gb",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "57",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_theo.k._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Steve",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "37",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_steve.b._promo_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Se'von",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "105",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-105-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Raine",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "52",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_raine.b._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Philip",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "60",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_philip.j._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Patrick",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "19",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_patrick.k._narration_calm.wav"
+ },
+ {
+ "id": "47",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_patrick.k._conversational_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Owen",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "53",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_owen.c._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Oliver",
+ "name": "English (GB)",
+ "locale": "en-GB",
+ "icon": "gb",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "98",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-98-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Michael",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "76",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-76-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Marcus",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "61",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_marcus.g._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lulu",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "101",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-101-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Lorenzo",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "100",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-100-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Kai",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "32",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_kai.m._narration_upbeat.wav"
+ },
+ {
+ "id": "44",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_kai.m._conversational_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Jude",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "33",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jude.d._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Joe",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "character",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "27",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_joe.f._narration_calm.wav"
+ },
+ {
+ "id": "28",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_joe.f._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jimmy",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "106",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-106-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jensen",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "96",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-96-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Jay",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "107",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-107-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Jarvis",
+ "name": "English (GB)",
+ "locale": "en-GB",
+ "icon": "gb",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "56",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jarvis.h._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "James",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "58",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_james.b._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jack",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "97",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-97-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Greg",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "66",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_greg.g._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Garry",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "old"
+ ],
+ "playedTags": [
+ {
+ "id": "29",
+ "name": "character",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_garry.j._character_slow-paced_elderly.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Eric",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "34",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_eric.s._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Diarmid",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "icon": "au",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "69",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_diarmid.c._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Damian",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "21",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_damien.p._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Chase",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "35",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_chase.j._narration_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 22
+ },
+ {
+ "character": "Ben",
+ "name": "English (South Africa)",
+ "locale": "en-ZA",
+ "icon": "za",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "137",
+ "name": "Conversational",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-137-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Antony",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "50",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_anthony.a._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Alan",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "71",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_alan.t._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Aaron",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "icon": "au",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "112",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-112-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/ErXwobaYiN019PkySvjV/ee9ac367-91ee-4a56-818a-2bd1a9dbe83a.mp3",
+ "order": 1,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/TxGEqnHWrfWFTfGW9XjX/3ae2fc71-d5f9-4769-bb71-2a43633cd186.mp3",
+ "order": 2,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/VR6AewLTigWG4xSOukaG/316050b7-c4e0-48de-acf9-a882bb7fc43b.mp3",
+ "order": 3,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/pNInz6obpgDQGcFmaJgB/38a69695-2ca9-4b9e-b9ec-f07ced494a58.mp3",
+ "order": 4,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/pqHfZKP75CvOlQylNhV4/52f0842a-cf81-4715-8cf0-76cfbd77088e.mp3",
+ "order": 5,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/t0jbNlBVZ17f02VDIeMI/e26939e3-61a4-4872-a41d-33922cfbdcdc.mp3",
+ "order": 6,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/flq6f7yk4E4fJM5XTYuZ/c6431a82-f7d2-4905-b8a4-a631960633d6.mp3",
+ "order": 7,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/TX3LPaxmHKxFdv7VOQHJ/63148076-6363-42db-aea8-31424308b92c.mp3",
+ "order": 8,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/SOYHLrjzK2X1ezoPC6cr/86d178f6-f4b6-4e0e-85be-3de19f490794.mp3",
+ "order": 9,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/ODq5zmih8GrVes37Dizd/0ebec87a-2569-4976-9ea5-0170854411a9.mp3",
+ "order": 10,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/GBv7mTt0atIp3Br8iCZE/98542988-5267-4148-9a9e-baa8c4f14644.mp3",
+ "order": 11,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/29vD33N1CtxCmqQRPOHJ/e8b52a3f-9732-440f-b78a-16d5e26407a1.mp3",
+ "order": 12,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/5Q0t7uMcjvnagumLfvZi/1094515a-b080-4282-aac7-b1b8a553a3a8.mp3",
+ "order": 13,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/N2lVS1w4EtoT3dr4eOWO/ac833bd8-ffda-4938-9ebc-b0f99ca25481.mp3",
+ "order": 14,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/zcAOhNBS3c14rBihAFp1/e7410f8f-4913-4cb8-8907-784abee5aff8.mp3",
+ "order": 15,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Ethan",
+ "voice": "g5CIjZEefAph4nQFvHAz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "whisper",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/g5CIjZEefAph4nQFvHAz/26acfa99-fdec-43b8-b2ee-e49e75a3ac16.mp3",
+ "order": 16,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/2EiwWnXFnvU5JabPnv8n/65d80f52-703f-4cae-a91d-75d4e200ed02.mp3",
+ "order": 17,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/JBFqnCBsd6RMkjVDRZzb/365e8ae8-5364-4b07-9a3b-1bfb4a390248.mp3",
+ "order": 19,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/CYw3kZ02Hs0563khs1Fj/872cb056-45d3-419e-b5c6-de2b387a93a0.mp3",
+ "order": 20,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/Zlb1dXrM653N07WRdFW3/daa22039-8b09-4c65-b59f-c79c48646a72.mp3",
+ "order": 21,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/onwK4e9ZLuTAKqWW03F9/7eee0236-1a72-4b86-b303-5dcadc007ba9.mp3",
+ "order": 22,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/IKne3meq5aSn9XLyUdCD/102de6f2-22ed-43e0-a1f1-111fa75c5481.mp3",
+ "order": 23,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "au",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/ZQe5CZNOzWyzPSCn5a3c/35734112-7b72-48df-bc2f-64d5ab2f791b.mp3",
+ "order": 24,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "au",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/D38z5RcWu1voky8WS1ja/a470ba64-1e72-46d9-ba9d-030c4155e2d2.mp3",
+ "order": 25,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "ie",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/bVMeCyTHy58xNoL34h3p/66c47d58-26fd-4b30-8a06-07952116a72c.mp3",
+ "order": 26,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "ie",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/iP95p4xoKVk53GoZ742B/c1bda571-7123-418e-a796-a2b464b373b4.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/nPczCjzI2devNBz1zQrb/f4dbda0c-aff0-45c0-93fa-f5d5ec95a2eb.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/yoZ06aMxZJJ28mfd3POQ/ac9d1c91-92ce-4b20-8cc2-3187a7da49ec.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "William",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-WilliamNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-williamneural-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Darren",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-DarrenNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-darrenneural-en-us.mp3",
+ "approxDurationCoeficient": 22
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Duncan",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-DuncanNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-duncanneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ken",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-KenNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-kenneural-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Neil",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-NeilNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-neilneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Tim",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-TimNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-timneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Liam",
+ "name": "English (Canada)",
+ "locale": "en-CA",
+ "voice": "en-CA-LiamNeural",
+ "icon": "ca",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ca-liamneural-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Alfie",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-AlfieNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-alfieneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elliot",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-ElliotNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-elliotneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ethan",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-EthanNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-ethanneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Noah",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-NoahNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-noahneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Oliver",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-OliverNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-oliverneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Thomas",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-ThomasNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-thomasneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sam",
+ "name": "English (Hong Kong SAR)",
+ "locale": "en-HK",
+ "voice": "en-HK-SamNeural",
+ "icon": "hk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-hk-samneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Connor",
+ "name": "English (Ireland)",
+ "locale": "en-IE",
+ "voice": "en-IE-ConnorNeural",
+ "icon": "ie",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ie-connorneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Prabhat",
+ "name": "English (India)",
+ "locale": "en-IN",
+ "voice": "en-IN-PrabhatNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-in-prabhatneural-en-us.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Chilemba",
+ "name": "English (Kenya)",
+ "locale": "en-KE",
+ "voice": "en-KE-ChilembaNeural",
+ "icon": "ke",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ke-chilembaneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Abeo",
+ "name": "English (Nigeria)",
+ "locale": "en-NG",
+ "voice": "en-NG-AbeoNeural",
+ "icon": "ng",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ng-abeoneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Mitchell",
+ "name": "English (New Zealand)",
+ "locale": "en-NZ",
+ "voice": "en-NZ-MitchellNeural",
+ "icon": "nz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-nz-mitchellneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "James",
+ "name": "English (Philippines)",
+ "locale": "en-PH",
+ "voice": "en-PH-JamesNeural",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ph-jamesneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Wayne",
+ "name": "English (Singapore)",
+ "locale": "en-SG",
+ "voice": "en-SG-WayneNeural",
+ "icon": "sg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-sg-wayneneural-en-us.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elimu",
+ "name": "English (Tanzania)",
+ "locale": "en-TZ",
+ "voice": "en-TZ-ElimuNeural",
+ "icon": "tz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-tz-elimuneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Andrew",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AndrewNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-andrewneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Brian",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-BrianNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-brianneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Guy",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-GuyNeural",
+ "icon": "us",
+ "styleList": [
+ "newscast",
+ "angry",
+ "cheerful",
+ "sad",
+ "excited",
+ "friendly",
+ "terrified",
+ "shouting",
+ "unfriendly",
+ "whispering",
+ "hopeful"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "newscast": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:newscast-en-us.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:cheerful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:sad-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:friendly-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:terrified-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:shouting-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:whispering-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:hopeful-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Brandon",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-BrandonNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-brandonneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Christopher",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-ChristopherNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-christopherneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Eric",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-EricNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-ericneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jacob",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JacobNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jacobneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Roger",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-RogerNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-rogerneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ryan M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-RyanMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-ryanmultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Steffan",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-SteffanNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-steffanneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Luke",
+ "name": "English (South Africa)",
+ "locale": "en-ZA",
+ "voice": "en-ZA-LukeNeural",
+ "icon": "za",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-za-lukeneural-en-us.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Oscar K",
+ "name": "English-US",
+ "voice": "en-US-Casual-K",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-casual-k-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Miles B",
+ "name": "English-AU",
+ "voice": "en-AU-Neural2-B",
+ "icon": "au",
+ "voiceProvider": "google",
+ "locale": "en-AU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-au-neural2-b-en-us.mp3"
+ },
+ {
+ "character": "James D",
+ "name": "English-AU",
+ "voice": "en-AU-Neural2-D",
+ "icon": "au",
+ "voiceProvider": "google",
+ "locale": "en-AU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-au-neural2-d-en-us.mp3",
+ "approxDurationCoeficient": 21
+ },
+ {
+ "character": "Emmet B",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-B",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-b-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Jack D",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-D",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-d-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Cole B",
+ "name": "English-IN",
+ "voice": "en-IN-Neural2-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "en-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-in-neural2-b-en-us.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Ralph C",
+ "name": "English-IN",
+ "voice": "en-IN-Neural2-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "en-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-in-neural2-c-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Joe A",
+ "name": "English-US",
+ "voice": "en-US-Neural2-A",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-a-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Hayden D",
+ "name": "English-US",
+ "voice": "en-US-Neural2-D",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-d-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Oscar I",
+ "name": "English-US",
+ "voice": "en-US-Neural2-I",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-i-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Miles J",
+ "name": "English-US",
+ "voice": "en-US-Neural2-J",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-j-en-us.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Jane",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JaneNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Emma",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-EmmaNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-emmaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Nancy",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-NancyNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sara",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-SaraNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Joanne",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-JoanneNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-joanneneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sonia",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-SoniaNeural",
+ "icon": "gb",
+ "styleList": [
+ "cheerful",
+ "sad"
+ ],
+ "stylePreview": {
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-sonianeural:cheerful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-sonianeural:sad-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-sonianeural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Ava",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "72",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ava.m._promo_upbeat.wav"
+ },
+ {
+ "id": "31",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ava.m._narration_upbeat.wav"
+ },
+ {
+ "id": "43",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ava.m._conversational_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Alana",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "3",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_alana.b._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Nicole",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "14",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_nicole.l._narration_calm.wav"
+ },
+ {
+ "id": "45",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_nicole.l._conversational_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Sofia",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "upbeat",
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "20",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_sofia.h._promo_upbeat.wav"
+ },
+ {
+ "id": "8",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_sofia.h._narration_slow-paced.wav"
+ },
+ {
+ "id": "42",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_sofia.h._conversational_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Vanessa",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "10",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_vanessa.n._narration_slow-paced_elderly.wav"
+ },
+ {
+ "id": "48",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_vanessa.n._conversational_calm_elderly.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Zoey",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "67",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_zoey.o._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Tilda",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "39",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_tilda.c._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Terra",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "59",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_terra.g._narration_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Shelby",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "104",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-104-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Selene",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "24",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_selene.r._promo_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Ramona",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "4",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ramona.j._narration_slow-paced.wav"
+ },
+ {
+ "id": "5",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ramona.j._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Paula",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "78",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-78-en-us.mp3"
+ },
+ {
+ "id": "129",
+ "name": "Promo",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-129-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Paige",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "15",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_paige.l._narration_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Kari",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "68",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_kari.n._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Jordan",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "icon": "au",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "62",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jordan.t._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Jodi",
+ "name": "English (Canada)",
+ "locale": "en-CA",
+ "icon": "ca",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "22",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jodi.p._promo_upbeat.wav"
+ },
+ {
+ "id": "51",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jodi.p._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Issa",
+ "name": "English (South Africa)",
+ "locale": "en-ZA",
+ "icon": "za",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "109",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-109-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Isabel",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "11",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_isabel.b._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Hannah",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "99",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-99-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Gia",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "49",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_gia.w._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Genevieve",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "55",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_genevieve.m._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Fiona",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "icon": "gb",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "63",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_fiona.h._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Donna",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "65",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_donna.w._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Charlie",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "40",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_charlie.z._promo_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Cameron",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "77",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-77-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Bella",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "38",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_bella.b._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Ali",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "icon": "au",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "111",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-111-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Abbi",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "102",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-102-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/21m00Tcm4TlvDq8ikWAM/df6788f9-5c96-470d-8312-aab3b3d8f50a.mp3",
+ "order": 1,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/XrExE9yKIg1WjnnlVkGX/b930e18d-6b4d-466e-bab2-0ae97c6d8535.mp3",
+ "order": 3,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/oWAxZDx7w5VEj9dCyTzz/84a36d1c-e182-41a8-8c55-dbdd15cd6e72.mp3",
+ "order": 4,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/AZnzlk1XvdvUeBnXmlld/508e12d0-a7f7-4d86-a0d3-f3884ff353ed.mp3",
+ "order": 5,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/jBpfuIE2acCO8z3wKNLl/3a7e4339-78fa-404e-8d10-c3ef5587935b.mp3",
+ "order": 6,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/pMsXgVXv3BLzUgSXRplE/d61f18ed-e5b0-4d0b-a33c-5c6e7e33b053.mp3",
+ "order": 7,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/z9fAnlkpzviPz146aGWa/cbc60443-7b61-4ebb-b8e1-5c03237ea01d.mp3",
+ "order": 8,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/zrHiDhphv9ZnVXBqCLjz/decbf20b-0f57-4fac-985b-a4f0290ebfc4.mp3",
+ "order": 9,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/LcfcDJNUP1GQjkzn1xUU/e4b994b7-9713-4238-84f3-add8fccaaccd.mp3",
+ "order": 10,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/pFZP5JQG7iQjIQuC4Bku/0ab8bd74-fcd2-489d-b70a-3e1bcde8c999.mp3",
+ "order": 11,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/XB0fDUnXU5powFXDhCwa/942356dc-f10d-4d89-bda5-4f8505ee038b.mp3",
+ "order": 12,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/ThT5KcBeYPX3keUQqHPh/981f0855-6598-48d2-9f8f-b6d92fbbe3fc.mp3",
+ "order": 13,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/EXAVITQu4vr4xnSDxMaL/6851ec91-9950-471f-8586-357c52539069.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/Xb7hH8MSUJpSbSDYk0k2/f5409e2f-d9c3-4ac9-9e7d-916a5dbd1ef1.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Natasha",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-NatashaNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-natashaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Annette",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-AnnetteNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-annetteneural-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Carly",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-CarlyNeural",
+ "icon": "au",
+ "tags": [
+ "child"
+ ],
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-carlyneural-en-us.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elsie",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-ElsieNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-elsieneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Freya",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-FreyaNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-freyaneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Kim",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-KimNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-kimneural-en-us.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Tina",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-TinaNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-tinaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Clara",
+ "name": "English (Canada)",
+ "locale": "en-CA",
+ "voice": "en-CA-ClaraNeural",
+ "icon": "ca",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ca-claraneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Libby",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-LibbyNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-libbyneural-en-us.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Abbi",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-AbbiNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-abbineural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Bella",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-BellaNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-bellaneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Hollie",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-HollieNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-hollieneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Maisie",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-MaisieNeural",
+ "icon": "gb",
+ "tags": [
+ "child"
+ ],
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-maisieneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Olivia",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-OliviaNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-olivianeural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Mia",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-MiaNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-mianeural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yan",
+ "name": "English (Hong Kong SAR)",
+ "locale": "en-HK",
+ "voice": "en-HK-YanNeural",
+ "icon": "hk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-hk-yanneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Emily",
+ "name": "English (Ireland)",
+ "locale": "en-IE",
+ "voice": "en-IE-EmilyNeural",
+ "icon": "ie",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ie-emilyneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Neerja",
+ "name": "English (India)",
+ "locale": "en-IN",
+ "voice": "en-IN-NeerjaNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-in-neerjaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Asilia",
+ "name": "English (Kenya)",
+ "locale": "en-KE",
+ "voice": "en-KE-AsiliaNeural",
+ "icon": "ke",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ke-asilianeural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ezinne",
+ "name": "English (Nigeria)",
+ "locale": "en-NG",
+ "voice": "en-NG-EzinneNeural",
+ "icon": "ng",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ng-ezinneneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Molly",
+ "name": "English (New Zealand)",
+ "locale": "en-NZ",
+ "voice": "en-NZ-MollyNeural",
+ "icon": "nz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-nz-mollyneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Rosa",
+ "name": "English (Philippines)",
+ "locale": "en-PH",
+ "voice": "en-PH-RosaNeural",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ph-rosaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Luna",
+ "name": "English (Singapore)",
+ "locale": "en-SG",
+ "voice": "en-SG-LunaNeural",
+ "icon": "sg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-sg-lunaneural-en-us.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Imani",
+ "name": "English (Tanzania)",
+ "locale": "en-TZ",
+ "voice": "en-TZ-ImaniNeural",
+ "icon": "tz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-tz-imanineural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ava M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AvaMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-avamultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Emma M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-EmmaMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-emmamultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ava",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AvaNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-avaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jenny",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JennyNeural",
+ "icon": "us",
+ "styleList": [
+ "assistant",
+ "chat",
+ "customerservice",
+ "newscast",
+ "angry",
+ "cheerful",
+ "sad",
+ "excited",
+ "friendly",
+ "terrified",
+ "shouting",
+ "unfriendly",
+ "whispering",
+ "hopeful"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "assistant": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:assistant-en-us.mp3",
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:chat-en-us.mp3",
+ "customerservice": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:customerservice-en-us.mp3",
+ "newscast": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:newscast-en-us.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:cheerful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:sad-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:friendly-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:terrified-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:shouting-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:whispering-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:hopeful-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Aria",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AriaNeural",
+ "icon": "us",
+ "styleList": [
+ "chat",
+ "customerservice",
+ "narration-professional",
+ "newscast-casual",
+ "newscast-formal",
+ "cheerful",
+ "empathetic",
+ "angry",
+ "sad",
+ "excited",
+ "friendly",
+ "terrified",
+ "shouting",
+ "unfriendly",
+ "whispering",
+ "hopeful"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:chat-en-us.mp3",
+ "customerservice": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:customerservice-en-us.mp3",
+ "narration-professional": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:narration-professional-en-us.mp3",
+ "newscast-casual": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:newscast-casual-en-us.mp3",
+ "newscast-formal": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:newscast-formal-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:cheerful-en-us.mp3",
+ "empathetic": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:empathetic-en-us.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:angry-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:sad-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:friendly-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:terrified-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:shouting-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:whispering-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:hopeful-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Amber",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AmberNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-amberneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ana",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AnaNeural",
+ "icon": "us",
+ "tags": [
+ "child"
+ ],
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-ananeural-en-us.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ashley",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AshleyNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-ashleyneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Cora",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-CoraNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-coraneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elizabeth",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-ElizabethNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-elizabethneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jenny M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JennyMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennymultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Michelle",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-MichelleNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-michelleneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Monica",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-MonicaNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-monicaneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Leah",
+ "name": "English (South Africa)",
+ "locale": "en-ZA",
+ "voice": "en-ZA-LeahNeural",
+ "icon": "za",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-za-leahneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Elanor A",
+ "name": "English-AU",
+ "voice": "en-AU-Neural2-A",
+ "icon": "au",
+ "voiceProvider": "google",
+ "locale": "en-AU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-au-neural2-a-en-us.mp3"
+ },
+ {
+ "character": "Lucy C",
+ "name": "English-AU",
+ "voice": "en-AU-Neural2-C",
+ "icon": "au",
+ "voiceProvider": "google",
+ "locale": "en-AU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-au-neural2-c-en-us.mp3"
+ },
+ {
+ "character": "Daisy A",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-A",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-a-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Scarlett C",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-C",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-c-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jane F",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-F",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-f-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lily A",
+ "name": "English-IN",
+ "voice": "en-IN-Neural2-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "en-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-in-neural2-a-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Ella D",
+ "name": "English-IN",
+ "voice": "en-IN-Neural2-D",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "en-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-in-neural2-d-en-us.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "juliet C",
+ "name": "English-US",
+ "voice": "en-US-Neural2-C",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-c-en-us.mp3"
+ },
+ {
+ "character": "Ellie E",
+ "name": "English-US",
+ "voice": "en-US-Neural2-E",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-e-en-us.mp3"
+ },
+ {
+ "character": "Evelyn F",
+ "name": "English-US",
+ "voice": "en-US-Neural2-F",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-f-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Annie G",
+ "name": "English-US",
+ "voice": "en-US-Neural2-G",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-g-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Elanor H",
+ "name": "English-US",
+ "voice": "en-US-Neural2-H",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-h-en-us.mp3"
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/elai/filter_json.py b/elai/filter_json.py
new file mode 100644
index 0000000..a508d3a
--- /dev/null
+++ b/elai/filter_json.py
@@ -0,0 +1,18 @@
+import json
+
+# Read JSON from a file
+input_filename = "english_voices.json"
+output_filename = "free_english_voices.json"
+
+with open(input_filename, "r") as json_file:
+ data = json.load(json_file)
+
+# Filter entries based on "language": "English"
+filtered_list = [entry for entry in data["data"]["list"] if not entry["is_paid"]]
+data["data"]["list"] = filtered_list
+
+# Write filtered JSON to a new file
+with open(output_filename, "w") as json_file:
+ json.dump(data, json_file, indent=2)
+
+print(f"Filtered JSON written to '{output_filename}'.")
diff --git a/elai/voices.json b/elai/voices.json
new file mode 100644
index 0000000..8e70e40
--- /dev/null
+++ b/elai/voices.json
@@ -0,0 +1,26579 @@
+{
+ "voices": [
+ {
+ "name": "English",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Andrew M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AndrewMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-andrewmultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Tony",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-TonyNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-tonyneural-en-us.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Davis",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-DavisNeural",
+ "icon": "us",
+ "styleList": [
+ "chat",
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:chat-en-us.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-davisneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jason",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JasonNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jasonneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ryan",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-RyanNeural",
+ "icon": "gb",
+ "styleList": [
+ "cheerful",
+ "chat"
+ ],
+ "stylePreview": {
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-ryanneural:cheerful-en-us.mp3",
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-ryanneural:chat-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-ryanneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Brian M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-BrianMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-brianmultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Wade",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "30",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-30-en-us.mp3"
+ },
+ {
+ "id": "26",
+ "name": "Promo",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-26-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Lee",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "23",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_lee.m._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Paul",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "41",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_paul.b._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Jeremy",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "13",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jeremy.g._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Tobin",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "16",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_tobin.a._narration_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 21
+ },
+ {
+ "character": "Zach",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "54",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_zach.e._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Tristan",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "18",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_tristan.f._narration_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Theo",
+ "name": "English (GB)",
+ "locale": "en-GB",
+ "icon": "gb",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "57",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_theo.k._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Steve",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "37",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_steve.b._promo_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Se'von",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "105",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-105-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Raine",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "52",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_raine.b._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Philip",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "60",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_philip.j._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Patrick",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "19",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_patrick.k._narration_calm.wav"
+ },
+ {
+ "id": "47",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_patrick.k._conversational_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Owen",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "53",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_owen.c._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Oliver",
+ "name": "English (GB)",
+ "locale": "en-GB",
+ "icon": "gb",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "98",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-98-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Michael",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "76",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-76-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Marcus",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "61",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_marcus.g._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lulu",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "101",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-101-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Lorenzo",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "100",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-100-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Kai",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "32",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_kai.m._narration_upbeat.wav"
+ },
+ {
+ "id": "44",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_kai.m._conversational_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Jude",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "33",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jude.d._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Joe",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "character",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "27",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_joe.f._narration_calm.wav"
+ },
+ {
+ "id": "28",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_joe.f._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jimmy",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "106",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-106-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jensen",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "96",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-96-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Jay",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "107",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-107-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Jarvis",
+ "name": "English (GB)",
+ "locale": "en-GB",
+ "icon": "gb",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "56",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jarvis.h._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "James",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "58",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_james.b._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jack",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "97",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-97-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Greg",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "66",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_greg.g._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Garry",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "old"
+ ],
+ "playedTags": [
+ {
+ "id": "29",
+ "name": "character",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_garry.j._character_slow-paced_elderly.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Eric",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "34",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_eric.s._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Diarmid",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "icon": "au",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "69",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_diarmid.c._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Damian",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "21",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_damien.p._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Chase",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "35",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_chase.j._narration_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 22
+ },
+ {
+ "character": "Ben",
+ "name": "English (South Africa)",
+ "locale": "en-ZA",
+ "icon": "za",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "137",
+ "name": "Conversational",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-137-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Antony",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "50",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_anthony.a._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Alan",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "71",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_alan.t._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Aaron",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "icon": "au",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "112",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-112-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/ErXwobaYiN019PkySvjV/ee9ac367-91ee-4a56-818a-2bd1a9dbe83a.mp3",
+ "order": 1,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/TxGEqnHWrfWFTfGW9XjX/3ae2fc71-d5f9-4769-bb71-2a43633cd186.mp3",
+ "order": 2,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/VR6AewLTigWG4xSOukaG/316050b7-c4e0-48de-acf9-a882bb7fc43b.mp3",
+ "order": 3,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/pNInz6obpgDQGcFmaJgB/38a69695-2ca9-4b9e-b9ec-f07ced494a58.mp3",
+ "order": 4,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/pqHfZKP75CvOlQylNhV4/52f0842a-cf81-4715-8cf0-76cfbd77088e.mp3",
+ "order": 5,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/t0jbNlBVZ17f02VDIeMI/e26939e3-61a4-4872-a41d-33922cfbdcdc.mp3",
+ "order": 6,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/flq6f7yk4E4fJM5XTYuZ/c6431a82-f7d2-4905-b8a4-a631960633d6.mp3",
+ "order": 7,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/TX3LPaxmHKxFdv7VOQHJ/63148076-6363-42db-aea8-31424308b92c.mp3",
+ "order": 8,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/SOYHLrjzK2X1ezoPC6cr/86d178f6-f4b6-4e0e-85be-3de19f490794.mp3",
+ "order": 9,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/ODq5zmih8GrVes37Dizd/0ebec87a-2569-4976-9ea5-0170854411a9.mp3",
+ "order": 10,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/GBv7mTt0atIp3Br8iCZE/98542988-5267-4148-9a9e-baa8c4f14644.mp3",
+ "order": 11,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/29vD33N1CtxCmqQRPOHJ/e8b52a3f-9732-440f-b78a-16d5e26407a1.mp3",
+ "order": 12,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/5Q0t7uMcjvnagumLfvZi/1094515a-b080-4282-aac7-b1b8a553a3a8.mp3",
+ "order": 13,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/N2lVS1w4EtoT3dr4eOWO/ac833bd8-ffda-4938-9ebc-b0f99ca25481.mp3",
+ "order": 14,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/zcAOhNBS3c14rBihAFp1/e7410f8f-4913-4cb8-8907-784abee5aff8.mp3",
+ "order": 15,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Ethan",
+ "voice": "g5CIjZEefAph4nQFvHAz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "whisper",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/g5CIjZEefAph4nQFvHAz/26acfa99-fdec-43b8-b2ee-e49e75a3ac16.mp3",
+ "order": 16,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/2EiwWnXFnvU5JabPnv8n/65d80f52-703f-4cae-a91d-75d4e200ed02.mp3",
+ "order": 17,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/JBFqnCBsd6RMkjVDRZzb/365e8ae8-5364-4b07-9a3b-1bfb4a390248.mp3",
+ "order": 19,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/CYw3kZ02Hs0563khs1Fj/872cb056-45d3-419e-b5c6-de2b387a93a0.mp3",
+ "order": 20,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/Zlb1dXrM653N07WRdFW3/daa22039-8b09-4c65-b59f-c79c48646a72.mp3",
+ "order": 21,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/onwK4e9ZLuTAKqWW03F9/7eee0236-1a72-4b86-b303-5dcadc007ba9.mp3",
+ "order": 22,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/IKne3meq5aSn9XLyUdCD/102de6f2-22ed-43e0-a1f1-111fa75c5481.mp3",
+ "order": 23,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "au",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/ZQe5CZNOzWyzPSCn5a3c/35734112-7b72-48df-bc2f-64d5ab2f791b.mp3",
+ "order": 24,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "au",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/D38z5RcWu1voky8WS1ja/a470ba64-1e72-46d9-ba9d-030c4155e2d2.mp3",
+ "order": 25,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "ie",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/bVMeCyTHy58xNoL34h3p/66c47d58-26fd-4b30-8a06-07952116a72c.mp3",
+ "order": 26,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "ie",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/iP95p4xoKVk53GoZ742B/c1bda571-7123-418e-a796-a2b464b373b4.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/nPczCjzI2devNBz1zQrb/f4dbda0c-aff0-45c0-93fa-f5d5ec95a2eb.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/yoZ06aMxZJJ28mfd3POQ/ac9d1c91-92ce-4b20-8cc2-3187a7da49ec.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "William",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-WilliamNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-williamneural-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Darren",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-DarrenNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-darrenneural-en-us.mp3",
+ "approxDurationCoeficient": 22
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Duncan",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-DuncanNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-duncanneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ken",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-KenNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-kenneural-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Neil",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-NeilNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-neilneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Tim",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-TimNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-timneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Liam",
+ "name": "English (Canada)",
+ "locale": "en-CA",
+ "voice": "en-CA-LiamNeural",
+ "icon": "ca",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ca-liamneural-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Alfie",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-AlfieNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-alfieneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elliot",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-ElliotNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-elliotneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ethan",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-EthanNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-ethanneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Noah",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-NoahNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-noahneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Oliver",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-OliverNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-oliverneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Thomas",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-ThomasNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-thomasneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sam",
+ "name": "English (Hong Kong SAR)",
+ "locale": "en-HK",
+ "voice": "en-HK-SamNeural",
+ "icon": "hk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-hk-samneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Connor",
+ "name": "English (Ireland)",
+ "locale": "en-IE",
+ "voice": "en-IE-ConnorNeural",
+ "icon": "ie",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ie-connorneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Prabhat",
+ "name": "English (India)",
+ "locale": "en-IN",
+ "voice": "en-IN-PrabhatNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-in-prabhatneural-en-us.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Chilemba",
+ "name": "English (Kenya)",
+ "locale": "en-KE",
+ "voice": "en-KE-ChilembaNeural",
+ "icon": "ke",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ke-chilembaneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Abeo",
+ "name": "English (Nigeria)",
+ "locale": "en-NG",
+ "voice": "en-NG-AbeoNeural",
+ "icon": "ng",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ng-abeoneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Mitchell",
+ "name": "English (New Zealand)",
+ "locale": "en-NZ",
+ "voice": "en-NZ-MitchellNeural",
+ "icon": "nz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-nz-mitchellneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "James",
+ "name": "English (Philippines)",
+ "locale": "en-PH",
+ "voice": "en-PH-JamesNeural",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ph-jamesneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Wayne",
+ "name": "English (Singapore)",
+ "locale": "en-SG",
+ "voice": "en-SG-WayneNeural",
+ "icon": "sg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-sg-wayneneural-en-us.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elimu",
+ "name": "English (Tanzania)",
+ "locale": "en-TZ",
+ "voice": "en-TZ-ElimuNeural",
+ "icon": "tz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-tz-elimuneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Andrew",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AndrewNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-andrewneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Brian",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-BrianNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-brianneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Guy",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-GuyNeural",
+ "icon": "us",
+ "styleList": [
+ "newscast",
+ "angry",
+ "cheerful",
+ "sad",
+ "excited",
+ "friendly",
+ "terrified",
+ "shouting",
+ "unfriendly",
+ "whispering",
+ "hopeful"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "newscast": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:newscast-en-us.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:cheerful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:sad-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:friendly-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:terrified-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:shouting-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:whispering-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural:hopeful-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-guyneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Brandon",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-BrandonNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-brandonneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Christopher",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-ChristopherNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-christopherneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Eric",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-EricNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-ericneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jacob",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JacobNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jacobneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Roger",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-RogerNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-rogerneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ryan M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-RyanMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-ryanmultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Steffan",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-SteffanNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-steffanneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Luke",
+ "name": "English (South Africa)",
+ "locale": "en-ZA",
+ "voice": "en-ZA-LukeNeural",
+ "icon": "za",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-za-lukeneural-en-us.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Oscar K",
+ "name": "English-US",
+ "voice": "en-US-Casual-K",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-casual-k-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Miles B",
+ "name": "English-AU",
+ "voice": "en-AU-Neural2-B",
+ "icon": "au",
+ "voiceProvider": "google",
+ "locale": "en-AU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-au-neural2-b-en-us.mp3"
+ },
+ {
+ "character": "James D",
+ "name": "English-AU",
+ "voice": "en-AU-Neural2-D",
+ "icon": "au",
+ "voiceProvider": "google",
+ "locale": "en-AU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-au-neural2-d-en-us.mp3",
+ "approxDurationCoeficient": 21
+ },
+ {
+ "character": "Emmet B",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-B",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-b-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Jack D",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-D",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-d-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Cole B",
+ "name": "English-IN",
+ "voice": "en-IN-Neural2-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "en-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-in-neural2-b-en-us.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Ralph C",
+ "name": "English-IN",
+ "voice": "en-IN-Neural2-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "en-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-in-neural2-c-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Joe A",
+ "name": "English-US",
+ "voice": "en-US-Neural2-A",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-a-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Hayden D",
+ "name": "English-US",
+ "voice": "en-US-Neural2-D",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-d-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Oscar I",
+ "name": "English-US",
+ "voice": "en-US-Neural2-I",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-i-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Miles J",
+ "name": "English-US",
+ "voice": "en-US-Neural2-J",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-j-en-us.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Jane",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JaneNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-janeneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Emma",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-EmmaNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-emmaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Nancy",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-NancyNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-nancyneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sara",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-SaraNeural",
+ "icon": "us",
+ "styleList": [
+ "angry",
+ "cheerful",
+ "excited",
+ "friendly",
+ "hopeful",
+ "sad",
+ "shouting",
+ "terrified",
+ "unfriendly",
+ "whispering"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:cheerful-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:friendly-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:hopeful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:sad-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:shouting-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:terrified-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural:whispering-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-saraneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Joanne",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-JoanneNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-joanneneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sonia",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-SoniaNeural",
+ "icon": "gb",
+ "styleList": [
+ "cheerful",
+ "sad"
+ ],
+ "stylePreview": {
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-sonianeural:cheerful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-sonianeural:sad-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-sonianeural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Ava",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "72",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ava.m._promo_upbeat.wav"
+ },
+ {
+ "id": "31",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ava.m._narration_upbeat.wav"
+ },
+ {
+ "id": "43",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ava.m._conversational_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Alana",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "3",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_alana.b._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Nicole",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "14",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_nicole.l._narration_calm.wav"
+ },
+ {
+ "id": "45",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_nicole.l._conversational_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Sofia",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "upbeat",
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "20",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_sofia.h._promo_upbeat.wav"
+ },
+ {
+ "id": "8",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_sofia.h._narration_slow-paced.wav"
+ },
+ {
+ "id": "42",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_sofia.h._conversational_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Vanessa",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "10",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_vanessa.n._narration_slow-paced_elderly.wav"
+ },
+ {
+ "id": "48",
+ "name": "conversational",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_vanessa.n._conversational_calm_elderly.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Zoey",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "67",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_zoey.o._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Tilda",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "39",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_tilda.c._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Terra",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "59",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_terra.g._narration_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Shelby",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "104",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-104-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Selene",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "24",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_selene.r._promo_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Ramona",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "4",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ramona.j._narration_slow-paced.wav"
+ },
+ {
+ "id": "5",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_ramona.j._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Paula",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "78",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-78-en-us.mp3"
+ },
+ {
+ "id": "129",
+ "name": "Promo",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-129-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Paige",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "15",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_paige.l._narration_fast-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Kari",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "68",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_kari.n._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Jordan",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "icon": "au",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "62",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jordan.t._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Jodi",
+ "name": "English (Canada)",
+ "locale": "en-CA",
+ "icon": "ca",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "22",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jodi.p._promo_upbeat.wav"
+ },
+ {
+ "id": "51",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_jodi.p._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Issa",
+ "name": "English (South Africa)",
+ "locale": "en-ZA",
+ "icon": "za",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "109",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-109-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Isabel",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "11",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_isabel.b._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Hannah",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "fast",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "99",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-99-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Gia",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "49",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_gia.w._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Genevieve",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "55",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_genevieve.m._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Fiona",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "icon": "gb",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "63",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_fiona.h._narration_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Donna",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "slow-paced",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "65",
+ "name": "narration",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_donna.w._narration_slow-paced.wav"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Charlie",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "40",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_charlie.z._promo_calm.wav"
+ }
+ ],
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Cameron",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "77",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-77-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Bella",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "38",
+ "name": "promo",
+ "url": "https://elai-media.s3.eu-west-2.amazonaws.com/voices/wsl_bella.b._promo_upbeat.wav"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Ali",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "icon": "au",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "young"
+ ],
+ "playedTags": [
+ {
+ "id": "111",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-111-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Abbi",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "voiceProvider": "wsl",
+ "premium": true,
+ "tags": [
+ "middle-aged"
+ ],
+ "playedTags": [
+ {
+ "id": "102",
+ "name": "Narration",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/wsl/wsl-102-en-us.mp3"
+ }
+ ],
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/21m00Tcm4TlvDq8ikWAM/df6788f9-5c96-470d-8312-aab3b3d8f50a.mp3",
+ "order": 1,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/XrExE9yKIg1WjnnlVkGX/b930e18d-6b4d-466e-bab2-0ae97c6d8535.mp3",
+ "order": 3,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/oWAxZDx7w5VEj9dCyTzz/84a36d1c-e182-41a8-8c55-dbdd15cd6e72.mp3",
+ "order": 4,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/AZnzlk1XvdvUeBnXmlld/508e12d0-a7f7-4d86-a0d3-f3884ff353ed.mp3",
+ "order": 5,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/jBpfuIE2acCO8z3wKNLl/3a7e4339-78fa-404e-8d10-c3ef5587935b.mp3",
+ "order": 6,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/pMsXgVXv3BLzUgSXRplE/d61f18ed-e5b0-4d0b-a33c-5c6e7e33b053.mp3",
+ "order": 7,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/z9fAnlkpzviPz146aGWa/cbc60443-7b61-4ebb-b8e1-5c03237ea01d.mp3",
+ "order": 8,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/zrHiDhphv9ZnVXBqCLjz/decbf20b-0f57-4fac-985b-a4f0290ebfc4.mp3",
+ "order": 9,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/LcfcDJNUP1GQjkzn1xUU/e4b994b7-9713-4238-84f3-add8fccaaccd.mp3",
+ "order": 10,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/pFZP5JQG7iQjIQuC4Bku/0ab8bd74-fcd2-489d-b70a-3e1bcde8c999.mp3",
+ "order": 11,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/XB0fDUnXU5powFXDhCwa/942356dc-f10d-4d89-bda5-4f8505ee038b.mp3",
+ "order": 12,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/ThT5KcBeYPX3keUQqHPh/981f0855-6598-48d2-9f8f-b6d92fbbe3fc.mp3",
+ "order": 13,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "gb",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/EXAVITQu4vr4xnSDxMaL/6851ec91-9950-471f-8586-357c52539069.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/Xb7hH8MSUJpSbSDYk0k2/f5409e2f-d9c3-4ac9-9e7d-916a5dbd1ef1.mp3",
+ "order": 99999,
+ "name": "English (United States)",
+ "locale": "en-US",
+ "icon": "us",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Natasha",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-NatashaNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-natashaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Annette",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-AnnetteNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-annetteneural-en-us.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Carly",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-CarlyNeural",
+ "icon": "au",
+ "tags": [
+ "child"
+ ],
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-carlyneural-en-us.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elsie",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-ElsieNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-elsieneural-en-us.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Freya",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-FreyaNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-freyaneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Kim",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-KimNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-kimneural-en-us.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Tina",
+ "name": "English (Australia)",
+ "locale": "en-AU",
+ "voice": "en-AU-TinaNeural",
+ "icon": "au",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-au-tinaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Clara",
+ "name": "English (Canada)",
+ "locale": "en-CA",
+ "voice": "en-CA-ClaraNeural",
+ "icon": "ca",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ca-claraneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Libby",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-LibbyNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-libbyneural-en-us.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Abbi",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-AbbiNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-abbineural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Bella",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-BellaNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-bellaneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Hollie",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-HollieNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-hollieneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Maisie",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-MaisieNeural",
+ "icon": "gb",
+ "tags": [
+ "child"
+ ],
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-maisieneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Olivia",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-OliviaNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-olivianeural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Mia",
+ "name": "English (United Kingdom)",
+ "locale": "en-GB",
+ "voice": "en-GB-MiaNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-gb-mianeural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yan",
+ "name": "English (Hong Kong SAR)",
+ "locale": "en-HK",
+ "voice": "en-HK-YanNeural",
+ "icon": "hk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-hk-yanneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Emily",
+ "name": "English (Ireland)",
+ "locale": "en-IE",
+ "voice": "en-IE-EmilyNeural",
+ "icon": "ie",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ie-emilyneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Neerja",
+ "name": "English (India)",
+ "locale": "en-IN",
+ "voice": "en-IN-NeerjaNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-in-neerjaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Asilia",
+ "name": "English (Kenya)",
+ "locale": "en-KE",
+ "voice": "en-KE-AsiliaNeural",
+ "icon": "ke",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ke-asilianeural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ezinne",
+ "name": "English (Nigeria)",
+ "locale": "en-NG",
+ "voice": "en-NG-EzinneNeural",
+ "icon": "ng",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ng-ezinneneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Molly",
+ "name": "English (New Zealand)",
+ "locale": "en-NZ",
+ "voice": "en-NZ-MollyNeural",
+ "icon": "nz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-nz-mollyneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Rosa",
+ "name": "English (Philippines)",
+ "locale": "en-PH",
+ "voice": "en-PH-RosaNeural",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-ph-rosaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Luna",
+ "name": "English (Singapore)",
+ "locale": "en-SG",
+ "voice": "en-SG-LunaNeural",
+ "icon": "sg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-sg-lunaneural-en-us.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Imani",
+ "name": "English (Tanzania)",
+ "locale": "en-TZ",
+ "voice": "en-TZ-ImaniNeural",
+ "icon": "tz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-tz-imanineural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ava M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AvaMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-avamultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Emma M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-EmmaMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-emmamultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ava",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AvaNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-avaneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jenny",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JennyNeural",
+ "icon": "us",
+ "styleList": [
+ "assistant",
+ "chat",
+ "customerservice",
+ "newscast",
+ "angry",
+ "cheerful",
+ "sad",
+ "excited",
+ "friendly",
+ "terrified",
+ "shouting",
+ "unfriendly",
+ "whispering",
+ "hopeful"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "assistant": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:assistant-en-us.mp3",
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:chat-en-us.mp3",
+ "customerservice": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:customerservice-en-us.mp3",
+ "newscast": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:newscast-en-us.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:angry-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:cheerful-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:sad-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:friendly-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:terrified-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:shouting-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:whispering-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural:hopeful-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennyneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Aria",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AriaNeural",
+ "icon": "us",
+ "styleList": [
+ "chat",
+ "customerservice",
+ "narration-professional",
+ "newscast-casual",
+ "newscast-formal",
+ "cheerful",
+ "empathetic",
+ "angry",
+ "sad",
+ "excited",
+ "friendly",
+ "terrified",
+ "shouting",
+ "unfriendly",
+ "whispering",
+ "hopeful"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:chat-en-us.mp3",
+ "customerservice": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:customerservice-en-us.mp3",
+ "narration-professional": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:narration-professional-en-us.mp3",
+ "newscast-casual": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:newscast-casual-en-us.mp3",
+ "newscast-formal": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:newscast-formal-en-us.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:cheerful-en-us.mp3",
+ "empathetic": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:empathetic-en-us.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:angry-en-us.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:sad-en-us.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:excited-en-us.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:friendly-en-us.mp3",
+ "terrified": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:terrified-en-us.mp3",
+ "shouting": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:shouting-en-us.mp3",
+ "unfriendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:unfriendly-en-us.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:whispering-en-us.mp3",
+ "hopeful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural:hopeful-en-us.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-arianeural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Amber",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AmberNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-amberneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ana",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AnaNeural",
+ "icon": "us",
+ "tags": [
+ "child"
+ ],
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-ananeural-en-us.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ashley",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-AshleyNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-ashleyneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Cora",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-CoraNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-coraneural-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elizabeth",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-ElizabethNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-elizabethneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jenny M",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-JennyMultilingualNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-jennymultilingualneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Michelle",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-MichelleNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-michelleneural-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Monica",
+ "name": "English (United States)",
+ "locale": "en-US",
+ "voice": "en-US-MonicaNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-us-monicaneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Leah",
+ "name": "English (South Africa)",
+ "locale": "en-ZA",
+ "voice": "en-ZA-LeahNeural",
+ "icon": "za",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-en-za-leahneural-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Elanor A",
+ "name": "English-AU",
+ "voice": "en-AU-Neural2-A",
+ "icon": "au",
+ "voiceProvider": "google",
+ "locale": "en-AU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-au-neural2-a-en-us.mp3"
+ },
+ {
+ "character": "Lucy C",
+ "name": "English-AU",
+ "voice": "en-AU-Neural2-C",
+ "icon": "au",
+ "voiceProvider": "google",
+ "locale": "en-AU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-au-neural2-c-en-us.mp3"
+ },
+ {
+ "character": "Daisy A",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-A",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-a-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Scarlett C",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-C",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-c-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jane F",
+ "name": "English-GB",
+ "voice": "en-GB-Neural2-F",
+ "icon": "gb",
+ "voiceProvider": "google",
+ "locale": "en-GB",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-gb-neural2-f-en-us.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lily A",
+ "name": "English-IN",
+ "voice": "en-IN-Neural2-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "en-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-in-neural2-a-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Ella D",
+ "name": "English-IN",
+ "voice": "en-IN-Neural2-D",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "en-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-in-neural2-d-en-us.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "juliet C",
+ "name": "English-US",
+ "voice": "en-US-Neural2-C",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-c-en-us.mp3"
+ },
+ {
+ "character": "Ellie E",
+ "name": "English-US",
+ "voice": "en-US-Neural2-E",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-e-en-us.mp3"
+ },
+ {
+ "character": "Evelyn F",
+ "name": "English-US",
+ "voice": "en-US-Neural2-F",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-f-en-us.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Annie G",
+ "name": "English-US",
+ "voice": "en-US-Neural2-G",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-g-en-us.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Elanor H",
+ "name": "English-US",
+ "voice": "en-US-Neural2-H",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "en-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-en-us-neural2-h-en-us.mp3"
+ }
+ ]
+ },
+ {
+ "name": "Afrikaans",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Willem",
+ "name": "Afrikaans (South Africa)",
+ "locale": "af-ZA",
+ "voice": "af-ZA-WillemNeural",
+ "icon": "za",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-af-za-willemneural-af-za.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Adri",
+ "name": "Afrikaans (South Africa)",
+ "locale": "af-ZA",
+ "voice": "af-ZA-AdriNeural",
+ "icon": "za",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-af-za-adrineural-af-za.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Albanian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Ilir",
+ "name": "Albanian (Albania)",
+ "locale": "sq-AL",
+ "voice": "sq-AL-IlirNeural",
+ "icon": "al",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sq-al-ilirneural-sq-al.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Anila",
+ "name": "Albanian (Albania)",
+ "locale": "sq-AL",
+ "voice": "sq-AL-AnilaNeural",
+ "icon": "al",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sq-al-anilaneural-sq-al.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ]
+ },
+ {
+ "name": "Amharic",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Ameha",
+ "name": "Amharic (Ethiopia)",
+ "locale": "am-ET",
+ "voice": "am-ET-AmehaNeural",
+ "icon": "et",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-am-et-amehaneural-am-et.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Oscar B",
+ "name": "Amharic-ET",
+ "voice": "am-ET-Wavenet-B",
+ "icon": "et",
+ "voiceProvider": "google",
+ "locale": "am-ET",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-am-et-wavenet-b-am-et.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Mekdes",
+ "name": "Amharic (Ethiopia)",
+ "locale": "am-ET",
+ "voice": "am-ET-MekdesNeural",
+ "icon": "et",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-am-et-mekdesneural-am-et.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Elanor A",
+ "name": "Amharic-ET",
+ "voice": "am-ET-Wavenet-A",
+ "icon": "et",
+ "voiceProvider": "google",
+ "locale": "am-ET",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-am-et-wavenet-a-am-et.mp3",
+ "approxDurationCoeficient": 13
+ }
+ ]
+ },
+ {
+ "name": "Arabic",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Hamdan",
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "voice": "ar-AE-HamdanNeural",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-ae-hamdanneural-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-ar-ae.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-ar-ae.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-ar-ae.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-ar-ae.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-ar-ae.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-ar-ae.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-ar-ae.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-ar-ae.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-ar-ae.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-ar-ae.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-ar-ae.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-ar-ae.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-ar-ae.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-ar-ae.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-ar-ae.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-ar-ae.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ali",
+ "name": "Arabic (Bahrain)",
+ "locale": "ar-BH",
+ "voice": "ar-BH-AliNeural",
+ "icon": "bh",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-bh-alineural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ismael",
+ "name": "Arabic (Algeria)",
+ "locale": "ar-DZ",
+ "voice": "ar-DZ-IsmaelNeural",
+ "icon": "dz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-dz-ismaelneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Shakir",
+ "name": "Arabic (Egypt)",
+ "locale": "ar-EG",
+ "voice": "ar-EG-ShakirNeural",
+ "icon": "eg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-eg-shakirneural-ar-ae.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Bassel",
+ "name": "Arabic (Iraq)",
+ "locale": "ar-IQ",
+ "voice": "ar-IQ-BasselNeural",
+ "icon": "iq",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-iq-basselneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Taim",
+ "name": "Arabic (Jordan)",
+ "locale": "ar-JO",
+ "voice": "ar-JO-TaimNeural",
+ "icon": "jo",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-jo-taimneural-ar-ae.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Fahed",
+ "name": "Arabic (Kuwait)",
+ "locale": "ar-KW",
+ "voice": "ar-KW-FahedNeural",
+ "icon": "kw",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-kw-fahedneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Rami",
+ "name": "Arabic (Lebanon)",
+ "locale": "ar-LB",
+ "voice": "ar-LB-RamiNeural",
+ "icon": "lb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-lb-ramineural-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Omar",
+ "name": "Arabic (Libya)",
+ "locale": "ar-LY",
+ "voice": "ar-LY-OmarNeural",
+ "icon": "ly",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-ly-omarneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jamal",
+ "name": "Arabic (Morocco)",
+ "locale": "ar-MA",
+ "voice": "ar-MA-JamalNeural",
+ "icon": "ma",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-ma-jamalneural-ar-ae.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Abdullah",
+ "name": "Arabic (Oman)",
+ "locale": "ar-OM",
+ "voice": "ar-OM-AbdullahNeural",
+ "icon": "om",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-om-abdullahneural-ar-ae.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Moaz",
+ "name": "Arabic (Qatar)",
+ "locale": "ar-QA",
+ "voice": "ar-QA-MoazNeural",
+ "icon": "qa",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-qa-moazneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Hamed",
+ "name": "Arabic (Saudi Arabia)",
+ "locale": "ar-SA",
+ "voice": "ar-SA-HamedNeural",
+ "icon": "sa",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-sa-hamedneural-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Laith",
+ "name": "Arabic (Syria)",
+ "locale": "ar-SY",
+ "voice": "ar-SY-LaithNeural",
+ "icon": "sy",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-sy-laithneural-ar-ae.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Hedi",
+ "name": "Arabic (Tunisia)",
+ "locale": "ar-TN",
+ "voice": "ar-TN-HediNeural",
+ "icon": "tn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-tn-hedineural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Saleh",
+ "name": "Arabic (Yemen)",
+ "locale": "ar-YE",
+ "voice": "ar-YE-SalehNeural",
+ "icon": "ye",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-ye-salehneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Zayn B",
+ "name": "Arabic-XA",
+ "voice": "ar-XA-Wavenet-B",
+ "icon": "xa",
+ "voiceProvider": "google",
+ "locale": "ar-XA",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ar-xa-wavenet-b-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Amir C",
+ "name": "Arabic-XA",
+ "voice": "ar-XA-Wavenet-C",
+ "icon": "xa",
+ "voiceProvider": "google",
+ "locale": "ar-XA",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ar-xa-wavenet-c-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Fatima",
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "voice": "ar-AE-FatimaNeural",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-ae-fatimaneural-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-ar-ae.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-ar-ae.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-ar-ae.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-ar-ae.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-ar-ae.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-ar-ae.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-ar-ae.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Arabic (United Arab Emirates)",
+ "locale": "ar-AE",
+ "icon": "ae",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Laila",
+ "name": "Arabic (Bahrain)",
+ "locale": "ar-BH",
+ "voice": "ar-BH-LailaNeural",
+ "icon": "bh",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-bh-lailaneural-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Amina",
+ "name": "Arabic (Algeria)",
+ "locale": "ar-DZ",
+ "voice": "ar-DZ-AminaNeural",
+ "icon": "dz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-dz-aminaneural-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Salma",
+ "name": "Arabic (Egypt)",
+ "locale": "ar-EG",
+ "voice": "ar-EG-SalmaNeural",
+ "icon": "eg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-eg-salmaneural-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Rana",
+ "name": "Arabic (Iraq)",
+ "locale": "ar-IQ",
+ "voice": "ar-IQ-RanaNeural",
+ "icon": "iq",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-iq-rananeural-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sana",
+ "name": "Arabic (Jordan)",
+ "locale": "ar-JO",
+ "voice": "ar-JO-SanaNeural",
+ "icon": "jo",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-jo-sananeural-ar-ae.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Noura",
+ "name": "Arabic (Kuwait)",
+ "locale": "ar-KW",
+ "voice": "ar-KW-NouraNeural",
+ "icon": "kw",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-kw-nouraneural-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Layla",
+ "name": "Arabic (Lebanon)",
+ "locale": "ar-LB",
+ "voice": "ar-LB-LaylaNeural",
+ "icon": "lb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-lb-laylaneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Iman",
+ "name": "Arabic (Libya)",
+ "locale": "ar-LY",
+ "voice": "ar-LY-ImanNeural",
+ "icon": "ly",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-ly-imanneural-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Mouna",
+ "name": "Arabic (Morocco)",
+ "locale": "ar-MA",
+ "voice": "ar-MA-MounaNeural",
+ "icon": "ma",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-ma-mounaneural-ar-ae.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Aysha",
+ "name": "Arabic (Oman)",
+ "locale": "ar-OM",
+ "voice": "ar-OM-AyshaNeural",
+ "icon": "om",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-om-ayshaneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Amal",
+ "name": "Arabic (Qatar)",
+ "locale": "ar-QA",
+ "voice": "ar-QA-AmalNeural",
+ "icon": "qa",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-qa-amalneural-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Zariyah",
+ "name": "Arabic (Saudi Arabia)",
+ "locale": "ar-SA",
+ "voice": "ar-SA-ZariyahNeural",
+ "icon": "sa",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-sa-zariyahneural-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Amany",
+ "name": "Arabic (Syria)",
+ "locale": "ar-SY",
+ "voice": "ar-SY-AmanyNeural",
+ "icon": "sy",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-sy-amanyneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Reem",
+ "name": "Arabic (Tunisia)",
+ "locale": "ar-TN",
+ "voice": "ar-TN-ReemNeural",
+ "icon": "tn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-tn-reemneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Maryam",
+ "name": "Arabic (Yemen)",
+ "locale": "ar-YE",
+ "voice": "ar-YE-MaryamNeural",
+ "icon": "ye",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ar-ye-maryamneural-ar-ae.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Lila A",
+ "name": "Arabic-XA",
+ "voice": "ar-XA-Wavenet-A",
+ "icon": "xa",
+ "voiceProvider": "google",
+ "locale": "ar-XA",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ar-xa-wavenet-a-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Yara D",
+ "name": "Arabic-XA",
+ "voice": "ar-XA-Wavenet-D",
+ "icon": "xa",
+ "voiceProvider": "google",
+ "locale": "ar-XA",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ar-xa-wavenet-d-ar-ae.mp3",
+ "approxDurationCoeficient": 12
+ }
+ ]
+ },
+ {
+ "name": "Armenian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Hayk",
+ "name": "Armenian (Armenia)",
+ "locale": "hy-AM",
+ "voice": "hy-AM-HaykNeural",
+ "icon": "am",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-hy-am-haykneural-hy-am.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Anahit",
+ "name": "Armenian (Armenia)",
+ "locale": "hy-AM",
+ "voice": "hy-AM-AnahitNeural",
+ "icon": "am",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-hy-am-anahitneural-hy-am.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Azerbaijani",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Babek",
+ "name": "Azerbaijani (Latin, Azerbaijan)",
+ "locale": "az-AZ",
+ "voice": "az-AZ-BabekNeural",
+ "icon": "az",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-az-az-babekneural-az-az.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Banu",
+ "name": "Azerbaijani (Latin, Azerbaijan)",
+ "locale": "az-AZ",
+ "voice": "az-AZ-BanuNeural",
+ "icon": "az",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-az-az-banuneural-az-az.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ]
+ },
+ {
+ "name": "Bangla",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Pradeep",
+ "name": "Bangla (Bangladesh)",
+ "locale": "bn-BD",
+ "voice": "bn-BD-PradeepNeural",
+ "icon": "bd",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-bn-bd-pradeepneural-bn-bd.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Nabanita",
+ "name": "Bangla (Bangladesh)",
+ "locale": "bn-BD",
+ "voice": "bn-BD-NabanitaNeural",
+ "icon": "bd",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-bn-bd-nabanitaneural-bn-bd.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Basque",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Ander",
+ "name": "Basque",
+ "locale": "eu-ES",
+ "voice": "eu-ES-AnderNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-eu-es-anderneural-eu-es.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Ainhoa",
+ "name": "Basque",
+ "locale": "eu-ES",
+ "voice": "eu-ES-AinhoaNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-eu-es-ainhoaneural-eu-es.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Bengali",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Bashkar",
+ "name": "Bengali (India)",
+ "locale": "bn-IN",
+ "voice": "bn-IN-BashkarNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-bn-in-bashkarneural-bn-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Oscar B",
+ "name": "Bengali-IN",
+ "voice": "bn-IN-Wavenet-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "bn-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-bn-in-wavenet-b-bn-in.mp3"
+ },
+ {
+ "character": "Miles D",
+ "name": "Bengali-IN",
+ "voice": "bn-IN-Wavenet-D",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "bn-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-bn-in-wavenet-d-bn-in.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Tanishaa",
+ "name": "Bengali (India)",
+ "locale": "bn-IN",
+ "voice": "bn-IN-TanishaaNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-bn-in-tanishaaneural-bn-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Elanor A",
+ "name": "Bengali-IN",
+ "voice": "bn-IN-Wavenet-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "bn-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-bn-in-wavenet-a-bn-in.mp3"
+ },
+ {
+ "character": "Lucy C",
+ "name": "Bengali-IN",
+ "voice": "bn-IN-Wavenet-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "bn-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-bn-in-wavenet-c-bn-in.mp3",
+ "approxDurationCoeficient": 6
+ }
+ ]
+ },
+ {
+ "name": "Bosnian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Goran",
+ "name": "Bosnian (Bosnia and Herzegovina)",
+ "locale": "bs-BA",
+ "voice": "bs-BA-GoranNeural",
+ "icon": "ba",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-bs-ba-goranneural-bs-ba.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Vesna",
+ "name": "Bosnian (Bosnia and Herzegovina)",
+ "locale": "bs-BA",
+ "voice": "bs-BA-VesnaNeural",
+ "icon": "ba",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-bs-ba-vesnaneural-bs-ba.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ]
+ },
+ {
+ "name": "Bulgarian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Borislav",
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "voice": "bg-BG-BorislavNeural",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-bg-bg-borislavneural-bg-bg.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-bg-bg.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-bg-bg.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-bg-bg.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-bg-bg.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-bg-bg.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-bg-bg.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-bg-bg.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-bg-bg.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-bg-bg.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-bg-bg.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-bg-bg.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-bg-bg.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-bg-bg.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-bg-bg.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-bg-bg.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-bg-bg.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-bg-bg.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-bg-bg.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-bg-bg.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-bg-bg.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-bg-bg.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-bg-bg.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-bg-bg.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-bg-bg.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-bg-bg.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-bg-bg.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-bg-bg.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Kalina",
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "voice": "bg-BG-KalinaNeural",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-bg-bg-kalinaneural-bg-bg.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-bg-bg.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-bg-bg.mp3"
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-bg-bg.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-bg-bg.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-bg-bg.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-bg-bg.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-bg-bg.mp3"
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-bg-bg.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-bg-bg.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-bg-bg.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-bg-bg.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-bg-bg.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-bg-bg.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Bulgarian (Bulgaria)",
+ "locale": "bg-BG",
+ "icon": "bg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-bg-bg.mp3"
+ }
+ ]
+ },
+ {
+ "name": "Burmese",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Thiha",
+ "name": "Burmese (Myanmar)",
+ "locale": "my-MM",
+ "voice": "my-MM-ThihaNeural",
+ "icon": "mm",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-my-mm-thihaneural-my-mm.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Nilar",
+ "name": "Burmese (Myanmar)",
+ "locale": "my-MM",
+ "voice": "my-MM-NilarNeural",
+ "icon": "mm",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-my-mm-nilarneural-my-mm.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Catalan",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Enric",
+ "name": "Catalan (Spain)",
+ "locale": "ca-ES",
+ "voice": "ca-ES-EnricNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ca-es-enricneural-ca-es.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Joana",
+ "name": "Catalan (Spain)",
+ "locale": "ca-ES",
+ "voice": "ca-ES-JoanaNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ca-es-joananeural-ca-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Alba",
+ "name": "Catalan (Spain)",
+ "locale": "ca-ES",
+ "voice": "ca-ES-AlbaNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ca-es-albaneural-ca-es.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ]
+ },
+ {
+ "name": "Chinese",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Yunyi M",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunyiMultilingualNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyimultilingualneural-zh-cn.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-zh-cn.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-zh-cn.mp3",
+ "approxDurationCoeficient": 5
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-zh-cn.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-zh-cn.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-zh-cn.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-zh-cn.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-zh-cn.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-zh-cn.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-zh-cn.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-zh-cn.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-zh-cn.mp3",
+ "approxDurationCoeficient": 3
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-zh-cn.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-zh-cn.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-zh-cn.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-zh-cn.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-zh-cn.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-zh-cn.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-zh-cn.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-zh-cn.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-zh-cn.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-zh-cn.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-zh-cn.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-zh-cn.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-zh-cn.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-zh-cn.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-zh-cn.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-zh-cn.mp3",
+ "approxDurationCoeficient": 5
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunzhe",
+ "name": "Chinese (Wu, Simplified)",
+ "locale": "wuu-CN",
+ "voice": "wuu-CN-YunzheNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-wuu-cn-yunzheneural-zh-cn.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "YunSong",
+ "name": "Chinese (Cantonese, Simplified)",
+ "locale": "yue-CN",
+ "voice": "yue-CN-YunSongNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-yue-cn-yunsongneural-zh-cn.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunxi",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunxiNeural",
+ "icon": "cn",
+ "rolePlayList": [
+ "Narrator",
+ "YoungAdultMale",
+ "Boy"
+ ],
+ "styleList": [
+ "narration-relaxed",
+ "embarrassed",
+ "fearful",
+ "cheerful",
+ "disgruntled",
+ "serious",
+ "angry",
+ "sad",
+ "depressed",
+ "chat",
+ "assistant",
+ "newscast"
+ ],
+ "stylePreview": {
+ "narration-relaxed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:narration-relaxed-zh-cn.mp3",
+ "embarrassed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:embarrassed-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:fearful-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:cheerful-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:disgruntled-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:serious-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:angry-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:sad-zh-cn.mp3",
+ "depressed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:depressed-zh-cn.mp3",
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:chat-zh-cn.mp3",
+ "assistant": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:assistant-zh-cn.mp3",
+ "newscast": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural:newscast-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxineural-zh-cn.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunjian",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunjianNeural",
+ "icon": "cn",
+ "styleList": [
+ "narration-relaxed",
+ "sports-commentary",
+ "sports-commentary-excited",
+ "angry",
+ "disgruntled",
+ "cheerful",
+ "sad",
+ "serious",
+ "depressed",
+ "documentary-narration"
+ ],
+ "stylePreview": {
+ "narration-relaxed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:narration-relaxed-zh-cn.mp3",
+ "sports-commentary": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:sports-commentary-zh-cn.mp3",
+ "sports-commentary-excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:sports-commentary-excited-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:angry-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:disgruntled-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:cheerful-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:sad-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:serious-zh-cn.mp3",
+ "depressed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:depressed-zh-cn.mp3",
+ "documentary-narration": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural:documentary-narration-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjianneural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunyang",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunyangNeural",
+ "icon": "cn",
+ "styleList": [
+ "customerservice",
+ "narration-professional",
+ "newscast-casual"
+ ],
+ "stylePreview": {
+ "customerservice": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyangneural:customerservice-zh-cn.mp3",
+ "narration-professional": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyangneural:narration-professional-zh-cn.mp3",
+ "newscast-casual": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyangneural:newscast-casual-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyangneural-zh-cn.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunfeng",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunfengNeural",
+ "icon": "cn",
+ "styleList": [
+ "angry",
+ "disgruntled",
+ "cheerful",
+ "fearful",
+ "sad",
+ "serious",
+ "depressed"
+ ],
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunfengneural:angry-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunfengneural:disgruntled-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunfengneural:cheerful-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunfengneural:fearful-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunfengneural:sad-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunfengneural:serious-zh-cn.mp3",
+ "depressed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunfengneural:depressed-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunfengneural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunhao",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunhaoNeural",
+ "icon": "cn",
+ "styleList": [
+ "advertisement-upbeat"
+ ],
+ "stylePreview": {
+ "advertisement-upbeat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunhaoneural:advertisement-upbeat-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunhaoneural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunjie",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunjieNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunjieneural-zh-cn.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunxia",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunxiaNeural",
+ "icon": "cn",
+ "styleList": [
+ "calm",
+ "fearful",
+ "cheerful",
+ "angry",
+ "sad"
+ ],
+ "stylePreview": {
+ "calm": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxianeural:calm-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxianeural:fearful-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxianeural:cheerful-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxianeural:angry-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxianeural:sad-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunxianeural-zh-cn.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunye",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunyeNeural",
+ "icon": "cn",
+ "rolePlayList": [
+ "YoungAdultFemale",
+ "YoungAdultMale",
+ "OlderAdultFemale",
+ "OlderAdultMale",
+ "SeniorFemale",
+ "SeniorMale",
+ "Girl",
+ "Boy"
+ ],
+ "styleList": [
+ "embarrassed",
+ "calm",
+ "fearful",
+ "cheerful",
+ "disgruntled",
+ "serious",
+ "angry",
+ "sad"
+ ],
+ "stylePreview": {
+ "embarrassed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyeneural:embarrassed-zh-cn.mp3",
+ "calm": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyeneural:calm-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyeneural:fearful-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyeneural:cheerful-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyeneural:disgruntled-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyeneural:serious-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyeneural:angry-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyeneural:sad-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunyeneural-zh-cn.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunze",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-YunzeNeural",
+ "icon": "cn",
+ "rolePlayList": [
+ "OlderAdultMale",
+ "SeniorMale"
+ ],
+ "styleList": [
+ "calm",
+ "fearful",
+ "cheerful",
+ "disgruntled",
+ "serious",
+ "angry",
+ "sad",
+ "depressed",
+ "documentary-narration"
+ ],
+ "stylePreview": {
+ "calm": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural:calm-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural:fearful-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural:cheerful-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural:disgruntled-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural:serious-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural:angry-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural:sad-zh-cn.mp3",
+ "depressed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural:depressed-zh-cn.mp3",
+ "documentary-narration": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural:documentary-narration-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-yunzeneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yundeng",
+ "name": "Chinese (Zhongyuan Mandarin Henan, Simplified)",
+ "locale": "zh-CN-henan",
+ "voice": "zh-CN-henan-YundengNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-henan-yundengneural-zh-cn.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yunxiang",
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "voice": "zh-CN-shandong-YunxiangNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-shandong-yunxiangneural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "YunxiSichuan",
+ "name": "Chinese (Southwestern Mandarin, Simplified)",
+ "locale": "zh-CN-sichuan",
+ "voice": "zh-CN-sichuan-YunxiNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-sichuan-yunxineural-zh-cn.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "WanLung",
+ "name": "Chinese (Cantonese, Traditional)",
+ "locale": "zh-HK",
+ "voice": "zh-HK-WanLungNeural",
+ "icon": "hk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-hk-wanlungneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "YunJhe",
+ "name": "Chinese (Taiwanese Mandarin, Traditional)",
+ "locale": "zh-TW",
+ "voice": "zh-TW-YunJheNeural",
+ "icon": "tw",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-tw-yunjheneural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "character": "Cheng B",
+ "name": "Chinese-CN",
+ "voice": "cmn-CN-Wavenet-B",
+ "icon": "cn",
+ "voiceProvider": "google",
+ "locale": "cmn-CN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-cmn-cn-wavenet-b-zh-cn.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Fu C",
+ "name": "Chinese-CN",
+ "voice": "cmn-CN-Wavenet-C",
+ "icon": "cn",
+ "voiceProvider": "google",
+ "locale": "cmn-CN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-cmn-cn-wavenet-c-zh-cn.mp3"
+ },
+ {
+ "character": "Wu B",
+ "name": "Chinese-TW",
+ "voice": "cmn-TW-Wavenet-B",
+ "icon": "tw",
+ "voiceProvider": "google",
+ "locale": "cmn-TW",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-cmn-tw-wavenet-b-zh-cn.mp3"
+ },
+ {
+ "character": "Yi C",
+ "name": "Chinese-TW",
+ "voice": "cmn-TW-Wavenet-C",
+ "icon": "tw",
+ "voiceProvider": "google",
+ "locale": "cmn-TW",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-cmn-tw-wavenet-c-zh-cn.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaochen M",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaochenMultilingualNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaochenmultilingualneural-zh-cn.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoxiao M",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoxiaoMultilingualNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaomultilingualneural-zh-cn.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-zh-cn.mp3",
+ "approxDurationCoeficient": 5
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-zh-cn.mp3"
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-zh-cn.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-zh-cn.mp3",
+ "approxDurationCoeficient": 5
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-zh-cn.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-zh-cn.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-zh-cn.mp3",
+ "approxDurationCoeficient": 3
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-zh-cn.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-zh-cn.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-zh-cn.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-zh-cn.mp3",
+ "approxDurationCoeficient": 3
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-zh-cn.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-zh-cn.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Chinese (Jilu Mandarin, Simplified)",
+ "locale": "zh-CN-shandong",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-zh-cn.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaotong",
+ "name": "Chinese (Wu, Simplified)",
+ "locale": "wuu-CN",
+ "voice": "wuu-CN-XiaotongNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-wuu-cn-xiaotongneural-zh-cn.mp3",
+ "approxDurationCoeficient": 5
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "XiaoMin",
+ "name": "Chinese (Cantonese, Simplified)",
+ "locale": "yue-CN",
+ "voice": "yue-CN-XiaoMinNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-yue-cn-xiaominneural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoxiao",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoxiaoNeural",
+ "icon": "cn",
+ "styleList": [
+ "assistant",
+ "chat",
+ "customerservice",
+ "newscast",
+ "affectionate",
+ "angry",
+ "calm",
+ "cheerful",
+ "disgruntled",
+ "fearful",
+ "gentle",
+ "lyrical",
+ "sad",
+ "serious",
+ "poetry-reading",
+ "friendly",
+ "chat-casual",
+ "whispering",
+ "sorry",
+ "excited"
+ ],
+ "defaultStyle": "friendly",
+ "stylePreview": {
+ "assistant": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:assistant-zh-cn.mp3",
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:chat-zh-cn.mp3",
+ "customerservice": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:customerservice-zh-cn.mp3",
+ "newscast": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:newscast-zh-cn.mp3",
+ "affectionate": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:affectionate-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:angry-zh-cn.mp3",
+ "calm": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:calm-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:cheerful-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:disgruntled-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:fearful-zh-cn.mp3",
+ "gentle": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:gentle-zh-cn.mp3",
+ "lyrical": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:lyrical-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:sad-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:serious-zh-cn.mp3",
+ "poetry-reading": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:poetry-reading-zh-cn.mp3",
+ "friendly": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:friendly-zh-cn.mp3",
+ "chat-casual": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:chat-casual-zh-cn.mp3",
+ "whispering": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:whispering-zh-cn.mp3",
+ "sorry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:sorry-zh-cn.mp3",
+ "excited": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural:excited-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaoneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoyi",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoyiNeural",
+ "icon": "cn",
+ "styleList": [
+ "angry",
+ "disgruntled",
+ "affectionate",
+ "cheerful",
+ "fearful",
+ "sad",
+ "embarrassed",
+ "serious",
+ "gentle"
+ ],
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural:angry-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural:disgruntled-zh-cn.mp3",
+ "affectionate": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural:affectionate-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural:cheerful-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural:fearful-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural:sad-zh-cn.mp3",
+ "embarrassed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural:embarrassed-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural:serious-zh-cn.mp3",
+ "gentle": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural:gentle-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyineural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaochen",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaochenNeural",
+ "icon": "cn",
+ "styleList": [
+ "livecommercial"
+ ],
+ "stylePreview": {
+ "livecommercial": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaochenneural:livecommercial-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaochenneural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaohan",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaohanNeural",
+ "icon": "cn",
+ "styleList": [
+ "calm",
+ "fearful",
+ "cheerful",
+ "disgruntled",
+ "serious",
+ "angry",
+ "sad",
+ "gentle",
+ "affectionate",
+ "embarrassed"
+ ],
+ "stylePreview": {
+ "calm": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:calm-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:fearful-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:cheerful-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:disgruntled-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:serious-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:angry-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:sad-zh-cn.mp3",
+ "gentle": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:gentle-zh-cn.mp3",
+ "affectionate": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:affectionate-zh-cn.mp3",
+ "embarrassed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural:embarrassed-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaohanneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaomeng",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaomengNeural",
+ "icon": "cn",
+ "styleList": [
+ "chat"
+ ],
+ "stylePreview": {
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomengneural:chat-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomengneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaomo",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaomoNeural",
+ "icon": "cn",
+ "rolePlayList": [
+ "YoungAdultFemale",
+ "YoungAdultMale",
+ "OlderAdultFemale",
+ "OlderAdultMale",
+ "SeniorFemale",
+ "SeniorMale",
+ "Girl",
+ "Boy"
+ ],
+ "styleList": [
+ "embarrassed",
+ "calm",
+ "fearful",
+ "cheerful",
+ "disgruntled",
+ "serious",
+ "angry",
+ "sad",
+ "depressed",
+ "affectionate",
+ "gentle",
+ "envious"
+ ],
+ "stylePreview": {
+ "embarrassed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:embarrassed-zh-cn.mp3",
+ "calm": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:calm-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:fearful-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:cheerful-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:disgruntled-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:serious-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:angry-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:sad-zh-cn.mp3",
+ "depressed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:depressed-zh-cn.mp3",
+ "affectionate": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:affectionate-zh-cn.mp3",
+ "gentle": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:gentle-zh-cn.mp3",
+ "envious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural:envious-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaomoneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoqiu",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoqiuNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoqiuneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaorou",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaorouNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaorouneural-zh-cn.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaorui",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoruiNeural",
+ "icon": "cn",
+ "styleList": [
+ "calm",
+ "fearful",
+ "angry",
+ "sad"
+ ],
+ "stylePreview": {
+ "calm": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoruineural:calm-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoruineural:fearful-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoruineural:angry-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoruineural:sad-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoruineural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoshuang",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoshuangNeural",
+ "icon": "cn",
+ "styleList": [
+ "chat"
+ ],
+ "tags": [
+ "child"
+ ],
+ "stylePreview": {
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoshuangneural:chat-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoshuangneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoxiao Dialects",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoxiaoDialectsNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxiaodialectsneural-zh-cn.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoyan",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoyanNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyanneural-zh-cn.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoyou",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoyouNeural",
+ "icon": "cn",
+ "tags": [
+ "child"
+ ],
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyouneural-zh-cn.mp3",
+ "approxDurationCoeficient": 5
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoyu M",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoyuMultilingualNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoyumultilingualneural-zh-cn.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaozhen",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaozhenNeural",
+ "icon": "cn",
+ "styleList": [
+ "angry",
+ "disgruntled",
+ "cheerful",
+ "fearful",
+ "sad",
+ "serious"
+ ],
+ "stylePreview": {
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaozhenneural:angry-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaozhenneural:disgruntled-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaozhenneural:cheerful-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaozhenneural:fearful-zh-cn.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaozhenneural:sad-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaozhenneural:serious-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaozhenneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoxuan",
+ "name": "Chinese (Mandarin, Simplified)",
+ "locale": "zh-CN",
+ "voice": "zh-CN-XiaoxuanNeural",
+ "icon": "cn",
+ "rolePlayList": [
+ "YoungAdultFemale",
+ "YoungAdultMale",
+ "OlderAdultFemale",
+ "OlderAdultMale",
+ "SeniorFemale",
+ "SeniorMale",
+ "Girl",
+ "Boy"
+ ],
+ "styleList": [
+ "calm",
+ "fearful",
+ "cheerful",
+ "disgruntled",
+ "serious",
+ "angry",
+ "gentle",
+ "depressed"
+ ],
+ "stylePreview": {
+ "calm": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxuanneural:calm-zh-cn.mp3",
+ "fearful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxuanneural:fearful-zh-cn.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxuanneural:cheerful-zh-cn.mp3",
+ "disgruntled": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxuanneural:disgruntled-zh-cn.mp3",
+ "serious": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxuanneural:serious-zh-cn.mp3",
+ "angry": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxuanneural:angry-zh-cn.mp3",
+ "gentle": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxuanneural:gentle-zh-cn.mp3",
+ "depressed": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxuanneural:depressed-zh-cn.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-xiaoxuanneural-zh-cn.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaobei",
+ "name": "Chinese (Northeastern Mandarin, Simplified)",
+ "locale": "zh-CN-liaoning",
+ "voice": "zh-CN-liaoning-XiaobeiNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-liaoning-xiaobeineural-zh-cn.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Xiaoni",
+ "name": "Chinese (Zhongyuan Mandarin Shaanxi, Simplified)",
+ "locale": "zh-CN-shaanxi",
+ "voice": "zh-CN-shaanxi-XiaoniNeural",
+ "icon": "cn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-cn-shaanxi-xiaonineural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "HiuMaan",
+ "name": "Chinese (Cantonese, Traditional)",
+ "locale": "zh-HK",
+ "voice": "zh-HK-HiuMaanNeural",
+ "icon": "hk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-hk-hiumaanneural-zh-cn.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "HiuGaai",
+ "name": "Chinese (Cantonese, Traditional)",
+ "locale": "zh-HK",
+ "voice": "zh-HK-HiuGaaiNeural",
+ "icon": "hk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-hk-hiugaaineural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "HsiaoChen",
+ "name": "Chinese (Taiwanese Mandarin, Traditional)",
+ "locale": "zh-TW",
+ "voice": "zh-TW-HsiaoChenNeural",
+ "icon": "tw",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-tw-hsiaochenneural-zh-cn.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "HsiaoYu",
+ "name": "Chinese (Taiwanese Mandarin, Traditional)",
+ "locale": "zh-TW",
+ "voice": "zh-TW-HsiaoYuNeural",
+ "icon": "tw",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zh-tw-hsiaoyuneural-zh-cn.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "character": "Mei A",
+ "name": "Chinese-CN",
+ "voice": "cmn-CN-Wavenet-A",
+ "icon": "cn",
+ "voiceProvider": "google",
+ "locale": "cmn-CN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-cmn-cn-wavenet-a-zh-cn.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Wei D",
+ "name": "Chinese-CN",
+ "voice": "cmn-CN-Wavenet-D",
+ "icon": "cn",
+ "voiceProvider": "google",
+ "locale": "cmn-CN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-cmn-cn-wavenet-d-zh-cn.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Jiā A",
+ "name": "Chinese-TW",
+ "voice": "cmn-TW-Wavenet-A",
+ "icon": "tw",
+ "voiceProvider": "google",
+ "locale": "cmn-TW",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-cmn-tw-wavenet-a-zh-cn.mp3"
+ }
+ ]
+ },
+ {
+ "name": "Croatian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Srecko",
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "voice": "hr-HR-SreckoNeural",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-hr-hr-sreckoneural-hr-hr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-hr-hr.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-hr-hr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-hr-hr.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-hr-hr.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-hr-hr.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-hr-hr.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-hr-hr.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-hr-hr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-hr-hr.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-hr-hr.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-hr-hr.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-hr-hr.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-hr-hr.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-hr-hr.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-hr-hr.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-hr-hr.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-hr-hr.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-hr-hr.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-hr-hr.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-hr-hr.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-hr-hr.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-hr-hr.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-hr-hr.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-hr-hr.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-hr-hr.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-hr-hr.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-hr-hr.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Gabrijela",
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "voice": "hr-HR-GabrijelaNeural",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-hr-hr-gabrijelaneural-hr-hr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-hr-hr.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-hr-hr.mp3"
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-hr-hr.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-hr-hr.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-hr-hr.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-hr-hr.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-hr-hr.mp3"
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-hr-hr.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-hr-hr.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-hr-hr.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-hr-hr.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-hr-hr.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-hr-hr.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Croatian (Croatia)",
+ "locale": "hr-HR",
+ "icon": "hr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-hr-hr.mp3"
+ }
+ ]
+ },
+ {
+ "name": "Czech",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Antonin",
+ "name": "Czech (Czechia)",
+ "locale": "cs-CZ",
+ "voice": "cs-CZ-AntoninNeural",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-cs-cz-antoninneural-cs-cz.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-cs-cz.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-cs-cz.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-cs-cz.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-cs-cz.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-cs-cz.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-cs-cz.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-cs-cz.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-cs-cz.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-cs-cz.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-cs-cz.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-cs-cz.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-cs-cz.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-cs-cz.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-cs-cz.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-cs-cz.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-cs-cz.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-cs-cz.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-cs-cz.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-cs-cz.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-cs-cz.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-cs-cz.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-cs-cz.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-cs-cz.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-cs-cz.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-cs-cz.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-cs-cz.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-cs-cz.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Vlasta",
+ "name": "Czech (Czechia)",
+ "locale": "cs-CZ",
+ "voice": "cs-CZ-VlastaNeural",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-cs-cz-vlastaneural-cs-cz.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-cs-cz.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-cs-cz.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-cs-cz.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-cs-cz.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-cs-cz.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-cs-cz.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-cs-cz.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-cs-cz.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-cs-cz.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-cs-cz.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-cs-cz.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-cs-cz.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-cs-cz.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Czech (Czech)",
+ "locale": "cs-CZ",
+ "icon": "cz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-cs-cz.mp3"
+ },
+ {
+ "character": "Elanor A",
+ "name": "Czech-CZ",
+ "voice": "cs-CZ-Wavenet-A",
+ "icon": "cz",
+ "voiceProvider": "google",
+ "locale": "cs-CZ",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-cs-cz-wavenet-a-cs-cz.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Danish",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Jeppe",
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "voice": "da-DK-JeppeNeural",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-da-dk-jeppeneural-da-dk.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-da-dk.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-da-dk.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-da-dk.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-da-dk.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-da-dk.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-da-dk.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-da-dk.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-da-dk.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-da-dk.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-da-dk.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-da-dk.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-da-dk.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-da-dk.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-da-dk.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-da-dk.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-da-dk.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-da-dk.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-da-dk.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-da-dk.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-da-dk.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-da-dk.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-da-dk.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-da-dk.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-da-dk.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-da-dk.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-da-dk.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-da-dk.mp3"
+ },
+ {
+ "character": "Arne C",
+ "name": "Danish-DK",
+ "voice": "da-DK-Wavenet-C",
+ "icon": "dk",
+ "voiceProvider": "google",
+ "locale": "da-DK",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-da-dk-wavenet-c-da-dk.mp3",
+ "approxDurationCoeficient": 21
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Christel",
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "voice": "da-DK-ChristelNeural",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-da-dk-christelneural-da-dk.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-da-dk.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-da-dk.mp3"
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-da-dk.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-da-dk.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-da-dk.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-da-dk.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-da-dk.mp3"
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-da-dk.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-da-dk.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-da-dk.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-da-dk.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-da-dk.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-da-dk.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Danish (Denmark)",
+ "locale": "da-DK",
+ "icon": "dk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-da-dk.mp3"
+ },
+ {
+ "character": "Agnete D",
+ "name": "Danish-DK",
+ "voice": "da-DK-Neural2-D",
+ "icon": "dk",
+ "voiceProvider": "google",
+ "locale": "da-DK",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-da-dk-neural2-d-da-dk.mp3"
+ },
+ {
+ "character": "Alice A",
+ "name": "Danish-DK",
+ "voice": "da-DK-Wavenet-A",
+ "icon": "dk",
+ "voiceProvider": "google",
+ "locale": "da-DK",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-da-dk-wavenet-a-da-dk.mp3",
+ "approxDurationCoeficient": 21
+ },
+ {
+ "character": "Catrine E",
+ "name": "Danish-DK",
+ "voice": "da-DK-Wavenet-E",
+ "icon": "dk",
+ "voiceProvider": "google",
+ "locale": "da-DK",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-da-dk-wavenet-e-da-dk.mp3",
+ "approxDurationCoeficient": 19
+ }
+ ]
+ },
+ {
+ "name": "Dutch",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Maarten",
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "voice": "nl-NL-MaartenNeural",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-nl-nl-maartenneural-nl-nl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-nl-nl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-nl-nl.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-nl-nl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-nl-nl.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-nl-nl.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-nl-nl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-nl-nl.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-nl-nl.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-nl-nl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-nl-nl.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-nl-nl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-nl-nl.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-nl-nl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-nl-nl.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-nl-nl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-nl-nl.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-nl-nl.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-nl-nl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-nl-nl.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-nl-nl.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-nl-nl.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-nl-nl.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-nl-nl.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-nl-nl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-nl-nl.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-nl-nl.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-nl-nl.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Arnaud",
+ "name": "Dutch (Belgium)",
+ "locale": "nl-BE",
+ "voice": "nl-BE-ArnaudNeural",
+ "icon": "be",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-nl-be-arnaudneural-nl-nl.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Oscar B",
+ "name": "Dutch-BE",
+ "voice": "nl-BE-Wavenet-B",
+ "icon": "be",
+ "voiceProvider": "google",
+ "locale": "nl-BE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nl-be-wavenet-b-nl-nl.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Miles B",
+ "name": "Dutch-NL",
+ "voice": "nl-NL-Wavenet-B",
+ "icon": "nl",
+ "voiceProvider": "google",
+ "locale": "nl-NL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nl-nl-wavenet-b-nl-nl.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "James C",
+ "name": "Dutch-NL",
+ "voice": "nl-NL-Wavenet-C",
+ "icon": "nl",
+ "voiceProvider": "google",
+ "locale": "nl-NL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nl-nl-wavenet-c-nl-nl.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Fenna",
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "voice": "nl-NL-FennaNeural",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-nl-nl-fennaneural-nl-nl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-nl-nl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-nl-nl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-nl-nl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-nl-nl.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-nl-nl.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-nl-nl.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-nl-nl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-nl-nl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-nl-nl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-nl-nl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-nl-nl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-nl-nl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-nl-nl.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-nl-nl.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Dena",
+ "name": "Dutch (Belgium)",
+ "locale": "nl-BE",
+ "voice": "nl-BE-DenaNeural",
+ "icon": "be",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-nl-be-denaneural-nl-nl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Colette",
+ "name": "Dutch (Netherlands)",
+ "locale": "nl-NL",
+ "voice": "nl-NL-ColetteNeural",
+ "icon": "nl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-nl-nl-coletteneural-nl-nl.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Elanor A",
+ "name": "Dutch-BE",
+ "voice": "nl-BE-Wavenet-A",
+ "icon": "be",
+ "voiceProvider": "google",
+ "locale": "nl-BE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nl-be-wavenet-a-nl-nl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lucy A",
+ "name": "Dutch-NL",
+ "voice": "nl-NL-Wavenet-A",
+ "icon": "nl",
+ "voiceProvider": "google",
+ "locale": "nl-NL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nl-nl-wavenet-a-nl-nl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Daisy D",
+ "name": "Dutch-NL",
+ "voice": "nl-NL-Wavenet-D",
+ "icon": "nl",
+ "voiceProvider": "google",
+ "locale": "nl-NL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nl-nl-wavenet-d-nl-nl.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Scarlett E",
+ "name": "Dutch-NL",
+ "voice": "nl-NL-Wavenet-E",
+ "icon": "nl",
+ "voiceProvider": "google",
+ "locale": "nl-NL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nl-nl-wavenet-e-nl-nl.mp3",
+ "approxDurationCoeficient": 19
+ }
+ ]
+ },
+ {
+ "name": "Estonian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Kert",
+ "name": "Estonian (Estonia)",
+ "locale": "et-EE",
+ "voice": "et-EE-KertNeural",
+ "icon": "ee",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-et-ee-kertneural-et-ee.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Anu",
+ "name": "Estonian (Estonia)",
+ "locale": "et-EE",
+ "voice": "et-EE-AnuNeural",
+ "icon": "ee",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-et-ee-anuneural-et-ee.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Filipino",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Angelo",
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "voice": "fil-PH-AngeloNeural",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fil-ph-angeloneural-fil-ph.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-fil-ph.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-fil-ph.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-fil-ph.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-fil-ph.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-fil-ph.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-fil-ph.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-fil-ph.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-fil-ph.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-fil-ph.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-fil-ph.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-fil-ph.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-fil-ph.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-fil-ph.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-fil-ph.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-fil-ph.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-fil-ph.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-fil-ph.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-fil-ph.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-fil-ph.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-fil-ph.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-fil-ph.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-fil-ph.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-fil-ph.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-fil-ph.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-fil-ph.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-fil-ph.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-fil-ph.mp3"
+ },
+ {
+ "character": "Oscar D",
+ "name": "Filipino-ph",
+ "voice": "fil-ph-Neural2-D",
+ "icon": "ph",
+ "voiceProvider": "google",
+ "locale": "fil-PH",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fil-ph-neural2-d-fil-ph.mp3"
+ },
+ {
+ "character": "Miles C",
+ "name": "Filipino-PH",
+ "voice": "fil-PH-Wavenet-C",
+ "icon": "ph",
+ "voiceProvider": "google",
+ "locale": "fil-PH",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fil-ph-wavenet-c-fil-ph.mp3",
+ "approxDurationCoeficient": 20
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Blessica",
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "voice": "fil-PH-BlessicaNeural",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fil-ph-blessicaneural-fil-ph.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-fil-ph.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-fil-ph.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-fil-ph.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-fil-ph.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-fil-ph.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-fil-ph.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-fil-ph.mp3"
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-fil-ph.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-fil-ph.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-fil-ph.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-fil-ph.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-fil-ph.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-fil-ph.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Filipino (Philippines)",
+ "locale": "fil-PH",
+ "icon": "ph",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-fil-ph.mp3"
+ },
+ {
+ "character": "Elanor A",
+ "name": "Filipino-ph",
+ "voice": "fil-ph-Neural2-A",
+ "icon": "ph",
+ "voiceProvider": "google",
+ "locale": "fil-PH",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fil-ph-neural2-a-fil-ph.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Lucy B",
+ "name": "Filipino-PH",
+ "voice": "fil-PH-Wavenet-B",
+ "icon": "ph",
+ "voiceProvider": "google",
+ "locale": "fil-PH",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fil-ph-wavenet-b-fil-ph.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ]
+ },
+ {
+ "name": "Finnish",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Harri",
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "voice": "fi-FI-HarriNeural",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fi-fi-harrineural-fi-fi.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-fi-fi.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-fi-fi.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-fi-fi.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-fi-fi.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-fi-fi.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-fi-fi.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-fi-fi.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-fi-fi.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-fi-fi.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-fi-fi.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-fi-fi.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-fi-fi.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-fi-fi.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-fi-fi.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-fi-fi.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-fi-fi.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-fi-fi.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-fi-fi.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-fi-fi.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-fi-fi.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-fi-fi.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-fi-fi.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-fi-fi.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-fi-fi.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-fi-fi.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-fi-fi.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-fi-fi.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Selma",
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "voice": "fi-FI-SelmaNeural",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fi-fi-selmaneural-fi-fi.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-fi-fi.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-fi-fi.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-fi-fi.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-fi-fi.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-fi-fi.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-fi-fi.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-fi-fi.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-fi-fi.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-fi-fi.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-fi-fi.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-fi-fi.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-fi-fi.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-fi-fi.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-fi-fi.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Noora",
+ "name": "Finnish (Finland)",
+ "locale": "fi-FI",
+ "voice": "fi-FI-NooraNeural",
+ "icon": "fi",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fi-fi-nooraneural-fi-fi.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Elanor A",
+ "name": "Finnish-FI",
+ "voice": "fi-FI-Wavenet-A",
+ "icon": "fi",
+ "voiceProvider": "google",
+ "locale": "fi-FI",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fi-fi-wavenet-a-fi-fi.mp3",
+ "approxDurationCoeficient": 20
+ }
+ ]
+ },
+ {
+ "name": "French",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Remy M",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-RemyMultilingualNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-remymultilingualneural-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jerome",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-JeromeNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-jeromeneural-fr-fr.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Henri",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-HenriNeural",
+ "icon": "fr",
+ "styleList": [
+ "cheerful",
+ "sad"
+ ],
+ "stylePreview": {
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-henrineural:cheerful-fr-fr.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-henrineural:sad-fr-fr.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-henrineural-fr-fr.mp3",
+ "approxDurationCoeficient": 21
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-fr-fr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-fr-fr.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-fr-fr.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-fr-fr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-fr-fr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-fr-fr.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-fr-fr.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-fr-fr.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-fr-fr.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-fr-fr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-fr-fr.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-fr-fr.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-fr-fr.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-fr-fr.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-fr-fr.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-fr-fr.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-fr-fr.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Gerard",
+ "name": "French (Belgium)",
+ "locale": "fr-BE",
+ "voice": "fr-BE-GerardNeural",
+ "icon": "be",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-be-gerardneural-fr-fr.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jean",
+ "name": "French (Canada)",
+ "locale": "fr-CA",
+ "voice": "fr-CA-JeanNeural",
+ "icon": "ca",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-ca-jeanneural-fr-fr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Antoine",
+ "name": "French (Canada)",
+ "locale": "fr-CA",
+ "voice": "fr-CA-AntoineNeural",
+ "icon": "ca",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-ca-antoineneural-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Thierry",
+ "name": "French (Canada)",
+ "locale": "fr-CA",
+ "voice": "fr-CA-ThierryNeural",
+ "icon": "ca",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-ca-thierryneural-fr-fr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Fabrice",
+ "name": "French (Switzerland)",
+ "locale": "fr-CH",
+ "voice": "fr-CH-FabriceNeural",
+ "icon": "ch",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-ch-fabriceneural-fr-fr.mp3",
+ "approxDurationCoeficient": 22
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Alain",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-AlainNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-alainneural-fr-fr.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Claude",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-ClaudeNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-claudeneural-fr-fr.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Maurice",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-MauriceNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-mauriceneural-fr-fr.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yves",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-YvesNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-yvesneural-fr-fr.mp3",
+ "approxDurationCoeficient": 21
+ },
+ {
+ "character": "Oscar B",
+ "name": "French-CA",
+ "voice": "fr-CA-Neural2-B",
+ "icon": "ca",
+ "voiceProvider": "google",
+ "locale": "fr-CA",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fr-ca-neural2-b-fr-fr.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Miles D",
+ "name": "French-CA",
+ "voice": "fr-CA-Neural2-D",
+ "icon": "ca",
+ "voiceProvider": "google",
+ "locale": "fr-CA",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fr-ca-neural2-d-fr-fr.mp3"
+ },
+ {
+ "character": "James B",
+ "name": "French-FR",
+ "voice": "fr-FR-Neural2-B",
+ "icon": "fr",
+ "voiceProvider": "google",
+ "locale": "fr-FR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fr-fr-neural2-b-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Emmet D",
+ "name": "French-FR",
+ "voice": "fr-FR-Neural2-D",
+ "icon": "fr",
+ "voiceProvider": "google",
+ "locale": "fr-FR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fr-fr-neural2-d-fr-fr.mp3",
+ "approxDurationCoeficient": 20
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Vivienne M",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-VivienneMultilingualNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-viviennemultilingualneural-fr-fr.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jacqueline",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-JacquelineNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-jacquelineneural-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-fr-fr.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-fr-fr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-fr-fr.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-fr-fr.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-fr-fr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-fr-fr.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Charline",
+ "name": "French (Belgium)",
+ "locale": "fr-BE",
+ "voice": "fr-BE-CharlineNeural",
+ "icon": "be",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-be-charlineneural-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sylvie",
+ "name": "French (Canada)",
+ "locale": "fr-CA",
+ "voice": "fr-CA-SylvieNeural",
+ "icon": "ca",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-ca-sylvieneural-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ariane",
+ "name": "French (Switzerland)",
+ "locale": "fr-CH",
+ "voice": "fr-CH-ArianeNeural",
+ "icon": "ch",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-ch-arianeneural-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Denise",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-DeniseNeural",
+ "icon": "fr",
+ "styleList": [
+ "cheerful",
+ "sad"
+ ],
+ "stylePreview": {
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-deniseneural:cheerful-fr-fr.mp3",
+ "sad": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-deniseneural:sad-fr-fr.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-deniseneural-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Brigitte",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-BrigitteNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-brigitteneural-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Celeste",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-CelesteNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-celesteneural-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Coralie",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-CoralieNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-coralieneural-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Eloise",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-EloiseNeural",
+ "icon": "fr",
+ "tags": [
+ "child"
+ ],
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-eloiseneural-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Josephine",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-JosephineNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-josephineneural-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yvette",
+ "name": "French (France)",
+ "locale": "fr-FR",
+ "voice": "fr-FR-YvetteNeural",
+ "icon": "fr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fr-fr-yvetteneural-fr-fr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Elanor A",
+ "name": "French-CA",
+ "voice": "fr-CA-Neural2-A",
+ "icon": "ca",
+ "voiceProvider": "google",
+ "locale": "fr-CA",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fr-ca-neural2-a-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lucy C",
+ "name": "French-CA",
+ "voice": "fr-CA-Neural2-C",
+ "icon": "ca",
+ "voiceProvider": "google",
+ "locale": "fr-CA",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fr-ca-neural2-c-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Daisy A",
+ "name": "French-FR",
+ "voice": "fr-FR-Neural2-A",
+ "icon": "fr",
+ "voiceProvider": "google",
+ "locale": "fr-FR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fr-fr-neural2-a-fr-fr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Scarlett C",
+ "name": "French-FR",
+ "voice": "fr-FR-Neural2-C",
+ "icon": "fr",
+ "voiceProvider": "google",
+ "locale": "fr-FR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fr-fr-neural2-c-fr-fr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Jane E",
+ "name": "French-FR",
+ "voice": "fr-FR-Neural2-E",
+ "icon": "fr",
+ "voiceProvider": "google",
+ "locale": "fr-FR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-fr-fr-neural2-e-fr-fr.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Galician",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Roi",
+ "name": "Galician",
+ "locale": "gl-ES",
+ "voice": "gl-ES-RoiNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-gl-es-roineural-gl-es.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sabela",
+ "name": "Galician",
+ "locale": "gl-ES",
+ "voice": "gl-ES-SabelaNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-gl-es-sabelaneural-gl-es.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Georgian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Giorgi",
+ "name": "Georgian (Georgia)",
+ "locale": "ka-GE",
+ "voice": "ka-GE-GiorgiNeural",
+ "icon": "ge",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ka-ge-giorgineural-ka-ge.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Eka",
+ "name": "Georgian (Georgia)",
+ "locale": "ka-GE",
+ "voice": "ka-GE-EkaNeural",
+ "icon": "ge",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ka-ge-ekaneural-ka-ge.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "German",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Conrad",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-ConradNeural",
+ "icon": "de",
+ "styleList": [
+ "cheerful"
+ ],
+ "stylePreview": {
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-conradneural:cheerful-de-de.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-conradneural-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Florian M",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-FlorianMultilingualNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-florianmultilingualneural-de-de.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Killian",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-KillianNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-killianneural-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-de-de.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-de-de.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-de-de.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-de-de.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-de-de.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-de-de.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-de-de.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-de-de.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jonas",
+ "name": "German (Austria)",
+ "locale": "de-AT",
+ "voice": "de-AT-JonasNeural",
+ "icon": "at",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-at-jonasneural-de-de.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jan",
+ "name": "German (Switzerland)",
+ "locale": "de-CH",
+ "voice": "de-CH-JanNeural",
+ "icon": "ch",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-ch-janneural-de-de.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Bernd",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-BerndNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-berndneural-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Christoph",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-ChristophNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-christophneural-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Kasper",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-KasperNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-kasperneural-de-de.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Klaus",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-KlausNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-klausneural-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ralf",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-RalfNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-ralfneural-de-de.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Noah B",
+ "name": "German-DE",
+ "voice": "de-DE-Neural2-B",
+ "icon": "de",
+ "voiceProvider": "google",
+ "locale": "de-DE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-de-de-neural2-b-de-de.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Matteo D",
+ "name": "German-DE",
+ "voice": "de-DE-Neural2-D",
+ "icon": "de",
+ "voiceProvider": "google",
+ "locale": "de-DE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-de-de-neural2-d-de-de.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Finn E",
+ "name": "German-DE",
+ "voice": "de-DE-Wavenet-E",
+ "icon": "de",
+ "voiceProvider": "google",
+ "locale": "de-DE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-de-de-wavenet-e-de-de.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Seraphina M",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-SeraphinaMultilingualNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-seraphinamultilingualneural-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Louisa",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-LouisaNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-louisaneural-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elke",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-ElkeNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-elkeneural-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-de-de.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-de-de.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-de-de.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-de-de.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-de-de.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ingrid",
+ "name": "German (Austria)",
+ "locale": "de-AT",
+ "voice": "de-AT-IngridNeural",
+ "icon": "at",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-at-ingridneural-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Leni",
+ "name": "German (Switzerland)",
+ "locale": "de-CH",
+ "voice": "de-CH-LeniNeural",
+ "icon": "ch",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-ch-lenineural-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Katja",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-KatjaNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-katjaneural-de-de.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Amala",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-AmalaNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-amalaneural-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Gisela",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-GiselaNeural",
+ "icon": "de",
+ "tags": [
+ "child"
+ ],
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-giselaneural-de-de.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Klarissa",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-KlarissaNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-klarissaneural-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Maja",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-MajaNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-majaneural-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Tanja",
+ "name": "German (Germany)",
+ "locale": "de-DE",
+ "voice": "de-DE-TanjaNeural",
+ "icon": "de",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-de-de-tanjaneural-de-de.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Emilia A",
+ "name": "German-DE",
+ "voice": "de-DE-Neural2-A",
+ "icon": "de",
+ "voiceProvider": "google",
+ "locale": "de-DE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-de-de-neural2-a-de-de.mp3"
+ },
+ {
+ "character": "Mia C",
+ "name": "German-DE",
+ "voice": "de-DE-Neural2-C",
+ "icon": "de",
+ "voiceProvider": "google",
+ "locale": "de-DE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-de-de-neural2-c-de-de.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Hannah F",
+ "name": "German-DE",
+ "voice": "de-DE-Neural2-F",
+ "icon": "de",
+ "voiceProvider": "google",
+ "locale": "de-DE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-de-de-neural2-f-de-de.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Greek",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Nestoras",
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "voice": "el-GR-NestorasNeural",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-el-gr-nestorasneural-el-gr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-el-gr.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-el-gr.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-el-gr.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-el-gr.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-el-gr.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-el-gr.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-el-gr.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-el-gr.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-el-gr.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-el-gr.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-el-gr.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-el-gr.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-el-gr.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-el-gr.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-el-gr.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-el-gr.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-el-gr.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-el-gr.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-el-gr.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-el-gr.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-el-gr.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-el-gr.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-el-gr.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-el-gr.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-el-gr.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-el-gr.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-el-gr.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Athina",
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "voice": "el-GR-AthinaNeural",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-el-gr-athinaneural-el-gr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-el-gr.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-el-gr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-el-gr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-el-gr.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-el-gr.mp3",
+ "approxDurationCoeficient": 24
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-el-gr.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-el-gr.mp3"
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-el-gr.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-el-gr.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-el-gr.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-el-gr.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-el-gr.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-el-gr.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Greek (Greece)",
+ "locale": "el-GR",
+ "icon": "gr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-el-gr.mp3"
+ },
+ {
+ "character": "Elanor A",
+ "name": "Greek-GR",
+ "voice": "el-GR-Wavenet-A",
+ "icon": "gr",
+ "voiceProvider": "google",
+ "locale": "el-GR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-el-gr-wavenet-a-el-gr.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ]
+ },
+ {
+ "name": "Gujarati",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Niranjan",
+ "name": "Gujarati (India)",
+ "locale": "gu-IN",
+ "voice": "gu-IN-NiranjanNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-gu-in-niranjanneural-gu-in.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Oscar B",
+ "name": "Gujarati-IN",
+ "voice": "gu-IN-Wavenet-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "gu-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-gu-in-wavenet-b-gu-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Miles D",
+ "name": "Gujarati-IN",
+ "voice": "gu-IN-Wavenet-D",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "gu-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-gu-in-wavenet-d-gu-in.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Dhwani",
+ "name": "Gujarati (India)",
+ "locale": "gu-IN",
+ "voice": "gu-IN-DhwaniNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-gu-in-dhwanineural-gu-in.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Elanor A",
+ "name": "Gujarati-IN",
+ "voice": "gu-IN-Wavenet-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "gu-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-gu-in-wavenet-a-gu-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Lucy C",
+ "name": "Gujarati-IN",
+ "voice": "gu-IN-Wavenet-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "gu-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-gu-in-wavenet-c-gu-in.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Hebrew",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Avri",
+ "name": "Hebrew (Israel)",
+ "locale": "he-IL",
+ "voice": "he-IL-AvriNeural",
+ "icon": "il",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-he-il-avrineural-he-il.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Oscar B",
+ "name": "Hebrew-IL",
+ "voice": "he-IL-Wavenet-B",
+ "icon": "il",
+ "voiceProvider": "google",
+ "locale": "he-IL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-he-il-wavenet-b-he-il.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Miles D",
+ "name": "Hebrew-IL",
+ "voice": "he-IL-Wavenet-D",
+ "icon": "il",
+ "voiceProvider": "google",
+ "locale": "he-IL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-he-il-wavenet-d-he-il.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Hila",
+ "name": "Hebrew (Israel)",
+ "locale": "he-IL",
+ "voice": "he-IL-HilaNeural",
+ "icon": "il",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-he-il-hilaneural-he-il.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Elanor A",
+ "name": "Hebrew-IL",
+ "voice": "he-IL-Wavenet-A",
+ "icon": "il",
+ "voiceProvider": "google",
+ "locale": "he-IL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-he-il-wavenet-a-he-il.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Lucy C",
+ "name": "Hebrew-IL",
+ "voice": "he-IL-Wavenet-C",
+ "icon": "il",
+ "voiceProvider": "google",
+ "locale": "he-IL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-he-il-wavenet-c-he-il.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Hindi",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Madhur",
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "voice": "hi-IN-MadhurNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-hi-in-madhurneural-hi-in.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-hi-in.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-hi-in.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-hi-in.mp3",
+ "approxDurationCoeficient": 33
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-hi-in.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-hi-in.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-hi-in.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-hi-in.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-hi-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-hi-in.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-hi-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-hi-in.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-hi-in.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-hi-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-hi-in.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-hi-in.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-hi-in.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-hi-in.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-hi-in.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-hi-in.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-hi-in.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-hi-in.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-hi-in.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-hi-in.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-hi-in.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-hi-in.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-hi-in.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-hi-in.mp3"
+ },
+ {
+ "character": "Oscar B",
+ "name": "Hindi-IN",
+ "voice": "hi-IN-Neural2-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "hi-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-hi-in-neural2-b-hi-in.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Miles C",
+ "name": "Hindi-IN",
+ "voice": "hi-IN-Neural2-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "hi-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-hi-in-neural2-c-hi-in.mp3",
+ "approxDurationCoeficient": 20
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Swara",
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "voice": "hi-IN-SwaraNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-hi-in-swaraneural-hi-in.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-hi-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-hi-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-hi-in.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-hi-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-hi-in.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-hi-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-hi-in.mp3"
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-hi-in.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-hi-in.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-hi-in.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-hi-in.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-hi-in.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-hi-in.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Hindi (India)",
+ "locale": "hi-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-hi-in.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "character": "Elanor A",
+ "name": "Hindi-IN",
+ "voice": "hi-IN-Neural2-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "hi-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-hi-in-neural2-a-hi-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Lucy D",
+ "name": "Hindi-IN",
+ "voice": "hi-IN-Neural2-D",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "hi-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-hi-in-neural2-d-hi-in.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Hungarian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Tamas",
+ "name": "Hungarian (Hungary)",
+ "locale": "hu-HU",
+ "voice": "hu-HU-TamasNeural",
+ "icon": "hu",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-hu-hu-tamasneural-hu-hu.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Noemi",
+ "name": "Hungarian (Hungary)",
+ "locale": "hu-HU",
+ "voice": "hu-HU-NoemiNeural",
+ "icon": "hu",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-hu-hu-noemineural-hu-hu.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Elanor A",
+ "name": "Hungarian-HU",
+ "voice": "hu-HU-Wavenet-A",
+ "icon": "hu",
+ "voiceProvider": "google",
+ "locale": "hu-HU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-hu-hu-wavenet-a-hu-hu.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Icelandic",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Gunnar",
+ "name": "Icelandic (Iceland)",
+ "locale": "is-IS",
+ "voice": "is-IS-GunnarNeural",
+ "icon": "is",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-is-is-gunnarneural-is-is.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Gudrun",
+ "name": "Icelandic (Iceland)",
+ "locale": "is-IS",
+ "voice": "is-IS-GudrunNeural",
+ "icon": "is",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-is-is-gudrunneural-is-is.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Indonesian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Ardi",
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "voice": "id-ID-ArdiNeural",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-id-id-ardineural-id-id.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-id-id.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-id-id.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-id-id.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-id-id.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-id-id.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-id-id.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-id-id.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-id-id.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-id-id.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-id-id.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-id-id.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-id-id.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-id-id.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-id-id.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-id-id.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-id-id.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-id-id.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-id-id.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-id-id.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-id-id.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-id-id.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-id-id.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-id-id.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-id-id.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-id-id.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-id-id.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-id-id.mp3"
+ },
+ {
+ "character": "Oscar B",
+ "name": "Indonesian-ID",
+ "voice": "id-ID-Wavenet-B",
+ "icon": "id",
+ "voiceProvider": "google",
+ "locale": "id-ID",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-id-id-wavenet-b-id-id.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Miles C",
+ "name": "Indonesian-ID",
+ "voice": "id-ID-Wavenet-C",
+ "icon": "id",
+ "voiceProvider": "google",
+ "locale": "id-ID",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-id-id-wavenet-c-id-id.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Gadis",
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "voice": "id-ID-GadisNeural",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-id-id-gadisneural-id-id.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-id-id.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-id-id.mp3"
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-id-id.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-id-id.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-id-id.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-id-id.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-id-id.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-id-id.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-id-id.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-id-id.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-id-id.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-id-id.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-id-id.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Indonesian (Indonesia)",
+ "locale": "id-ID",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-id-id.mp3"
+ },
+ {
+ "character": "Elanor A",
+ "name": "Indonesian-ID",
+ "voice": "id-ID-Wavenet-A",
+ "icon": "id",
+ "voiceProvider": "google",
+ "locale": "id-ID",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-id-id-wavenet-a-id-id.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Lucy D",
+ "name": "Indonesian-ID",
+ "voice": "id-ID-Wavenet-D",
+ "icon": "id",
+ "voiceProvider": "google",
+ "locale": "id-ID",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-id-id-wavenet-d-id-id.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Irish",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Colm",
+ "name": "Irish (Ireland)",
+ "locale": "ga-IE",
+ "voice": "ga-IE-ColmNeural",
+ "icon": "ie",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ga-ie-colmneural-ga-ie.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Orla",
+ "name": "Irish (Ireland)",
+ "locale": "ga-IE",
+ "voice": "ga-IE-OrlaNeural",
+ "icon": "ie",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ga-ie-orlaneural-ga-ie.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Italian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Diego",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-DiegoNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-diegoneural-it-it.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-it-it.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-it-it.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-it-it.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-it-it.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-it-it.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-it-it.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-it-it.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-it-it.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-it-it.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-it-it.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-it-it.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-it-it.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-it-it.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-it-it.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-it-it.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-it-it.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-it-it.mp3",
+ "approxDurationCoeficient": 22
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-it-it.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-it-it.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-it-it.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-it-it.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-it-it.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Benigno",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-BenignoNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-benignoneural-it-it.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Calimero",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-CalimeroNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-calimeroneural-it-it.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Cataldo",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-CataldoNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-cataldoneural-it-it.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Gianni",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-GianniNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-giannineural-it-it.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Giuseppe",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-GiuseppeNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-giuseppeneural-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Lisandro",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-LisandroNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-lisandroneural-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Rinaldo",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-RinaldoNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-rinaldoneural-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Oscar C",
+ "name": "Italian-IT",
+ "voice": "it-IT-Neural2-C",
+ "icon": "it",
+ "voiceProvider": "google",
+ "locale": "it-IT",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-it-it-neural2-c-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Miles D",
+ "name": "Italian-IT",
+ "voice": "it-IT-Wavenet-D",
+ "icon": "it",
+ "voiceProvider": "google",
+ "locale": "it-IT",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-it-it-wavenet-d-it-it.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Elsa",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-ElsaNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-elsaneural-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-it-it.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-it-it.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-it-it.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-it-it.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-it-it.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-it-it.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-it-it.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-it-it.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-it-it.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Isabella",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-IsabellaNeural",
+ "icon": "it",
+ "styleList": [
+ "cheerful",
+ "chat"
+ ],
+ "stylePreview": {
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-isabellaneural:cheerful-it-it.mp3",
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-isabellaneural:chat-it-it.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-isabellaneural-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Fabiola",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-FabiolaNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-fabiolaneural-it-it.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Fiamma",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-FiammaNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-fiammaneural-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Imelda",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-ImeldaNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-imeldaneural-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Irma",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-IrmaNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-irmaneural-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Palmira",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-PalmiraNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-palmiraneural-it-it.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Pierina",
+ "name": "Italian (Italy)",
+ "locale": "it-IT",
+ "voice": "it-IT-PierinaNeural",
+ "icon": "it",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-it-it-pierinaneural-it-it.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Elanor A",
+ "name": "Italian-IT",
+ "voice": "it-IT-Neural2-A",
+ "icon": "it",
+ "voiceProvider": "google",
+ "locale": "it-IT",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-it-it-neural2-a-it-it.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Lucy B",
+ "name": "Italian-IT",
+ "voice": "it-IT-Wavenet-B",
+ "icon": "it",
+ "voiceProvider": "google",
+ "locale": "it-IT",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-it-it-wavenet-b-it-it.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Japanese",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Keita",
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "voice": "ja-JP-KeitaNeural",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-keitaneural-ja-jp.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-ja-jp.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-ja-jp.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-ja-jp.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-ja-jp.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-ja-jp.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-ja-jp.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-ja-jp.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-ja-jp.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-ja-jp.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-ja-jp.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-ja-jp.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-ja-jp.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-ja-jp.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-ja-jp.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-ja-jp.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-ja-jp.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-ja-jp.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-ja-jp.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-ja-jp.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-ja-jp.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-ja-jp.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-ja-jp.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-ja-jp.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-ja-jp.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-ja-jp.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-ja-jp.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-ja-jp.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Daichi",
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "voice": "ja-JP-DaichiNeural",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-daichineural-ja-jp.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Naoki",
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "voice": "ja-JP-NaokiNeural",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-naokineural-ja-jp.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "character": "Oscar C",
+ "name": "Japanese-JP",
+ "voice": "ja-JP-Neural2-C",
+ "icon": "jp",
+ "voiceProvider": "google",
+ "locale": "ja-JP",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ja-jp-neural2-c-ja-jp.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "character": "Miles D",
+ "name": "Japanese-JP",
+ "voice": "ja-JP-Neural2-D",
+ "icon": "jp",
+ "voiceProvider": "google",
+ "locale": "ja-JP",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ja-jp-neural2-d-ja-jp.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Nanami",
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "voice": "ja-JP-NanamiNeural",
+ "icon": "jp",
+ "styleList": [
+ "chat",
+ "customerservice",
+ "cheerful"
+ ],
+ "stylePreview": {
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-nanamineural:chat-ja-jp.mp3",
+ "customerservice": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-nanamineural:customerservice-ja-jp.mp3",
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-nanamineural:cheerful-ja-jp.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-nanamineural-ja-jp.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-ja-jp.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-ja-jp.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-ja-jp.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-ja-jp.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-ja-jp.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-ja-jp.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-ja-jp.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-ja-jp.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-ja-jp.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-ja-jp.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-ja-jp.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-ja-jp.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-ja-jp.mp3",
+ "approxDurationCoeficient": 5
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-ja-jp.mp3",
+ "approxDurationCoeficient": 5
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Aoi",
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "voice": "ja-JP-AoiNeural",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-aoineural-ja-jp.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Mayu",
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "voice": "ja-JP-MayuNeural",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-mayuneural-ja-jp.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Shiori",
+ "name": "Japanese (Japan)",
+ "locale": "ja-JP",
+ "voice": "ja-JP-ShioriNeural",
+ "icon": "jp",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ja-jp-shiorineural-ja-jp.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Elanor B",
+ "name": "Japanese-JP",
+ "voice": "ja-JP-Neural2-B",
+ "icon": "jp",
+ "voiceProvider": "google",
+ "locale": "ja-JP",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ja-jp-neural2-b-ja-jp.mp3",
+ "approxDurationCoeficient": 5
+ },
+ {
+ "character": "Lucy A",
+ "name": "Japanese-JP",
+ "voice": "ja-JP-Wavenet-A",
+ "icon": "jp",
+ "voiceProvider": "google",
+ "locale": "ja-JP",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ja-jp-wavenet-a-ja-jp.mp3",
+ "approxDurationCoeficient": 8
+ }
+ ]
+ },
+ {
+ "name": "Javanese",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Dimas",
+ "name": "Javanese (Latin, Indonesia)",
+ "locale": "jv-ID",
+ "voice": "jv-ID-DimasNeural",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-jv-id-dimasneural-jv-id.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Siti",
+ "name": "Javanese (Latin, Indonesia)",
+ "locale": "jv-ID",
+ "voice": "jv-ID-SitiNeural",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-jv-id-sitineural-jv-id.mp3",
+ "approxDurationCoeficient": 13
+ }
+ ]
+ },
+ {
+ "name": "Kannada",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Gagan",
+ "name": "Kannada (India)",
+ "locale": "kn-IN",
+ "voice": "kn-IN-GaganNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-kn-in-gaganneural-kn-in.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Oscar B",
+ "name": "Kannada-IN",
+ "voice": "kn-IN-Wavenet-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "kn-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-kn-in-wavenet-b-kn-in.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Miles D",
+ "name": "Kannada-IN",
+ "voice": "kn-IN-Wavenet-D",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "kn-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-kn-in-wavenet-d-kn-in.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sapna",
+ "name": "Kannada (India)",
+ "locale": "kn-IN",
+ "voice": "kn-IN-SapnaNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-kn-in-sapnaneural-kn-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Elanor A",
+ "name": "Kannada-IN",
+ "voice": "kn-IN-Wavenet-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "kn-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-kn-in-wavenet-a-kn-in.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Lucy C",
+ "name": "Kannada-IN",
+ "voice": "kn-IN-Wavenet-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "kn-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-kn-in-wavenet-c-kn-in.mp3"
+ }
+ ]
+ },
+ {
+ "name": "Kazakh",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Daulet",
+ "name": "Kazakh (Kazakhstan)",
+ "locale": "kk-KZ",
+ "voice": "kk-KZ-DauletNeural",
+ "icon": "kz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-kk-kz-dauletneural-kk-kz.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Aigul",
+ "name": "Kazakh (Kazakhstan)",
+ "locale": "kk-KZ",
+ "voice": "kk-KZ-AigulNeural",
+ "icon": "kz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-kk-kz-aigulneural-kk-kz.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Khmer",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Piseth",
+ "name": "Khmer (Cambodia)",
+ "locale": "km-KH",
+ "voice": "km-KH-PisethNeural",
+ "icon": "kh",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-km-kh-pisethneural-km-kh.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sreymom",
+ "name": "Khmer (Cambodia)",
+ "locale": "km-KH",
+ "voice": "km-KH-SreymomNeural",
+ "icon": "kh",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-km-kh-sreymomneural-km-kh.mp3",
+ "approxDurationCoeficient": 19
+ }
+ ]
+ },
+ {
+ "name": "Korean",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "InJoon",
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "voice": "ko-KR-InJoonNeural",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ko-kr-injoonneural-ko-kr.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-ko-kr.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-ko-kr.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-ko-kr.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-ko-kr.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-ko-kr.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-ko-kr.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-ko-kr.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-ko-kr.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-ko-kr.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-ko-kr.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-ko-kr.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-ko-kr.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-ko-kr.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-ko-kr.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-ko-kr.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-ko-kr.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-ko-kr.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-ko-kr.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-ko-kr.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-ko-kr.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-ko-kr.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-ko-kr.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-ko-kr.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-ko-kr.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-ko-kr.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-ko-kr.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-ko-kr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "BongJin",
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "voice": "ko-KR-BongJinNeural",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ko-kr-bongjinneural-ko-kr.mp3",
+ "approxDurationCoeficient": 7
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "GookMin",
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "voice": "ko-KR-GookMinNeural",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ko-kr-gookminneural-ko-kr.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Hyunsu",
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "voice": "ko-KR-HyunsuNeural",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ko-kr-hyunsuneural-ko-kr.mp3"
+ },
+ {
+ "character": "Oscar C",
+ "name": "Korean-KR",
+ "voice": "ko-KR-Neural2-C",
+ "icon": "kr",
+ "voiceProvider": "google",
+ "locale": "ko-KR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ko-kr-neural2-c-ko-kr.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "character": "Miles D",
+ "name": "Korean-KR",
+ "voice": "ko-KR-Wavenet-D",
+ "icon": "kr",
+ "voiceProvider": "google",
+ "locale": "ko-KR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ko-kr-wavenet-d-ko-kr.mp3",
+ "approxDurationCoeficient": 9
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sun-Hi",
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "voice": "ko-KR-SunHiNeural",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ko-kr-sunhineural-ko-kr.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-ko-kr.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-ko-kr.mp3"
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-ko-kr.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-ko-kr.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-ko-kr.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-ko-kr.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-ko-kr.mp3",
+ "approxDurationCoeficient": 9
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-ko-kr.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-ko-kr.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-ko-kr.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-ko-kr.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-ko-kr.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-ko-kr.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-ko-kr.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "JiMin",
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "voice": "ko-KR-JiMinNeural",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ko-kr-jiminneural-ko-kr.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "SeoHyeon",
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "voice": "ko-KR-SeoHyeonNeural",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ko-kr-seohyeonneural-ko-kr.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "SoonBok",
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "voice": "ko-KR-SoonBokNeural",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ko-kr-soonbokneural-ko-kr.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "YuJin",
+ "name": "Korean (Korea)",
+ "locale": "ko-KR",
+ "voice": "ko-KR-YuJinNeural",
+ "icon": "kr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ko-kr-yujinneural-ko-kr.mp3"
+ },
+ {
+ "character": "Elanor A",
+ "name": "Korean-KR",
+ "voice": "ko-KR-Neural2-A",
+ "icon": "kr",
+ "voiceProvider": "google",
+ "locale": "ko-KR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ko-kr-neural2-a-ko-kr.mp3"
+ },
+ {
+ "character": "Lucy B",
+ "name": "Korean-KR",
+ "voice": "ko-KR-Neural2-B",
+ "icon": "kr",
+ "voiceProvider": "google",
+ "locale": "ko-KR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ko-kr-neural2-b-ko-kr.mp3",
+ "approxDurationCoeficient": 11
+ }
+ ]
+ },
+ {
+ "name": "Lao",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Chanthavong",
+ "name": "Lao (Laos)",
+ "locale": "lo-LA",
+ "voice": "lo-LA-ChanthavongNeural",
+ "icon": "la",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-lo-la-chanthavongneural-lo-la.mp3",
+ "approxDurationCoeficient": 13
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Keomany",
+ "name": "Lao (Laos)",
+ "locale": "lo-LA",
+ "voice": "lo-LA-KeomanyNeural",
+ "icon": "la",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-lo-la-keomanyneural-lo-la.mp3",
+ "approxDurationCoeficient": 11
+ }
+ ]
+ },
+ {
+ "name": "Latvian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Nils",
+ "name": "Latvian (Latvia)",
+ "locale": "lv-LV",
+ "voice": "lv-LV-NilsNeural",
+ "icon": "lv",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-lv-lv-nilsneural-lv-lv.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Everita",
+ "name": "Latvian (Latvia)",
+ "locale": "lv-LV",
+ "voice": "lv-LV-EveritaNeural",
+ "icon": "lv",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-lv-lv-everitaneural-lv-lv.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Lithuanian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Leonas",
+ "name": "Lithuanian (Lithuania)",
+ "locale": "lt-LT",
+ "voice": "lt-LT-LeonasNeural",
+ "icon": "lt",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-lt-lt-leonasneural-lt-lt.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Ona",
+ "name": "Lithuanian (Lithuania)",
+ "locale": "lt-LT",
+ "voice": "lt-LT-OnaNeural",
+ "icon": "lt",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-lt-lt-onaneural-lt-lt.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Macedonian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Aleksandar",
+ "name": "Macedonian (North Macedonia)",
+ "locale": "mk-MK",
+ "voice": "mk-MK-AleksandarNeural",
+ "icon": "mk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-mk-mk-aleksandarneural-mk-mk.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Marija",
+ "name": "Macedonian (North Macedonia)",
+ "locale": "mk-MK",
+ "voice": "mk-MK-MarijaNeural",
+ "icon": "mk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-mk-mk-marijaneural-mk-mk.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Malay",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Osman",
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "voice": "ms-MY-OsmanNeural",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ms-my-osmanneural-ms-my.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-ms-my.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-ms-my.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-ms-my.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-ms-my.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-ms-my.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-ms-my.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-ms-my.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-ms-my.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-ms-my.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-ms-my.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-ms-my.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-ms-my.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-ms-my.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-ms-my.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-ms-my.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-ms-my.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-ms-my.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-ms-my.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-ms-my.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-ms-my.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-ms-my.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-ms-my.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-ms-my.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-ms-my.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-ms-my.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-ms-my.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-ms-my.mp3"
+ },
+ {
+ "character": "Oscar B",
+ "name": "Malay-MY",
+ "voice": "ms-MY-Wavenet-B",
+ "icon": "my",
+ "voiceProvider": "google",
+ "locale": "ms-MY",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ms-my-wavenet-b-ms-my.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Miles D",
+ "name": "Malay-MY",
+ "voice": "ms-MY-Wavenet-D",
+ "icon": "my",
+ "voiceProvider": "google",
+ "locale": "ms-MY",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ms-my-wavenet-d-ms-my.mp3",
+ "approxDurationCoeficient": 21
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Yasmin",
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "voice": "ms-MY-YasminNeural",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ms-my-yasminneural-ms-my.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-ms-my.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-ms-my.mp3"
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-ms-my.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-ms-my.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-ms-my.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-ms-my.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-ms-my.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-ms-my.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-ms-my.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-ms-my.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-ms-my.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-ms-my.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-ms-my.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Malay (Malaysia)",
+ "locale": "ms-MY",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-ms-my.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Elanor A",
+ "name": "Malay-MY",
+ "voice": "ms-MY-Wavenet-A",
+ "icon": "my",
+ "voiceProvider": "google",
+ "locale": "ms-MY",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ms-my-wavenet-a-ms-my.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lucy C",
+ "name": "Malay-MY",
+ "voice": "ms-MY-Wavenet-C",
+ "icon": "my",
+ "voiceProvider": "google",
+ "locale": "ms-MY",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ms-my-wavenet-c-ms-my.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Malayalam",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Midhun",
+ "name": "Malayalam (India)",
+ "locale": "ml-IN",
+ "voice": "ml-IN-MidhunNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ml-in-midhunneural-ml-in.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Oscar B",
+ "name": "Malayalam-IN",
+ "voice": "ml-IN-Wavenet-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ml-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ml-in-wavenet-b-ml-in.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Miles D",
+ "name": "Malayalam-IN",
+ "voice": "ml-IN-Wavenet-D",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ml-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ml-in-wavenet-d-ml-in.mp3",
+ "approxDurationCoeficient": 19
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sobhana",
+ "name": "Malayalam (India)",
+ "locale": "ml-IN",
+ "voice": "ml-IN-SobhanaNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ml-in-sobhananeural-ml-in.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Elanor A",
+ "name": "Malayalam-IN",
+ "voice": "ml-IN-Wavenet-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ml-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ml-in-wavenet-a-ml-in.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Lucy C",
+ "name": "Malayalam-IN",
+ "voice": "ml-IN-Wavenet-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ml-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ml-in-wavenet-c-ml-in.mp3",
+ "approxDurationCoeficient": 19
+ }
+ ]
+ },
+ {
+ "name": "Maltese",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Joseph",
+ "name": "Maltese (Malta)",
+ "locale": "mt-MT",
+ "voice": "mt-MT-JosephNeural",
+ "icon": "mt",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-mt-mt-josephneural-mt-mt.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Grace",
+ "name": "Maltese (Malta)",
+ "locale": "mt-MT",
+ "voice": "mt-MT-GraceNeural",
+ "icon": "mt",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-mt-mt-graceneural-mt-mt.mp3",
+ "approxDurationCoeficient": 13
+ }
+ ]
+ },
+ {
+ "name": "Marathi",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Manohar",
+ "name": "Marathi (India)",
+ "locale": "mr-IN",
+ "voice": "mr-IN-ManoharNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-mr-in-manoharneural-mr-in.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Oscar B",
+ "name": "Marathi-IN",
+ "voice": "mr-IN-Wavenet-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "mr-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-mr-in-wavenet-b-mr-in.mp3",
+ "approxDurationCoeficient": 21
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Aarohi",
+ "name": "Marathi (India)",
+ "locale": "mr-IN",
+ "voice": "mr-IN-AarohiNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-mr-in-aarohineural-mr-in.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Elanor A",
+ "name": "Marathi-IN",
+ "voice": "mr-IN-Wavenet-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "mr-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-mr-in-wavenet-a-mr-in.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Lucy C",
+ "name": "Marathi-IN",
+ "voice": "mr-IN-Wavenet-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "mr-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-mr-in-wavenet-c-mr-in.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Mongolian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Bataa",
+ "name": "Mongolian (Mongolia)",
+ "locale": "mn-MN",
+ "voice": "mn-MN-BataaNeural",
+ "icon": "mn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-mn-mn-bataaneural-mn-mn.mp3",
+ "approxDurationCoeficient": 19
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Yesui",
+ "name": "Mongolian (Mongolia)",
+ "locale": "mn-MN",
+ "voice": "mn-MN-YesuiNeural",
+ "icon": "mn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-mn-mn-yesuineural-mn-mn.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ]
+ },
+ {
+ "name": "Nepali",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sagar",
+ "name": "Nepali (Nepal)",
+ "locale": "ne-NP",
+ "voice": "ne-NP-SagarNeural",
+ "icon": "np",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ne-np-sagarneural-ne-np.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Hemkala",
+ "name": "Nepali (Nepal)",
+ "locale": "ne-NP",
+ "voice": "ne-NP-HemkalaNeural",
+ "icon": "np",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ne-np-hemkalaneural-ne-np.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Norwegian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Finn",
+ "name": "Norwegian Bokmål (Norway)",
+ "locale": "nb-NO",
+ "voice": "nb-NO-FinnNeural",
+ "icon": "no",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-nb-no-finnneural-nb-no.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Oscar B",
+ "name": "Norwegian-NO",
+ "voice": "nb-NO-Wavenet-B",
+ "icon": "no",
+ "voiceProvider": "google",
+ "locale": "nb-NO",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nb-no-wavenet-b-nb-no.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "character": "Miles D",
+ "name": "Norwegian-NO",
+ "voice": "nb-NO-Wavenet-D",
+ "icon": "no",
+ "voiceProvider": "google",
+ "locale": "nb-NO",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nb-no-wavenet-d-nb-no.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Pernille",
+ "name": "Norwegian Bokmål (Norway)",
+ "locale": "nb-NO",
+ "voice": "nb-NO-PernilleNeural",
+ "icon": "no",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-nb-no-pernilleneural-nb-no.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Iselin",
+ "name": "Norwegian Bokmål (Norway)",
+ "locale": "nb-NO",
+ "voice": "nb-NO-IselinNeural",
+ "icon": "no",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-nb-no-iselinneural-nb-no.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Elanor A",
+ "name": "Norwegian-NO",
+ "voice": "nb-NO-Wavenet-A",
+ "icon": "no",
+ "voiceProvider": "google",
+ "locale": "nb-NO",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nb-no-wavenet-a-nb-no.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Lucy C",
+ "name": "Norwegian-NO",
+ "voice": "nb-NO-Wavenet-C",
+ "icon": "no",
+ "voiceProvider": "google",
+ "locale": "nb-NO",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nb-no-wavenet-c-nb-no.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Daisy E",
+ "name": "Norwegian-NO",
+ "voice": "nb-NO-Wavenet-E",
+ "icon": "no",
+ "voiceProvider": "google",
+ "locale": "nb-NO",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-nb-no-wavenet-e-nb-no.mp3",
+ "approxDurationCoeficient": 19
+ }
+ ]
+ },
+ {
+ "name": "Pashto",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Gul Nawaz",
+ "name": "Pashto (Afghanistan)",
+ "locale": "ps-AF",
+ "voice": "ps-AF-GulNawazNeural",
+ "icon": "af",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ps-af-gulnawazneural-ps-af.mp3",
+ "approxDurationCoeficient": 19
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Latifa",
+ "name": "Pashto (Afghanistan)",
+ "locale": "ps-AF",
+ "voice": "ps-AF-LatifaNeural",
+ "icon": "af",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ps-af-latifaneural-ps-af.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Persian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Farid",
+ "name": "Persian (Iran)",
+ "locale": "fa-IR",
+ "voice": "fa-IR-FaridNeural",
+ "icon": "ir",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fa-ir-faridneural-fa-ir.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Dilara",
+ "name": "Persian (Iran)",
+ "locale": "fa-IR",
+ "voice": "fa-IR-DilaraNeural",
+ "icon": "ir",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-fa-ir-dilaraneural-fa-ir.mp3",
+ "approxDurationCoeficient": 13
+ }
+ ]
+ },
+ {
+ "name": "Polish",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Marek",
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "voice": "pl-PL-MarekNeural",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pl-pl-marekneural-pl-pl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-pl-pl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-pl-pl.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-pl-pl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-pl-pl.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-pl-pl.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-pl-pl.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-pl-pl.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-pl-pl.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-pl-pl.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-pl-pl.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-pl-pl.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-pl-pl.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-pl-pl.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-pl-pl.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-pl-pl.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-pl-pl.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-pl-pl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-pl-pl.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-pl-pl.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-pl-pl.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-pl-pl.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-pl-pl.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-pl-pl.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-pl-pl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-pl-pl.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-pl-pl.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-pl-pl.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Oscar B",
+ "name": "Polish-PL",
+ "voice": "pl-PL-Wavenet-B",
+ "icon": "pl",
+ "voiceProvider": "google",
+ "locale": "pl-PL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pl-pl-wavenet-b-pl-pl.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Miles C",
+ "name": "Polish-PL",
+ "voice": "pl-PL-Wavenet-C",
+ "icon": "pl",
+ "voiceProvider": "google",
+ "locale": "pl-PL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pl-pl-wavenet-c-pl-pl.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Agnieszka",
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "voice": "pl-PL-AgnieszkaNeural",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pl-pl-agnieszkaneural-pl-pl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-pl-pl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-pl-pl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-pl-pl.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-pl-pl.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-pl-pl.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-pl-pl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-pl-pl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-pl-pl.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-pl-pl.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-pl-pl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-pl-pl.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-pl-pl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-pl-pl.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-pl-pl.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Zofia",
+ "name": "Polish (Poland)",
+ "locale": "pl-PL",
+ "voice": "pl-PL-ZofiaNeural",
+ "icon": "pl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pl-pl-zofianeural-pl-pl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Elanor A",
+ "name": "Polish-PL",
+ "voice": "pl-PL-Wavenet-A",
+ "icon": "pl",
+ "voiceProvider": "google",
+ "locale": "pl-PL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pl-pl-wavenet-a-pl-pl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Lucy D",
+ "name": "Polish-PL",
+ "voice": "pl-PL-Wavenet-D",
+ "icon": "pl",
+ "voiceProvider": "google",
+ "locale": "pl-PL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pl-pl-wavenet-d-pl-pl.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Daisy E",
+ "name": "Polish-PL",
+ "voice": "pl-PL-Wavenet-E",
+ "icon": "pl",
+ "voiceProvider": "google",
+ "locale": "pl-PL",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pl-pl-wavenet-e-pl-pl.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ]
+ },
+ {
+ "name": "Portuguese",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Duarte",
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "voice": "pt-PT-DuarteNeural",
+ "icon": "pt",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-pt-duarteneural-pt-pt.mp3",
+ "approxDurationCoeficient": 21
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Valerio",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-ValerioNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-valerioneural-pt-pt.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Nicolau",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-NicolauNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-nicolauneural-pt-pt.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Julio",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-JulioNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-julioneural-pt-pt.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Antonio",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-AntonioNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-antonioneural-pt-pt.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Donato",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-DonatoNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-donatoneural-pt-pt.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Fabio",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-FabioNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-fabioneural-pt-pt.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Humberto",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-HumbertoNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-humbertoneural-pt-pt.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Oscar B",
+ "name": "Portuguese-BR",
+ "voice": "pt-BR-Neural2-B",
+ "icon": "br",
+ "voiceProvider": "google",
+ "locale": "pt-BR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pt-br-neural2-b-pt-pt.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Miles B",
+ "name": "Portuguese-PT",
+ "voice": "pt-PT-Wavenet-B",
+ "icon": "pt",
+ "voiceProvider": "google",
+ "locale": "pt-PT",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pt-pt-wavenet-b-pt-pt.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "James C",
+ "name": "Portuguese-PT",
+ "voice": "pt-PT-Wavenet-C",
+ "icon": "pt",
+ "voiceProvider": "google",
+ "locale": "pt-PT",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pt-pt-wavenet-c-pt-pt.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Fernanda",
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "voice": "pt-PT-FernandaNeural",
+ "icon": "pt",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-pt-fernandaneural-pt-pt.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Raquel",
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "voice": "pt-PT-RaquelNeural",
+ "icon": "pt",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-pt-raquelneural-pt-pt.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Francisca",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-FranciscaNeural",
+ "icon": "br",
+ "styleList": [
+ "calm"
+ ],
+ "stylePreview": {
+ "calm": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-franciscaneural:calm-pt-pt.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-franciscaneural-pt-pt.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yara",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-YaraNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-yaraneural-pt-pt.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld:eleven_multilingual_v2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld:eleven_multilingual_v2-pt-pt.mp3"
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2:eleven_multilingual_v1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Portuguese (Portugal)",
+ "locale": "pt-PT",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2:eleven_multilingual_v1-pt-pt.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Brenda",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-BrendaNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-brendaneural-pt-pt.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elza",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-ElzaNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-elzaneural-pt-pt.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Giovanna",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-GiovannaNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-giovannaneural-pt-pt.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Leila",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-LeilaNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-leilaneural-pt-pt.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Leticia",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-LeticiaNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-leticianeural-pt-pt.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Manuela",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-ManuelaNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-manuelaneural-pt-pt.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Thalita",
+ "name": "Portuguese (Brazil)",
+ "locale": "pt-BR",
+ "voice": "pt-BR-ThalitaNeural",
+ "icon": "br",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-pt-br-thalitaneural-pt-pt.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Elanor A",
+ "name": "Portuguese-BR",
+ "voice": "pt-BR-Neural2-A",
+ "icon": "br",
+ "voiceProvider": "google",
+ "locale": "pt-BR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pt-br-neural2-a-pt-pt.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Lucy C",
+ "name": "Portuguese-BR",
+ "voice": "pt-BR-Neural2-C",
+ "icon": "br",
+ "voiceProvider": "google",
+ "locale": "pt-BR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pt-br-neural2-c-pt-pt.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Daisy A",
+ "name": "Portuguese-PT",
+ "voice": "pt-PT-Wavenet-A",
+ "icon": "pt",
+ "voiceProvider": "google",
+ "locale": "pt-PT",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pt-pt-wavenet-a-pt-pt.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Scarlett D",
+ "name": "Portuguese-PT",
+ "voice": "pt-PT-Wavenet-D",
+ "icon": "pt",
+ "voiceProvider": "google",
+ "locale": "pt-PT",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pt-pt-wavenet-d-pt-pt.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ]
+ },
+ {
+ "name": "Punjabi",
+ "male": [
+ {
+ "character": "Oscar B",
+ "name": "Punjabi-IN",
+ "voice": "pa-IN-Wavenet-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "pa-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pa-in-wavenet-b-pa-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Miles D",
+ "name": "Punjabi-IN",
+ "voice": "pa-IN-Wavenet-D",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "pa-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pa-in-wavenet-d-pa-in.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ],
+ "female": [
+ {
+ "character": "Elanor A",
+ "name": "Punjabi-IN",
+ "voice": "pa-IN-Wavenet-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "pa-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pa-in-wavenet-a-pa-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Lucy C",
+ "name": "Punjabi-IN",
+ "voice": "pa-IN-Wavenet-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "pa-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-pa-in-wavenet-c-pa-in.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Romanian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Emil",
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "voice": "ro-RO-EmilNeural",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ro-ro-emilneural-ro-ro.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-ro-ro.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-ro-ro.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-ro-ro.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-ro-ro.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-ro-ro.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-ro-ro.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-ro-ro.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-ro-ro.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-ro-ro.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-ro-ro.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-ro-ro.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-ro-ro.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-ro-ro.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-ro-ro.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-ro-ro.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-ro-ro.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-ro-ro.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-ro-ro.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-ro-ro.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-ro-ro.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-ro-ro.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-ro-ro.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-ro-ro.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-ro-ro.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-ro-ro.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-ro-ro.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-ro-ro.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Alina",
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "voice": "ro-RO-AlinaNeural",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ro-ro-alinaneural-ro-ro.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-ro-ro.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-ro-ro.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-ro-ro.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-ro-ro.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-ro-ro.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-ro-ro.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-ro-ro.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-ro-ro.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-ro-ro.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-ro-ro.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-ro-ro.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-ro-ro.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-ro-ro.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Romanian (Romania)",
+ "locale": "ro-RO",
+ "icon": "ro",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-ro-ro.mp3"
+ },
+ {
+ "character": "Elanor A",
+ "name": "Romanian-RO",
+ "voice": "ro-RO-Wavenet-A",
+ "icon": "ro",
+ "voiceProvider": "google",
+ "locale": "ro-RO",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ro-ro-wavenet-a-ro-ro.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Russian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Dmitry",
+ "name": "Russian (Russia)",
+ "locale": "ru-RU",
+ "voice": "ru-RU-DmitryNeural",
+ "icon": "ru",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ru-ru-dmitryneural-ru-ru.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Oscar B",
+ "name": "Russian-RU",
+ "voice": "ru-RU-Wavenet-B",
+ "icon": "ru",
+ "voiceProvider": "google",
+ "locale": "ru-RU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ru-ru-wavenet-b-ru-ru.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Miles D",
+ "name": "Russian-RU",
+ "voice": "ru-RU-Wavenet-D",
+ "icon": "ru",
+ "voiceProvider": "google",
+ "locale": "ru-RU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ru-ru-wavenet-d-ru-ru.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Svetlana",
+ "name": "Russian (Russia)",
+ "locale": "ru-RU",
+ "voice": "ru-RU-SvetlanaNeural",
+ "icon": "ru",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ru-ru-svetlananeural-ru-ru.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Dariya",
+ "name": "Russian (Russia)",
+ "locale": "ru-RU",
+ "voice": "ru-RU-DariyaNeural",
+ "icon": "ru",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ru-ru-dariyaneural-ru-ru.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Elanor A",
+ "name": "Russian-RU",
+ "voice": "ru-RU-Wavenet-A",
+ "icon": "ru",
+ "voiceProvider": "google",
+ "locale": "ru-RU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ru-ru-wavenet-a-ru-ru.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Lucy C",
+ "name": "Russian-RU",
+ "voice": "ru-RU-Wavenet-C",
+ "icon": "ru",
+ "voiceProvider": "google",
+ "locale": "ru-RU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ru-ru-wavenet-c-ru-ru.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Daisy E",
+ "name": "Russian-RU",
+ "voice": "ru-RU-Wavenet-E",
+ "icon": "ru",
+ "voiceProvider": "google",
+ "locale": "ru-RU",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ru-ru-wavenet-e-ru-ru.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Serbian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Nicholas",
+ "name": "Serbian (Latin, Serbia)",
+ "locale": "sr-Latn-RS",
+ "voice": "sr-Latn-RS-NicholasNeural",
+ "icon": "rs",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sr-latn-rs-nicholasneural-sr-latn-rs.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Nicholas",
+ "name": "Serbian (Cyrillic, Serbia)",
+ "locale": "sr-RS",
+ "voice": "sr-RS-NicholasNeural",
+ "icon": "rs",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sr-rs-nicholasneural-sr-latn-rs.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sophie",
+ "name": "Serbian (Latin, Serbia)",
+ "locale": "sr-Latn-RS",
+ "voice": "sr-Latn-RS-SophieNeural",
+ "icon": "rs",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sr-latn-rs-sophieneural-sr-latn-rs.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sophie",
+ "name": "Serbian (Cyrillic, Serbia)",
+ "locale": "sr-RS",
+ "voice": "sr-RS-SophieNeural",
+ "icon": "rs",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sr-rs-sophieneural-sr-latn-rs.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Sinhala",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sameera",
+ "name": "Sinhala (Sri Lanka)",
+ "locale": "si-LK",
+ "voice": "si-LK-SameeraNeural",
+ "icon": "lk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-si-lk-sameeraneural-si-lk.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Thilini",
+ "name": "Sinhala (Sri Lanka)",
+ "locale": "si-LK",
+ "voice": "si-LK-ThiliniNeural",
+ "icon": "lk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-si-lk-thilinineural-si-lk.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Slovak",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Lukas",
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "voice": "sk-SK-LukasNeural",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sk-sk-lukasneural-sk-sk.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-sk-sk.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-sk-sk.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-sk-sk.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-sk-sk.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-sk-sk.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-sk-sk.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-sk-sk.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-sk-sk.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-sk-sk.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-sk-sk.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-sk-sk.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-sk-sk.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-sk-sk.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-sk-sk.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-sk-sk.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-sk-sk.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-sk-sk.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-sk-sk.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-sk-sk.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-sk-sk.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-sk-sk.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-sk-sk.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-sk-sk.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-sk-sk.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-sk-sk.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-sk-sk.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-sk-sk.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Viktoria",
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "voice": "sk-SK-ViktoriaNeural",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sk-sk-viktorianeural-sk-sk.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-sk-sk.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-sk-sk.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-sk-sk.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-sk-sk.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-sk-sk.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-sk-sk.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-sk-sk.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-sk-sk.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-sk-sk.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-sk-sk.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-sk-sk.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-sk-sk.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-sk-sk.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Slovak (Slovakia)",
+ "locale": "sk-SK",
+ "icon": "sk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-sk-sk.mp3"
+ },
+ {
+ "character": "Elanor A",
+ "name": "Slovak-SK",
+ "voice": "sk-SK-Wavenet-A",
+ "icon": "sk",
+ "voiceProvider": "google",
+ "locale": "sk-SK",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-sk-sk-wavenet-a-sk-sk.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Slovenian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Rok",
+ "name": "Slovenian (Slovenia)",
+ "locale": "sl-SI",
+ "voice": "sl-SI-RokNeural",
+ "icon": "si",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sl-si-rokneural-sl-si.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Petra",
+ "name": "Slovenian (Slovenia)",
+ "locale": "sl-SI",
+ "voice": "sl-SI-PetraNeural",
+ "icon": "si",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sl-si-petraneural-sl-si.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ]
+ },
+ {
+ "name": "Somali",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Muuse",
+ "name": "Somali (Somalia)",
+ "locale": "so-SO",
+ "voice": "so-SO-MuuseNeural",
+ "icon": "so",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-so-so-muuseneural-so-so.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Ubax",
+ "name": "Somali (Somalia)",
+ "locale": "so-SO",
+ "voice": "so-SO-UbaxNeural",
+ "icon": "so",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-so-so-ubaxneural-so-so.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Spanish",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Saul",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-SaulNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-saulneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Arnau",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-ArnauNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-arnauneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Teo",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-TeoNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-teoneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Jorge",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-JorgeNeural",
+ "icon": "mx",
+ "styleList": [
+ "cheerful",
+ "chat"
+ ],
+ "stylePreview": {
+ "cheerful": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-jorgeneural:cheerful-es-es.mp3",
+ "chat": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-jorgeneural:chat-es-es.mp3"
+ },
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-jorgeneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Cecilio",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-CecilioNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-cecilioneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-es-es.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-es-es.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-es-es.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-es-es.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-es-es.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-es-es.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-es-es.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-es-es.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-es-es.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-es-es.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-es-es.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-es-es.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-es-es.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-es-es.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-es-es.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Alvaro",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-AlvaroNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-alvaroneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Dario",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-DarioNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-darioneural-es-es.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elias",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-EliasNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-eliasneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Nil",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-NilNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-nilneural-es-es.mp3"
+ },
+ {
+ "character": "Hugo B",
+ "name": "Spanish-ES",
+ "voice": "es-ES-Neural2-B",
+ "icon": "es",
+ "voiceProvider": "google",
+ "locale": "es-ES",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-es-es-neural2-b-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Arlo F",
+ "name": "Spanish-ES",
+ "voice": "es-ES-Neural2-F",
+ "icon": "es",
+ "voiceProvider": "google",
+ "locale": "es-ES",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-es-es-neural2-f-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Gerardo",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-GerardoNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-gerardoneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Liberto",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-LibertoNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-libertoneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Luciano",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-LucianoNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-lucianoneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Pelayo",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-PelayoNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-pelayoneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yago",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-YagoNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-yagoneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Tomas",
+ "name": "Spanish (Argentina)",
+ "locale": "es-AR",
+ "voice": "es-AR-TomasNeural",
+ "icon": "ar",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-ar-tomasneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Marcelo",
+ "name": "Spanish (Bolivia)",
+ "locale": "es-BO",
+ "voice": "es-BO-MarceloNeural",
+ "icon": "bo",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-bo-marceloneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Lorenzo",
+ "name": "Spanish (Chile)",
+ "locale": "es-CL",
+ "voice": "es-CL-LorenzoNeural",
+ "icon": "cl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-cl-lorenzoneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Gonzalo",
+ "name": "Spanish (Colombia)",
+ "locale": "es-CO",
+ "voice": "es-CO-GonzaloNeural",
+ "icon": "co",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-co-gonzaloneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Juan",
+ "name": "Spanish (Costa Rica)",
+ "locale": "es-CR",
+ "voice": "es-CR-JuanNeural",
+ "icon": "cr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-cr-juanneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Manuel",
+ "name": "Spanish (Cuba)",
+ "locale": "es-CU",
+ "voice": "es-CU-ManuelNeural",
+ "icon": "cu",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-cu-manuelneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Emilio",
+ "name": "Spanish (Dominican Republic)",
+ "locale": "es-DO",
+ "voice": "es-DO-EmilioNeural",
+ "icon": "do",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-do-emilioneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Luis",
+ "name": "Spanish (Ecuador)",
+ "locale": "es-EC",
+ "voice": "es-EC-LuisNeural",
+ "icon": "ec",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-ec-luisneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Javier",
+ "name": "Spanish (Equatorial Guinea)",
+ "locale": "es-GQ",
+ "voice": "es-GQ-JavierNeural",
+ "icon": "gq",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-gq-javierneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Andres",
+ "name": "Spanish (Guatemala)",
+ "locale": "es-GT",
+ "voice": "es-GT-AndresNeural",
+ "icon": "gt",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-gt-andresneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Carlos",
+ "name": "Spanish (Honduras)",
+ "locale": "es-HN",
+ "voice": "es-HN-CarlosNeural",
+ "icon": "hn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-hn-carlosneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Federico",
+ "name": "Spanish (Nicaragua)",
+ "locale": "es-NI",
+ "voice": "es-NI-FedericoNeural",
+ "icon": "ni",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-ni-federiconeural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Roberto",
+ "name": "Spanish (Panama)",
+ "locale": "es-PA",
+ "voice": "es-PA-RobertoNeural",
+ "icon": "pa",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-pa-robertoneural-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Alex",
+ "name": "Spanish (Peru)",
+ "locale": "es-PE",
+ "voice": "es-PE-AlexNeural",
+ "icon": "pe",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-pe-alexneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Victor",
+ "name": "Spanish (Puerto Rico)",
+ "locale": "es-PR",
+ "voice": "es-PR-VictorNeural",
+ "icon": "pr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-pr-victorneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Mario",
+ "name": "Spanish (Paraguay)",
+ "locale": "es-PY",
+ "voice": "es-PY-MarioNeural",
+ "icon": "py",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-py-marioneural-es-es.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Rodrigo",
+ "name": "Spanish (El Salvador)",
+ "locale": "es-SV",
+ "voice": "es-SV-RodrigoNeural",
+ "icon": "sv",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-sv-rodrigoneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Alonso",
+ "name": "Spanish (United States)",
+ "locale": "es-US",
+ "voice": "es-US-AlonsoNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-us-alonsoneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Mateo",
+ "name": "Spanish (Uruguay)",
+ "locale": "es-UY",
+ "voice": "es-UY-MateoNeural",
+ "icon": "uy",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-uy-mateoneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sebastian",
+ "name": "Spanish (Venezuela)",
+ "locale": "es-VE",
+ "voice": "es-VE-SebastianNeural",
+ "icon": "ve",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-ve-sebastianneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Mateo B",
+ "name": "Spanish-US",
+ "voice": "es-US-Neural2-B",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "es-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-es-us-neural2-b-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Diego C",
+ "name": "Spanish-US",
+ "voice": "es-US-Neural2-C",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "es-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-es-us-neural2-c-es-es.mp3",
+ "approxDurationCoeficient": 21
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Elvira",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-ElviraNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-elviraneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Abril",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-AbrilNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-abrilneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Estrella",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-EstrellaNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-estrellaneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Carlota",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-CarlotaNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-carlotaneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Beatriz",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-BeatrizNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-beatrizneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-es-es.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-es-es.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-es-es.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-es-es.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-es-es.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-es-es.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Irene",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-IreneNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-ireneneural-es-es.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Laia",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-LaiaNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-laianeural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Lia",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-LiaNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-lianeural-es-es.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Triana",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-TrianaNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-triananeural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Vera",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-VeraNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-veraneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ximena",
+ "name": "Spanish (Spain)",
+ "locale": "es-ES",
+ "voice": "es-ES-XimenaNeural",
+ "icon": "es",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-es-ximenaneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Isla A",
+ "name": "Spanish-ES",
+ "voice": "es-ES-Neural2-A",
+ "icon": "es",
+ "voiceProvider": "google",
+ "locale": "es-ES",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-es-es-neural2-a-es-es.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Elena C",
+ "name": "Spanish-ES",
+ "voice": "es-ES-Neural2-C",
+ "icon": "es",
+ "voiceProvider": "google",
+ "locale": "es-ES",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-es-es-neural2-c-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lucia D",
+ "name": "Spanish-ES",
+ "voice": "es-ES-Neural2-D",
+ "icon": "es",
+ "voiceProvider": "google",
+ "locale": "es-ES",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-es-es-neural2-d-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Maya E",
+ "name": "Spanish-ES",
+ "voice": "es-ES-Neural2-E",
+ "icon": "es",
+ "voiceProvider": "google",
+ "locale": "es-ES",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-es-es-neural2-e-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Dalia",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-DaliaNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-dalianeural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Candela",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-CandelaNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-candelaneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Larissa",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-LarissaNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-larissaneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Marina",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-MarinaNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-marinaneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Nuria",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-NuriaNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-nurianeural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Renata",
+ "name": "Spanish (Mexico)",
+ "locale": "es-MX",
+ "voice": "es-MX-RenataNeural",
+ "icon": "mx",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-mx-renataneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Elena",
+ "name": "Spanish (Argentina)",
+ "locale": "es-AR",
+ "voice": "es-AR-ElenaNeural",
+ "icon": "ar",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-ar-elenaneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Sofia",
+ "name": "Spanish (Bolivia)",
+ "locale": "es-BO",
+ "voice": "es-BO-SofiaNeural",
+ "icon": "bo",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-bo-sofianeural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Catalina",
+ "name": "Spanish (Chile)",
+ "locale": "es-CL",
+ "voice": "es-CL-CatalinaNeural",
+ "icon": "cl",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-cl-catalinaneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Salome",
+ "name": "Spanish (Colombia)",
+ "locale": "es-CO",
+ "voice": "es-CO-SalomeNeural",
+ "icon": "co",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-co-salomeneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Maria",
+ "name": "Spanish (Costa Rica)",
+ "locale": "es-CR",
+ "voice": "es-CR-MariaNeural",
+ "icon": "cr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-cr-marianeural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Belkys",
+ "name": "Spanish (Cuba)",
+ "locale": "es-CU",
+ "voice": "es-CU-BelkysNeural",
+ "icon": "cu",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-cu-belkysneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Ramona",
+ "name": "Spanish (Dominican Republic)",
+ "locale": "es-DO",
+ "voice": "es-DO-RamonaNeural",
+ "icon": "do",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-do-ramonaneural-es-es.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Andrea",
+ "name": "Spanish (Ecuador)",
+ "locale": "es-EC",
+ "voice": "es-EC-AndreaNeural",
+ "icon": "ec",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-ec-andreaneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Teresa",
+ "name": "Spanish (Equatorial Guinea)",
+ "locale": "es-GQ",
+ "voice": "es-GQ-TeresaNeural",
+ "icon": "gq",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-gq-teresaneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Marta",
+ "name": "Spanish (Guatemala)",
+ "locale": "es-GT",
+ "voice": "es-GT-MartaNeural",
+ "icon": "gt",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-gt-martaneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Karla",
+ "name": "Spanish (Honduras)",
+ "locale": "es-HN",
+ "voice": "es-HN-KarlaNeural",
+ "icon": "hn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-hn-karlaneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Yolanda",
+ "name": "Spanish (Nicaragua)",
+ "locale": "es-NI",
+ "voice": "es-NI-YolandaNeural",
+ "icon": "ni",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-ni-yolandaneural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Margarita",
+ "name": "Spanish (Panama)",
+ "locale": "es-PA",
+ "voice": "es-PA-MargaritaNeural",
+ "icon": "pa",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-pa-margaritaneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Camila",
+ "name": "Spanish (Peru)",
+ "locale": "es-PE",
+ "voice": "es-PE-CamilaNeural",
+ "icon": "pe",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-pe-camilaneural-es-es.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Karina",
+ "name": "Spanish (Puerto Rico)",
+ "locale": "es-PR",
+ "voice": "es-PR-KarinaNeural",
+ "icon": "pr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-pr-karinaneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Tania",
+ "name": "Spanish (Paraguay)",
+ "locale": "es-PY",
+ "voice": "es-PY-TaniaNeural",
+ "icon": "py",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-py-tanianeural-es-es.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Lorena",
+ "name": "Spanish (El Salvador)",
+ "locale": "es-SV",
+ "voice": "es-SV-LorenaNeural",
+ "icon": "sv",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-sv-lorenaneural-es-es.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Paloma",
+ "name": "Spanish (United States)",
+ "locale": "es-US",
+ "voice": "es-US-PalomaNeural",
+ "icon": "us",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-us-palomaneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Valentina",
+ "name": "Spanish (Uruguay)",
+ "locale": "es-UY",
+ "voice": "es-UY-ValentinaNeural",
+ "icon": "uy",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-uy-valentinaneural-es-es.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Paola",
+ "name": "Spanish (Venezuela)",
+ "locale": "es-VE",
+ "voice": "es-VE-PaolaNeural",
+ "icon": "ve",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-es-ve-paolaneural-es-es.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Lola A",
+ "name": "Spanish-US",
+ "voice": "es-US-Neural2-A",
+ "icon": "us",
+ "voiceProvider": "google",
+ "locale": "es-US",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-es-us-neural2-a-es-es.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ]
+ },
+ {
+ "name": "Sundanese",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Jajang",
+ "name": "Sundanese (Indonesia)",
+ "locale": "su-ID",
+ "voice": "su-ID-JajangNeural",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-su-id-jajangneural-su-id.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Tuti",
+ "name": "Sundanese (Indonesia)",
+ "locale": "su-ID",
+ "voice": "su-ID-TutiNeural",
+ "icon": "id",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-su-id-tutineural-su-id.mp3",
+ "approxDurationCoeficient": 12
+ }
+ ]
+ },
+ {
+ "name": "Swahili",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Rafiki",
+ "name": "Swahili (Kenya)",
+ "locale": "sw-KE",
+ "voice": "sw-KE-RafikiNeural",
+ "icon": "ke",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sw-ke-rafikineural-sw-ke.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Daudi",
+ "name": "Swahili (Tanzania)",
+ "locale": "sw-TZ",
+ "voice": "sw-TZ-DaudiNeural",
+ "icon": "tz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sw-tz-daudineural-sw-ke.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Zuri",
+ "name": "Swahili (Kenya)",
+ "locale": "sw-KE",
+ "voice": "sw-KE-ZuriNeural",
+ "icon": "ke",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sw-ke-zurineural-sw-ke.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Rehema",
+ "name": "Swahili (Tanzania)",
+ "locale": "sw-TZ",
+ "voice": "sw-TZ-RehemaNeural",
+ "icon": "tz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sw-tz-rehemaneural-sw-ke.mp3",
+ "approxDurationCoeficient": 12
+ }
+ ]
+ },
+ {
+ "name": "Swedish",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Mattias",
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "voice": "sv-SE-MattiasNeural",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sv-se-mattiasneural-sv-se.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-sv-se.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-sv-se.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-sv-se.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-sv-se.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-sv-se.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-sv-se.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-sv-se.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-sv-se.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-sv-se.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-sv-se.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-sv-se.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-sv-se.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-sv-se.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-sv-se.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-sv-se.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-sv-se.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-sv-se.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-sv-se.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-sv-se.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-sv-se.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-sv-se.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-sv-se.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-sv-se.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-sv-se.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-sv-se.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-sv-se.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-sv-se.mp3"
+ },
+ {
+ "character": "Oscar C",
+ "name": "Swedish-SE",
+ "voice": "sv-SE-Wavenet-C",
+ "icon": "se",
+ "voiceProvider": "google",
+ "locale": "sv-SE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-sv-se-wavenet-c-sv-se.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Miles E",
+ "name": "Swedish-SE",
+ "voice": "sv-SE-Wavenet-E",
+ "icon": "se",
+ "voiceProvider": "google",
+ "locale": "sv-SE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-sv-se-wavenet-e-sv-se.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sofie",
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "voice": "sv-SE-SofieNeural",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sv-se-sofieneural-sv-se.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-sv-se.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-sv-se.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-sv-se.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-sv-se.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-sv-se.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-sv-se.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-sv-se.mp3"
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-sv-se.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-sv-se.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-sv-se.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-sv-se.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-sv-se.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-sv-se.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-sv-se.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Hillevi",
+ "name": "Swedish (Sweden)",
+ "locale": "sv-SE",
+ "voice": "sv-SE-HilleviNeural",
+ "icon": "se",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-sv-se-hillevineural-sv-se.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Elanor A",
+ "name": "Swedish-SE",
+ "voice": "sv-SE-Wavenet-A",
+ "icon": "se",
+ "voiceProvider": "google",
+ "locale": "sv-SE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-sv-se-wavenet-a-sv-se.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Lucy B",
+ "name": "Swedish-SE",
+ "voice": "sv-SE-Wavenet-B",
+ "icon": "se",
+ "voiceProvider": "google",
+ "locale": "sv-SE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-sv-se-wavenet-b-sv-se.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Daisy D",
+ "name": "Swedish-SE",
+ "voice": "sv-SE-Wavenet-D",
+ "icon": "se",
+ "voiceProvider": "google",
+ "locale": "sv-SE",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-sv-se-wavenet-d-sv-se.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ]
+ },
+ {
+ "name": "Tamil",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Valluvar",
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "voice": "ta-IN-ValluvarNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ta-in-valluvarneural-ta-in.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-ta-in.mp3"
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-ta-in.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-ta-in.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-ta-in.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-ta-in.mp3"
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-ta-in.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-ta-in.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-ta-in.mp3"
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-ta-in.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-ta-in.mp3"
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-ta-in.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-ta-in.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-ta-in.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-ta-in.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-ta-in.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-ta-in.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-ta-in.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-ta-in.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-ta-in.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-ta-in.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-ta-in.mp3"
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-ta-in.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-ta-in.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-ta-in.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-ta-in.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-ta-in.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-ta-in.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Kumar",
+ "name": "Tamil (Sri Lanka)",
+ "locale": "ta-LK",
+ "voice": "ta-LK-KumarNeural",
+ "icon": "lk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ta-lk-kumarneural-ta-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Surya",
+ "name": "Tamil (Malaysia)",
+ "locale": "ta-MY",
+ "voice": "ta-MY-SuryaNeural",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ta-my-suryaneural-ta-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Anbu",
+ "name": "Tamil (Singapore)",
+ "locale": "ta-SG",
+ "voice": "ta-SG-AnbuNeural",
+ "icon": "sg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ta-sg-anbuneural-ta-in.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Oscar B",
+ "name": "Tamil-IN",
+ "voice": "ta-IN-Wavenet-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ta-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ta-in-wavenet-b-ta-in.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Miles D",
+ "name": "Tamil-IN",
+ "voice": "ta-IN-Wavenet-D",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ta-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ta-in-wavenet-d-ta-in.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Pallavi",
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "voice": "ta-IN-PallaviNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ta-in-pallavineural-ta-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-ta-in.mp3",
+ "approxDurationCoeficient": 26
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-ta-in.mp3"
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-ta-in.mp3"
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-ta-in.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-ta-in.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-ta-in.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-ta-in.mp3"
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-ta-in.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-ta-in.mp3"
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-ta-in.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-ta-in.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-ta-in.mp3"
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-ta-in.mp3"
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Tamil (India)",
+ "locale": "ta-IN",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-ta-in.mp3"
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Saranya",
+ "name": "Tamil (Sri Lanka)",
+ "locale": "ta-LK",
+ "voice": "ta-LK-SaranyaNeural",
+ "icon": "lk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ta-lk-saranyaneural-ta-in.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Kani",
+ "name": "Tamil (Malaysia)",
+ "locale": "ta-MY",
+ "voice": "ta-MY-KaniNeural",
+ "icon": "my",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ta-my-kanineural-ta-in.mp3",
+ "approxDurationCoeficient": 19
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Venba",
+ "name": "Tamil (Singapore)",
+ "locale": "ta-SG",
+ "voice": "ta-SG-VenbaNeural",
+ "icon": "sg",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ta-sg-venbaneural-ta-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Elanor A",
+ "name": "Tamil-IN",
+ "voice": "ta-IN-Wavenet-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ta-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ta-in-wavenet-a-ta-in.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lucy C",
+ "name": "Tamil-IN",
+ "voice": "ta-IN-Wavenet-C",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ta-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ta-in-wavenet-c-ta-in.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Telugu",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Mohan",
+ "name": "Telugu (India)",
+ "locale": "te-IN",
+ "voice": "te-IN-MohanNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-te-in-mohanneural-te-in.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Shruti",
+ "name": "Telugu (India)",
+ "locale": "te-IN",
+ "voice": "te-IN-ShrutiNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-te-in-shrutineural-te-in.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ]
+ },
+ {
+ "name": "Thai",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Niwat",
+ "name": "Thai (Thailand)",
+ "locale": "th-TH",
+ "voice": "th-TH-NiwatNeural",
+ "icon": "th",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-th-th-niwatneural-th-th.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Premwadee",
+ "name": "Thai (Thailand)",
+ "locale": "th-TH",
+ "voice": "th-TH-PremwadeeNeural",
+ "icon": "th",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-th-th-premwadeeneural-th-th.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Achara",
+ "name": "Thai (Thailand)",
+ "locale": "th-TH",
+ "voice": "th-TH-AcharaNeural",
+ "icon": "th",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-th-th-acharaneural-th-th.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Elanor C",
+ "name": "Thai-TH",
+ "voice": "th-TH-Neural2-C",
+ "icon": "th",
+ "voiceProvider": "google",
+ "locale": "th-TH",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-th-th-neural2-c-th-th.mp3",
+ "approxDurationCoeficient": 12
+ }
+ ]
+ },
+ {
+ "name": "Turkish",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Ahmet",
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "voice": "tr-TR-AhmetNeural",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-tr-tr-ahmetneural-tr-tr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-tr-tr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-tr-tr.mp3"
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-tr-tr.mp3"
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-tr-tr.mp3"
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-tr-tr.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-tr-tr.mp3"
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-tr-tr.mp3"
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-tr-tr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-tr-tr.mp3"
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-tr-tr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-tr-tr.mp3"
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-tr-tr.mp3"
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-tr-tr.mp3"
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-tr-tr.mp3"
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-tr-tr.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-tr-tr.mp3"
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-tr-tr.mp3"
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-tr-tr.mp3"
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-tr-tr.mp3"
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-tr-tr.mp3"
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-tr-tr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-tr-tr.mp3"
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-tr-tr.mp3"
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-tr-tr.mp3"
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-tr-tr.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-tr-tr.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-tr-tr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Oscar B",
+ "name": "Turkish-TR",
+ "voice": "tr-TR-Wavenet-B",
+ "icon": "tr",
+ "voiceProvider": "google",
+ "locale": "tr-TR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-tr-tr-wavenet-b-tr-tr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Miles E",
+ "name": "Turkish-TR",
+ "voice": "tr-TR-Wavenet-E",
+ "icon": "tr",
+ "voiceProvider": "google",
+ "locale": "tr-TR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-tr-tr-wavenet-e-tr-tr.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Emel",
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "voice": "tr-TR-EmelNeural",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-tr-tr-emelneural-tr-tr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-tr-tr.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-tr-tr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-tr-tr.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-tr-tr.mp3"
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-tr-tr.mp3"
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-tr-tr.mp3"
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-tr-tr.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-tr-tr.mp3"
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-tr-tr.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-tr-tr.mp3"
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-tr-tr.mp3"
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-tr-tr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-tr-tr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Turkish (Turkey)",
+ "locale": "tr-TR",
+ "icon": "tr",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-tr-tr.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Elanor A",
+ "name": "Turkish-TR",
+ "voice": "tr-TR-Wavenet-A",
+ "icon": "tr",
+ "voiceProvider": "google",
+ "locale": "tr-TR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-tr-tr-wavenet-a-tr-tr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Lucy C",
+ "name": "Turkish-TR",
+ "voice": "tr-TR-Wavenet-C",
+ "icon": "tr",
+ "voiceProvider": "google",
+ "locale": "tr-TR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-tr-tr-wavenet-c-tr-tr.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Daisy D",
+ "name": "Turkish-TR",
+ "voice": "tr-TR-Wavenet-D",
+ "icon": "tr",
+ "voiceProvider": "google",
+ "locale": "tr-TR",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-tr-tr-wavenet-d-tr-tr.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ]
+ },
+ {
+ "name": "Ukrainian",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Ostap",
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "voice": "uk-UA-OstapNeural",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-uk-ua-ostapneural-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Antoni",
+ "voice": "ErXwobaYiN019PkySvjV",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "calm"
+ ],
+ "order": 1,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-erxwobayin019pkysvjv-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Josh",
+ "voice": "TxGEqnHWrfWFTfGW9XjX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "young"
+ ],
+ "order": 2,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-txgeqnhwrfwftfgw9xjx-uk-ua.mp3",
+ "approxDurationCoeficient": 17
+ },
+ {
+ "character": "Arnold",
+ "voice": "VR6AewLTigWG4xSOukaG",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "crisp",
+ "middle-aged"
+ ],
+ "order": 3,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-vr6aewltigwg4xsoukag-uk-ua.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Adam",
+ "voice": "pNInz6obpgDQGcFmaJgB",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 4,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pninz6obpgdqgcfmajgb-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Bill",
+ "voice": "pqHfZKP75CvOlQylNhV4",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 5,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pqhfzkp75cvolqylnhv4-uk-ua.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Jessie",
+ "voice": "t0jbNlBVZ17f02VDIeMI",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "old"
+ ],
+ "order": 6,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-t0jbnlbvz17f02vdiemi-uk-ua.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Michael",
+ "voice": "flq6f7yk4E4fJM5XTYuZ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "orutund",
+ "old"
+ ],
+ "order": 7,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-flq6f7yk4e4fjm5xtyuz-uk-ua.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Liam",
+ "voice": "TX3LPaxmHKxFdv7VOQHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "neutral",
+ "young"
+ ],
+ "order": 8,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tx3lpaxmhkxfdv7voqhj-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Harry",
+ "voice": "SOYHLrjzK2X1ezoPC6cr",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "anxious",
+ "young"
+ ],
+ "order": 9,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-soyhlrjzk2x1ezopc6cr-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Patrick",
+ "voice": "ODq5zmih8GrVes37Dizd",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "shouty",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-odq5zmih8grves37dizd-uk-ua.mp3",
+ "approxDurationCoeficient": 20
+ },
+ {
+ "character": "Thomas",
+ "voice": "GBv7mTt0atIp3Br8iCZE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 11,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-gbv7mtt0atip3br8icze-uk-ua.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Drew",
+ "voice": "29vD33N1CtxCmqQRPOHJ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "well-rounded",
+ "middle-aged"
+ ],
+ "order": 12,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-29vd33n1ctxcmqqrpohj-uk-ua.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Paul",
+ "voice": "5Q0t7uMcjvnagumLfvZi",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "narration",
+ "middle-aged"
+ ],
+ "order": 13,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-5q0t7umcjvnagumlfvzi-uk-ua.mp3",
+ "approxDurationCoeficient": 8
+ },
+ {
+ "character": "Callum",
+ "voice": "N2lVS1w4EtoT3dr4eOWO",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 14,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-n2lvs1w4etot3dr4eowo-uk-ua.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Giovanni",
+ "voice": "zcAOhNBS3c14rBihAFp1",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "italian-accent",
+ "young"
+ ],
+ "order": 15,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zcaohnbs3c14rbihafp1-uk-ua.mp3"
+ },
+ {
+ "character": "Clyde",
+ "voice": "2EiwWnXFnvU5JabPnv8n",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "masculine",
+ "middle-aged"
+ ],
+ "order": 17,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-2eiwwnxfnvu5jabpnv8n-uk-ua.mp3",
+ "approxDurationCoeficient": 6
+ },
+ {
+ "character": "George",
+ "voice": "JBFqnCBsd6RMkjVDRZzb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "narration"
+ ],
+ "order": 19,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbfqncbsd6rmkjvdrzzb-uk-ua.mp3",
+ "approxDurationCoeficient": 4
+ },
+ {
+ "character": "Dave",
+ "voice": "CYw3kZ02Hs0563khs1Fj",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "essex-accent",
+ "young"
+ ],
+ "order": 20,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-cyw3kz02hs0563khs1fj-uk-ua.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Joseph",
+ "voice": "Zlb1dXrM653N07WRdFW3",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "middle-aged"
+ ],
+ "order": 21,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zlb1dxrm653n07wrdfw3-uk-ua.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Daniel",
+ "voice": "onwK4e9ZLuTAKqWW03F9",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "deep",
+ "middle-aged"
+ ],
+ "order": 22,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-onwk4e9zlutakqww03f9-uk-ua.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Charlie",
+ "voice": "IKne3meq5aSn9XLyUdCD",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "casual",
+ "middle-aged"
+ ],
+ "order": 23,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ikne3meq5asn9xlyudcd-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "James",
+ "voice": "ZQe5CZNOzWyzPSCn5a3c",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "old"
+ ],
+ "order": 24,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zqe5cznozwyzpscn5a3c-uk-ua.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Fin",
+ "voice": "D38z5RcWu1voky8WS1ja",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "sailor",
+ "old"
+ ],
+ "order": 25,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-d38z5rcwu1voky8ws1ja-uk-ua.mp3",
+ "approxDurationCoeficient": 12
+ },
+ {
+ "character": "Jeremy",
+ "voice": "bVMeCyTHy58xNoL34h3p",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "excited",
+ "young"
+ ],
+ "order": 26,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-bvmecythy58xnol34h3p-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Chris",
+ "voice": "iP95p4xoKVk53GoZ742B",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-ip95p4xokvk53goz742b-uk-ua.mp3"
+ },
+ {
+ "character": "Brian",
+ "voice": "nPczCjzI2devNBz1zQrb",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-npczcjzi2devnbz1zqrb-uk-ua.mp3"
+ },
+ {
+ "character": "Sam",
+ "voice": "yoZ06aMxZJJ28mfd3POQ",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "fast-paced",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-yoz06amxzjj28mfd3poq-uk-ua.mp3",
+ "approxDurationCoeficient": 6
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Polina",
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "voice": "uk-UA-PolinaNeural",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-uk-ua-polinaneural-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Rachel",
+ "voice": "21m00Tcm4TlvDq8ikWAM",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 1,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-21m00tcm4tlvdq8ikwam-uk-ua.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Matilda",
+ "voice": "XrExE9yKIg1WjnnlVkGX",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 3,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xrexe9ykig1wjnnlvkgx-uk-ua.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Grace",
+ "voice": "oWAxZDx7w5VEj9dCyTzz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "southern-accent",
+ "young"
+ ],
+ "order": 4,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-owaxzdx7w5vej9dcytzz-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Domi",
+ "voice": "AZnzlk1XvdvUeBnXmlld",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "upbeat",
+ "young"
+ ],
+ "order": 5,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-aznzlk1xvdvuebnxmlld-uk-ua.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Gigi",
+ "voice": "jBpfuIE2acCO8z3wKNLl",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 6,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-jbpfuie2acco8z3wknll-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Serena",
+ "voice": "pMsXgVXv3BLzUgSXRplE",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 7,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pmsxgvxv3blzugsxrple-uk-ua.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Glinda",
+ "voice": "z9fAnlkpzviPz146aGWa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "strong",
+ "middle-aged"
+ ],
+ "order": 8,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-z9fanlkpzvipz146agwa-uk-ua.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Mimi",
+ "voice": "zrHiDhphv9ZnVXBqCLjz",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "childish",
+ "young"
+ ],
+ "order": 9,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-zrhidhphv9znvxbqcljz-uk-ua.mp3",
+ "approxDurationCoeficient": 10
+ },
+ {
+ "character": "Emily",
+ "voice": "LcfcDJNUP1GQjkzn1xUU",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "middle-aged"
+ ],
+ "order": 10,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-lcfcdjnup1gqjkzn1xuu-uk-ua.mp3",
+ "approxDurationCoeficient": 11
+ },
+ {
+ "character": "Lily",
+ "voice": "pFZP5JQG7iQjIQuC4Bku",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "raspy",
+ "middle-aged"
+ ],
+ "order": 11,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-pfzp5jqg7iqjiquc4bku-uk-ua.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Charlotte",
+ "voice": "XB0fDUnXU5powFXDhCwa",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "swedish-accent",
+ "young"
+ ],
+ "order": 12,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb0fdunxu5powfxdhcwa-uk-ua.mp3",
+ "approxDurationCoeficient": 13
+ },
+ {
+ "character": "Dorothy",
+ "voice": "ThT5KcBeYPX3keUQqHPh",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 13,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-tht5kcbeypx3keuqqhph-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Sarah",
+ "voice": "EXAVITQu4vr4xnSDxMaL",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [
+ "calm",
+ "young"
+ ],
+ "order": 99999,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-exavitqu4vr4xnsdxmal-uk-ua.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Alice",
+ "voice": "Xb7hH8MSUJpSbSDYk0k2",
+ "voiceProvider": "elevenlabs",
+ "premium": true,
+ "tags": [],
+ "order": 99999,
+ "name": "Ukrainian (Ukraine)",
+ "locale": "uk-UA",
+ "icon": "ua",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/elevenlabs/elevenlabs-xb7hh8msujpsbsdyk0k2-uk-ua.mp3",
+ "approxDurationCoeficient": 16
+ },
+ {
+ "character": "Elanor A",
+ "name": "Ukrainian-UA",
+ "voice": "uk-UA-Wavenet-A",
+ "icon": "ua",
+ "voiceProvider": "google",
+ "locale": "uk-UA",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-uk-ua-wavenet-a-uk-ua.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Urdu",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Salman",
+ "name": "Urdu (India)",
+ "locale": "ur-IN",
+ "voice": "ur-IN-SalmanNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ur-in-salmanneural-ur-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Asad",
+ "name": "Urdu (Pakistan)",
+ "locale": "ur-PK",
+ "voice": "ur-PK-AsadNeural",
+ "icon": "pk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ur-pk-asadneural-ur-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "character": "Oscar B",
+ "name": "Urdu-IN",
+ "voice": "ur-IN-Wavenet-B",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ur-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ur-in-wavenet-b-ur-in.mp3"
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Gul",
+ "name": "Urdu (India)",
+ "locale": "ur-IN",
+ "voice": "ur-IN-GulNeural",
+ "icon": "in",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ur-in-gulneural-ur-in.mp3",
+ "approxDurationCoeficient": 14
+ },
+ {
+ "voiceProvider": "azure",
+ "character": "Uzma",
+ "name": "Urdu (Pakistan)",
+ "locale": "ur-PK",
+ "voice": "ur-PK-UzmaNeural",
+ "icon": "pk",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-ur-pk-uzmaneural-ur-in.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Elanor A",
+ "name": "Urdu-IN",
+ "voice": "ur-IN-Wavenet-A",
+ "icon": "in",
+ "voiceProvider": "google",
+ "locale": "ur-IN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-ur-in-wavenet-a-ur-in.mp3",
+ "approxDurationCoeficient": 8
+ }
+ ]
+ },
+ {
+ "name": "Uzbek",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Sardor",
+ "name": "Uzbek (Latin, Uzbekistan)",
+ "locale": "uz-UZ",
+ "voice": "uz-UZ-SardorNeural",
+ "icon": "uz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-uz-uz-sardorneural-uz-uz.mp3",
+ "approxDurationCoeficient": 17
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Madina",
+ "name": "Uzbek (Latin, Uzbekistan)",
+ "locale": "uz-UZ",
+ "voice": "uz-UZ-MadinaNeural",
+ "icon": "uz",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-uz-uz-madinaneural-uz-uz.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ]
+ },
+ {
+ "name": "Vietnamese",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "NamMinh",
+ "name": "Vietnamese (Vietnam)",
+ "locale": "vi-VN",
+ "voice": "vi-VN-NamMinhNeural",
+ "icon": "vn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-vi-vn-namminhneural-vi-vn.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Oscar D",
+ "name": "Vietnamese-VN",
+ "voice": "vi-VN-Neural2-D",
+ "icon": "vn",
+ "voiceProvider": "google",
+ "locale": "vi-VN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-vi-vn-neural2-d-vi-vn.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Miles B",
+ "name": "Vietnamese-VN",
+ "voice": "vi-VN-Wavenet-B",
+ "icon": "vn",
+ "voiceProvider": "google",
+ "locale": "vi-VN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-vi-vn-wavenet-b-vi-vn.mp3",
+ "approxDurationCoeficient": 19
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "HoaiMy",
+ "name": "Vietnamese (Vietnam)",
+ "locale": "vi-VN",
+ "voice": "vi-VN-HoaiMyNeural",
+ "icon": "vn",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-vi-vn-hoaimyneural-vi-vn.mp3",
+ "approxDurationCoeficient": 18
+ },
+ {
+ "character": "Elanor A",
+ "name": "Vietnamese-VN",
+ "voice": "vi-VN-Neural2-A",
+ "icon": "vn",
+ "voiceProvider": "google",
+ "locale": "vi-VN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-vi-vn-neural2-a-vi-vn.mp3",
+ "approxDurationCoeficient": 15
+ },
+ {
+ "character": "Lucy C",
+ "name": "Vietnamese-VN",
+ "voice": "vi-VN-Wavenet-C",
+ "icon": "vn",
+ "voiceProvider": "google",
+ "locale": "vi-VN",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/google/google-vi-vn-wavenet-c-vi-vn.mp3",
+ "approxDurationCoeficient": 18
+ }
+ ]
+ },
+ {
+ "name": "Welsh",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Aled",
+ "name": "Welsh (United Kingdom)",
+ "locale": "cy-GB",
+ "voice": "cy-GB-AledNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-cy-gb-aledneural-cy-gb.mp3",
+ "approxDurationCoeficient": 16
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Nia",
+ "name": "Welsh (United Kingdom)",
+ "locale": "cy-GB",
+ "voice": "cy-GB-NiaNeural",
+ "icon": "gb",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-cy-gb-nianeural-cy-gb.mp3",
+ "approxDurationCoeficient": 15
+ }
+ ]
+ },
+ {
+ "name": "Zulu",
+ "male": [
+ {
+ "voiceProvider": "azure",
+ "character": "Themba",
+ "name": "Zulu (South Africa)",
+ "locale": "zu-ZA",
+ "voice": "zu-ZA-ThembaNeural",
+ "icon": "za",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zu-za-thembaneural-zu-za.mp3",
+ "approxDurationCoeficient": 14
+ }
+ ],
+ "female": [
+ {
+ "voiceProvider": "azure",
+ "character": "Thando",
+ "name": "Zulu (South Africa)",
+ "locale": "zu-ZA",
+ "voice": "zu-ZA-ThandoNeural",
+ "icon": "za",
+ "url": "https://d3u63mhbhkevz8.cloudfront.net/voices/azure/azure-zu-za-thandoneural-zu-za.mp3",
+ "approxDurationCoeficient": 13
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/helper/elai_api.py b/helper/elai_api.py
new file mode 100644
index 0000000..fc59f3d
--- /dev/null
+++ b/helper/elai_api.py
@@ -0,0 +1,263 @@
+import os
+import random
+import time
+from logging import getLogger
+
+import requests
+from dotenv import load_dotenv
+
+from helper.constants import *
+from helper.firebase_helper import upload_file_firebase_get_url, save_to_db_with_id
+from elai.AvatarEnum import AvatarEnum
+
+load_dotenv()
+
+logger = getLogger(__name__)
+
+# Get ELAI token
+TOKEN = os.getenv("ELAI_TOKEN")
+FIREBASE_BUCKET = os.getenv('FIREBASE_BUCKET')
+
+# POST TO CREATE VIDEO
+POST_HEADER = {
+ "accept": "application/json",
+ "content-type": "application/json",
+ "Authorization": f"Bearer {TOKEN}"
+}
+GET_HEADER = {
+ "accept": "application/json",
+ "Authorization": f"Bearer {TOKEN}"
+}
+
+
+def create_videos_and_save_to_db(exercises, template, id):
+ avatar = random.choice(list(AvatarEnum))
+ # Speaking 1
+ # Using list comprehension to find the element with the desired value in the 'type' field
+ found_exercises_1 = [element for element in exercises if element.get('type') == 1]
+ # Check if any elements were found
+ if found_exercises_1:
+ exercise_1 = found_exercises_1[0]
+ sp1_questions = []
+ logger.info('Creating video for speaking part 1')
+ for question in exercise_1["questions"]:
+ sp1_result = create_video(question, avatar)
+ if sp1_result is not None:
+ sound_file_path = VIDEO_FILES_PATH + sp1_result
+ firebase_file_path = FIREBASE_SPEAKING_VIDEO_FILES_PATH + sp1_result
+ url = upload_file_firebase_get_url(FIREBASE_BUCKET, firebase_file_path, sound_file_path)
+ video = {
+ "text": question,
+ "video_path": firebase_file_path,
+ "video_url": url
+ }
+ sp1_questions.append(video)
+ else:
+ logger.error("Failed to create video for part 1 question: " + exercise_1["question"])
+ template["exercises"][0]["prompts"] = sp1_questions
+ template["exercises"][0]["first_title"] = exercise_1["first_topic"]
+ template["exercises"][0]["second_title"] = exercise_1["second_topic"]
+
+ # Speaking 2
+ # Using list comprehension to find the element with the desired value in the 'type' field
+ found_exercises_2 = [element for element in exercises if element.get('type') == 2]
+ # Check if any elements were found
+ if found_exercises_2:
+ exercise_2 = found_exercises_2[0]
+ logger.info('Creating video for speaking part 2')
+ sp2_result = create_video(exercise_2["question"], avatar)
+ if sp2_result is not None:
+ sound_file_path = VIDEO_FILES_PATH + sp2_result
+ firebase_file_path = FIREBASE_SPEAKING_VIDEO_FILES_PATH + sp2_result
+ url = upload_file_firebase_get_url(FIREBASE_BUCKET, firebase_file_path, sound_file_path)
+ sp2_video_path = firebase_file_path
+ sp2_video_url = url
+ template["exercises"][1]["prompts"] = exercise_2["prompts"]
+ template["exercises"][1]["text"] = exercise_2["question"]
+ template["exercises"][1]["title"] = exercise_2["topic"]
+ template["exercises"][1]["video_url"] = sp2_video_url
+ template["exercises"][1]["video_path"] = sp2_video_path
+ else:
+ logger.error("Failed to create video for part 2 question: " + exercise_2["question"])
+
+ # Speaking 3
+ # Using list comprehension to find the element with the desired value in the 'type' field
+ found_exercises_3 = [element for element in exercises if element.get('type') == 3]
+ # Check if any elements were found
+ if found_exercises_3:
+ exercise_3 = found_exercises_3[0]
+ sp3_questions = []
+ logger.info('Creating videos for speaking part 3')
+ for question in exercise_3["questions"]:
+ result = create_video(question, avatar)
+ if result is not None:
+ sound_file_path = VIDEO_FILES_PATH + result
+ firebase_file_path = FIREBASE_SPEAKING_VIDEO_FILES_PATH + result
+ url = upload_file_firebase_get_url(FIREBASE_BUCKET, firebase_file_path, sound_file_path)
+ video = {
+ "text": question,
+ "video_path": firebase_file_path,
+ "video_url": url
+ }
+ sp3_questions.append(video)
+ else:
+ logger.error("Failed to create video for part 3 question: " + question)
+ template["exercises"][2]["prompts"] = sp3_questions
+ template["exercises"][2]["title"] = exercise_3["topic"]
+
+ if not found_exercises_3:
+ template["exercises"].pop(2)
+ if not found_exercises_2:
+ template["exercises"].pop(1)
+ if not found_exercises_1:
+ template["exercises"].pop(0)
+
+ save_to_db_with_id("speaking", template, id)
+ logger.info('Saved speaking to DB with id ' + id + " : " + str(template))
+
+
+def create_video(text, avatar):
+ # POST TO CREATE VIDEO
+ create_video_url = "https://apis.elai.io/api/v1/videos"
+
+ avatar_url = AvatarEnum[avatar].value.get("avatar_url")
+ avatar_code = AvatarEnum[avatar].value.get("avatar_code")
+ avatar_gender = AvatarEnum[avatar].value.get("avatar_gender")
+ avatar_canvas = AvatarEnum[avatar].value.get("avatar_canvas")
+ voice_id = AvatarEnum[avatar].value.get("voice_id")
+ voice_provider = AvatarEnum[avatar].value.get("voice_provider")
+
+ data = {
+ "name": "API test",
+ "slides": [
+ {
+ "id": 1,
+ "canvas": {
+ "objects": [
+ {
+ "type": "avatar",
+ "left": 151.5,
+ "top": 36,
+ "fill": "#4868FF",
+ "scaleX": 0.3,
+ "scaleY": 0.3,
+ "width": 1080,
+ "height": 1080,
+ "src": avatar_url,
+ "avatarType": "transparent",
+ "animation": {
+ "type": None,
+ "exitType": None
+ }
+ },
+ {
+ "type": "image",
+ "version": "5.3.0",
+ "originX": "left",
+ "originY": "top",
+ "left": 30,
+ "top": 30,
+ "width": 800,
+ "height": 600,
+ "fill": "rgb(0,0,0)",
+ "stroke": None,
+ "strokeWidth": 0,
+ "strokeDashArray": None,
+ "strokeLineCap": "butt",
+ "strokeDashOffset": 0,
+ "strokeLineJoin": "miter",
+ "strokeUniform": False,
+ "strokeMiterLimit": 4,
+ "scaleX": 0.18821429,
+ "scaleY": 0.18821429,
+ "angle": 0,
+ "flipX": False,
+ "flipY": False,
+ "opacity": 1,
+ "shadow": None,
+ "visible": True,
+ "backgroundColor": "",
+ "fillRule": "nonzero",
+ "paintFirst": "fill",
+ "globalCompositeOperation": "source-over",
+ "skewX": 0,
+ "skewY": 0,
+ "cropX": 0,
+ "cropY": 0,
+ "id": 676845479989,
+ "src": "https://d3u63mhbhkevz8.cloudfront.net/production/uploads/66f5190349f943682dd776ff/"
+ "en-coach-main-logo-800x600_sm1ype.jpg?Expires=1727654400&Policy=eyJTdGF0ZW1lbnQiOlt"
+ "7IlJlc291cmNlIjoiaHR0cHM6Ly9kM3U2M21oYmhrZXZ6OC5jbG91ZGZyb250Lm5ldC9wcm9kdWN0aW9uL3"
+ "VwbG9hZHMvNjZmNTE5MDM0OWY5NDM2ODJkZDc3NmZmL2VuLWNvYWNoLW1haW4tbG9nby04MDB4NjAwX3NtM"
+ "XlwZS5qcGciLCJDb25kaXRpb24iOnsiRGF0ZUxlc3NUaGFuIjp7IkFXUzpFcG9jaFRpbWUiOjE3Mjc2NTQ0"
+ "MDB9fX1dfQ__&Signature=kTVzlDeS7cua2HiAE5G%7E-yFqbhu0bHraFH5SauUln7yuNXoX7vtiKIBYiL"
+ "%7Eps3LCLEZS77arSZ7H%7EG8CKzabHDjAR-Y6Uc%7ELD5KQaMmk0jbAxbC3Wdoq6cfd0qIwEuodQYlC0It"
+ "2WBidP8KsgOy3uUQ%7EvcBoqlb255yMFw4pHuptOBB1kPs%7EFyzDV0fnRNsKaYRcy0Fn2EFUp13axm0CZQ"
+ "clazuLFM622AyCydKMy0vfxV%7Etny3sskwPaUe2OANGMFg07Q1pRuy6fUON0DsbhAh1tA2H6-nnem5KbFw"
+ "iZK3IIwwYGBx3H41ovzC6Ejt80Fd0%7EPSHw7GzVBnUmtP-IA__&Key-Pair-Id=K1Y7U91AR6T7E5",
+ "crossOrigin": "anonymous",
+ "filters": [],
+ "_exists": True
+ }
+ ],
+ "background": "#ffffff",
+ "version": "4.4.0"
+ },
+ "avatar": {
+ "code": avatar_code,
+ "gender": avatar_gender,
+ "canvas": avatar_canvas
+ },
+ "animation": "fade_in",
+ "language": "English",
+ "speech": text,
+ "voice": voice_id,
+ "voiceType": "text",
+ "voiceProvider": voice_provider
+ }
+ ]
+ }
+
+ response = requests.post(create_video_url, headers=POST_HEADER, json=data)
+ logger.info(response.status_code)
+ logger.info(response.json())
+
+ video_id = response.json()["_id"]
+
+ if video_id:
+ # Render Video
+ render_url = f"https://apis.elai.io/api/v1/videos/render/{video_id}"
+
+ requests.post(render_url, headers=GET_HEADER)
+
+ status_url = f"https://apis.elai.io/api/v1/videos/{video_id}"
+
+ while True:
+ response = requests.get(status_url, headers=GET_HEADER)
+ response_data = response.json()
+
+ if response_data['status'] == 'ready':
+ logger.info(response_data)
+ # DOWNLOAD VIDEO
+ download_url = response_data.get('url')
+ output_directory = 'download-video/'
+ output_filename = video_id + '.mp4'
+
+ response = requests.get(download_url)
+
+ if response.status_code == 200:
+ os.makedirs(output_directory, exist_ok=True) # Create the directory if it doesn't exist
+ output_path = os.path.join(output_directory, output_filename)
+ with open(output_path, 'wb') as f:
+ f.write(response.content)
+ logger.info(f"File '{output_filename}' downloaded successfully.")
+ return output_filename
+ else:
+ logger.error(f"Failed to download file. Status code: {response.status_code}")
+ return None
+ elif response_data['status'] == 'failed':
+ print('Video creation failed.')
+ break
+ else:
+ print('Video is still processing. Checking again in 10 seconds...')
+ time.sleep(10)
\ No newline at end of file
diff --git a/modules/training_content/tips/instructions.MD b/modules/training_content/tips/instructions.MD
new file mode 100644
index 0000000..b27f720
--- /dev/null
+++ b/modules/training_content/tips/instructions.MD
@@ -0,0 +1,67 @@
+# Adding new training content
+
+If you're ever tasked with the grueling task of adding more tips from manuals, my condolences.
+
+There are 4 components of a training content tip: the tip itself, the question, the additional and the segment.
+
+The tip is the actual tip, if the manual doesn't have an exercise that relates to that tip fill this out:
+
+```json
+{
+ "category": " Read titles and subheads to predict what a passage is about. This will help you know what to expect as you read. What makes us happy? Money? Friends? A good job? Are the answers the same for everyone? According to world surveys, Mexico and Singapore are two happy countries—but their people may be happy for different reasons. There are more than 19,000 people per square mile1 in the small nation of Singapore. People on the island work an average of 70 hours per week. The country has strict laws, for example, against littering,2 graffiti,3 and even for not flushing a toilet. But according to the World Database of Happiness, Singapore is the happiest country in Asia. Why? One reason for Singapore's happiness is that the government provides the basic necessities, such as jobs and housing. There is almost no poverty, and Singapore has one of the lowest levels of unemployment in the world. The government creates jobs for people who are unemployed. It 'tops up'4 poorer people's income so everyone can have a minimum standard of living. The government also offers tax breaks5 to people who look after their aging parents. This may be why 84 percent of older people live with their children. The result is a lot of closely connected families with roughly equal standards of living. People may not all be happy about the laws, but they are generally happy with the results — they don't step in litter, the public toilets work, and the streets are safe and clean. So for Singaporeans, it seems that living in a secure, clean, and safe place may be more important than having a lot of personal freedom. As Dr. Tan Ern Ser of Singapore's Institute of Policy Studies explains, 'If you are hopeful and confident of getting what you want in life, then you are happy.' In many ways, Mexico is the opposite of Singapore. There are some parts of Mexico where people do not have a safe or secure life. Many people do not have jobs, enough food, or access to education. But, as in Singapore, most people in Mexico feel that they are happy. Why? One reason is the importance of socializing. According to psychologists, much of our happiness comes from remembering the small joys that happen throughout the day. Simple acts of socializing, such as talking with a neighbor or having dinner with friends, can greatly increase our overall happiness. People in Mexico socialize with family and friends a lot, and this adds to their happiness. But what about poverty? In Mexico, about half of the population is poor. However, most people in Mexico live near people in a similar financial situation. If your neighbor doesn't have expensive items, such as a big house or an expensive car, you don't feel the need to have those things. So money, by itself, may not be so important for happiness. What matters more is how much money you have compared to the people around you. So the question 'What makes people happy?' does not seem to have a simple answer. Work, security, safety, freedom, and socializing with friends and family can all play important roles. As the examples of Singapore and Mexico suggest, there may be no single recipe for happiness. The good news is that we can each find our own. Adapted from Thrive: Finding Happiness the Blue Zones Way by Dan Buettner, 2010 The tip suggests to read titles and subheads to predict what a passage is about. This strategy helps you form expectations and prepare your mind for the content you're about to read. Let's look at the title and subheads of our passage: Based on these, we can predict that the passage will discuss: Now, let's look at the options provided: Based on our prediction from the title and subheads, the best answer is: By reading titles and subheads: To increase your vocabulary use a dictionary to find other forms of a word, e.g. : Use the context - the words around a word - to guess the meaning of a word you don't know. The context can also help you decide the word's part of speech, e.g., noun, verb, adjective, etc. Use context to identify the bold words meaning. Then match the sentence halves to make definitions. Let's analyze each sentence and use the context to determine the meaning of the bold words. We'll then match them with their corresponding definitions. Sentence: 'If you are strict,' Context clue: The sentence implies a characteristic or behavior. Matching definition: c. Sentence: 'If you are flushing something,' Context clue: The word 'something' suggests an action being done to an object. Matching definition: e. Sentence: 'If you are unemployed,' Context clue: The prefix 'un-' often means 'not' or 'without'. Matching definition: d. Sentence: 'If you look after people,' Context clue: The phrase suggests an action done for others. Matching definition: b. Sentence: 'If you make something public,' Context clue: 'Make something' suggests changing the state or availability of information. Matching definition: a. When guessing word meanings from context: Remember to use the context - the words around a word - to guess the meaning of unfamiliar words. The context can also help you determine the word's part of speech. This approach not only aids in understanding specific words but also improves overall reading comprehension and vocabulary development. The main idea of a paragraph is the most important idea, or the idea that the paragraph is about. A good paragraph has one main idea and one or more supporting ideas. Which of these statements is the main idea of the paragraph? Researchers have found that the sunny weather in Mexico is one of the reasons that people there are happy. Mexico has many hours of sunlight, so people in Mexico get a lot of vitamin D. Vitamin D is important for overall health and well-being. Also, studies show that when people tan, they make more endorphins - chemicals in our bodies that make us feel happy. Let's break down the key points in the given paragraph: The paragraph establishes connections between: Now, let's consider each option: The correct answer is: c. Mexico gets a lot of sun, which may make people there happier. This option best captures the overall message of the paragraph, linking Mexico's sunny weather to happiness. Options a and b are supporting details rather than the main idea. The main idea of a paragraph is the most important concept that the paragraph is conveying. It's usually supported by several details or examples. In this case, the main idea is about the connection between Mexico's sunny weather and the happiness of its people. The other points about vitamin D and endorphins are supporting details that explain why sunlight might contribute to happiness. By focusing on identifying the main idea: This skill is crucial for efficient reading and understanding of various texts, from academic materials to everyday articles. Use the context to guess the meaning of new words. What do fit, obesity and recreation mean? Read the information about Denmark. Then write the main idea of the paragraph. To identify the main idea of a paragraph, focus on what the author is trying to convey overall. Look for recurring themes or the most emphasized points. In the given passage about Denmark, the main idea revolves around the connection between health and happiness. The author emphasizes how Denmark's lifestyle promotes both, making it one of the happiest countries in the world. The main idea is that Denmark's urban design and lifestyle choices promote both physical health and mental well-being, contributing to the country's high happiness ranking. Now, let's use the provided tip: By using the context, we can understand these terms and how they contribute to the main idea of health and happiness in Denmark. This skill helps in comprehending new vocabulary and reinforces the overall message of the passage. Look for key words to help you guess meaning from context. Look at the words around the bold words to guess their meanings. Then determine the best definition (a or b) of each word. A researcher who studies happiness might ask people what kinds of things make them happy. A person's long-term goals can include going to college and then medical school. It's important to live in a community that you like. Do you like the people who live near you? Does the area have good places to shop, eat, and socialize? Most happy people have a hobby, such as writing, surfing, or painting. Some people volunteer to help others who are in need. Although you may get no money for volunteering, the work can make you feel good about yourself. People feel happier when they are grateful for the things that they have. They spend less time wanting things that they don't have. A person's mood can depend on many things. For example, if someone says something nice about you, it can make you feel good. Healthy food, exercise, and friends are important for a person's well-being. In many countries, adult children support their elderly parents. The children pay their parents' bills and provide them with food and a place to live. Good health is one factor that can make you a happy person. A close group of friends is another factor. When encountering unfamiliar words, the surrounding text often provides valuable hints about their meanings. Let's explore this concept using the given examples. Key context: 'studies happiness' and 'ask people what kinds of things make them happy' These phrases suggest that a researcher is someone who investigates or studies a topic. Answer: a. someone who studies something and tries to discover facts about it Key context: 'goals can include going to college and then medical school' This implies a sequence of events over an extended period, not a physical distance. Answer: a. happening over a long time Key context: 'people who live near you' and 'area has good places to shop, eat, and socialize' These phrases describe a living environment, not just a meeting place. Answer: a. the place where you live Key context: 'Most happy people' and 'writing, surfing, or painting' These examples suggest activities done for enjoyment, not for money. Answer: b. an activity that you enjoy doing in your free time Key context: 'help others who are in need' and 'get no money for volunteering' This implies doing work without payment. Answer: a. do something without being paid Key context: 'for the things that they have' and 'spend less time wanting things that they don't have' This suggests being content with what one has, implying thankfulness. Answer: a. thankful Key context: 'can depend on many things' and 'if someone says something nice about you, it can make you feel good' This describes changing emotional states, not a physical place. Answer: b. the way you feel at a particular time Key context: 'Healthy food, exercise, and friends are important for' These factors contribute to both physical health and mental happiness. Answer: a. health and happiness Key context: 'pay their parents' bills and provide them with food and a place to live' These actions describe helping or assisting, not teaching. Answer: a. help Key context: 'Good health is one factor' and 'A close group of friends is another factor' These examples suggest things that contribute to a situation (happiness), not problems. Answer: a. one of the things that causes a situation For each word, we identified key words or phrases in the surrounding text. These context clues helped us deduce the most appropriate meaning for each term. Remember to look for key words to help you guess meaning from context. This approach enhances vocabulary, improves reading comprehension, and develops critical thinking skills. Use factor with: (adj.) contributing factor, deciding factor, important factor, key factor; (n.) risk factor. Look for clues to the main idea in the first (and sometimes second) sentence of a paragraph. Read the statements below. Determine the main idea in each pair of statements (a or b). Let's analyze each pair of statements to determine which one represents the main idea. We'll focus on which statement is more general and encompasses the overall concept. Main idea: A. You need to take care of yourself and connect with the people around you. This statement is more comprehensive, covering both self-care and social connections. Option B is more specific and could be considered a subset of A. Main idea: B. You should arrange your home so that it makes you feel happy. This statement is more general and applies to the entire home. Option A is a specific example that could fall under this broader concept. Main idea: A. You can be happy if you have enough money, but don't want money too much. This statement provides a balanced view of money's role in happiness. Option B is more specific and could be seen as a consequence of wanting money too much. Main idea: A. A good group of friends can increase your happiness. This statement is more general about the impact of friendships. Option B provides a specific statistic that supports this main idea. Main idea: A. You spend a lot of time at work, so you should like your workplace. This statement covers the overall importance of workplace satisfaction. Option B focuses on one specific aspect (the boss) and is less comprehensive. Main idea: A. The place where you live is more important for happiness than anything else. While this statement might be debatable, it's more general and encompasses the overall importance of community. Option B is a specific suggestion about community demographics. When identifying main ideas: Remember to look for clues to the main idea in the first (and sometimes second) sentence of a paragraph. In this exercise, we applied this concept to pairs of statements. This approach can help you quickly identify the central theme or main point in various types of text. When you brainstorm think of as many ideas as possible related to your topic. Don't worry about whether the ideas are good or bad - write down all the ideas you can think of. A paragraph is a group of sentences about one topic. Most paragraphs include a sentence that states the main idea of the paragraph. This sentence is called the topic sentence. Paragraphs often begin with topic sentences, but topic sentences can occur anywhere in a paragraph. A topic sentence should introduce the main idea that the paragraph will discuss or examine. Below are some examples of strong and weak topic sentences. (If the paragraph is about the ways that the government improves people's happiness, this idea should be included in the topic sentence.) (if the paragraph is about how socializing contributes to people's happiness in Mexico, this idea should be included in the topic sentence.) Let's examine each paragraph to identify the topic sentences and evaluate their strength. We'll then work on improving the weaker ones. Topic sentence: 'In Mexico, family is important.' A stronger version could be: 'In Mexico, the importance of family contributes significantly to people's happiness.' Topic sentence: 'Studies have shown that laughter may be an important factor for our happiness, and people who laugh a lot are happier.' Topic sentence: 'We spend most of our daily lives at work.' A stronger version could be: 'In Denmark, one of the world's happiest countries, people prioritize job satisfaction over salary, contributing to their overall happiness.' Crafting effective topic sentences is crucial for clear and organized writing: By mastering the art of writing strong topic sentences, you can significantly enhance the quality and effectiveness of your writing. The provided tip offers valuable guidance for writing effective topic sentences: By applying these principles, you can create more coherent and focused paragraphs, enhancing the overall quality of your writing. Use context to help you guess meaning. For example, does passionate mean a good feeling or a bad feeling? The paragraphs below are on the topic of a happy life. A I think I'm generally happy because I like most things about my life. I have a great job. I do work that I feel passionate about, and I like my coworkers. My family and friends are very supportive. Whenever I have problems, I know that my family and friends will help me. Also, my friends make me laugh a lot. In addition, I'm healthy. I don't have any illnesses, and I play fun sports such as soccer and basketball. B I think I'm generally happy. I have a great job. I do work that I feel passionate about, and I like my coworkers. I don't make a lot of money, so sometimes I have to do extra work on the weekends. I want to ask for a raise at work. My family and friends are very supportive. Whenever I have problems, I know that my family and friends will help me. Also, my friends make me laugh a lot. In addition, I'm healthy. Let's examine two paragraphs about a happy life and determine which is the first draft and which is the revision. Key points: This paragraph is well-structured and focuses solely on positive aspects. Key points: This paragraph includes both positive and negative aspects, and seems less polished. Differences: First Draft: Paragraph B Reasons: Revision: Paragraph A Reasons: In both paragraphs, the word 'passionate' is used in the context of work. Based on the overall positive tone, we can deduce that 'passionate' here means a good feeling - enthusiasm or b positive emotion towards one's work. When analyzing drafts: Remember to use context to help you guess the meaning of unfamiliar words. This skill is crucial for understanding nuances in writing and for improving your own revision process. The suffix -tion can turn some verbs into nouns, e.g. : Supporting ideas tell more about the main idea. They can do the following: When William went home and started building his windmill, a lot of people laughed at him, including his mother. They didn't think he could do it, but William was confident. He saw the Photo of the windmill in the book. That meant someone else was able to build it, so he knew he could build it, too. William was also creative. He didn't have the parts and equipment that he saw in the book's illustrations, and he couldn't buy them. So he looked for parts in junkyards. He explains, 'I found a tractor fan, shock absorber, [and] PVC pipes. Using a bicycle frame ... , I built my machine.' Let's examine William's windmill project, identifying the main idea and its supporting elements. To find the main idea, let's look at key points in the paragraph: Which of these seems to be the central focus? The paragraph emphasizes William's attitude and approach. Therefore, we can conclude that the main idea is: William was confident and creative in building his windmill. The green sentences give reasons why William was confident: 'He saw the Photo of the windmill in the book. That meant someone else was able to build it, so he knew he could build it, too.' This shows William's confidence came from seeing proof that building a windmill was possible. The blue sentences give examples of how William was creative: 'He didn't have the parts and equipment that he saw in the book's illustrations, and he couldn't buy them. So he looked for parts in junkyards.' This demonstrates William's creative problem-solving in finding alternative ways to obtain parts. The purple sentences describe how William built his windmill: 'He explains, \"I found a tractor fan, shock absorber, [and] PVC pipes.Using a bicycle frame ... , I built my machine.\"' This provides specific details about the materials William used, further illustrating his creativity and resourcefulness. Understanding how supporting ideas relate to the main idea helps improve reading comprehension. In this paragraph, we see how reasons, examples, and descriptions all work together to support the main idea of William's confidence and creativity. The suffix -able can turn some verbs into adjectives, e.g. : Use clues in titles, headings, pictures, and captions to get a quick sense of what you will read. As you read in more detail, check whether your predictions were correct. Read the passages below. What do you think is the purpose of each of the items described? Around 19 million low-birthweight babies are born every year in developing countries. These babies weigh less than 5.5 pounds (2.5 kilograms) when they're born. Low-birthweight babies are often unable to keep their body temperatures1 warm enough. Many get too cold and die. The Embrace Infant Warmer helps keep these babies warm. Developer Jane Chen says, 'Over the next five years, we hope to save the lives of almost a million babies.' In poor areas, people often have to walk several miles to get clean water. Usually, women and children have to carry heavy containers of water home every day, and it is difficult work. The Q Drum holds 13 gallons (about 50 liters) in a rolling container. With this innovation, people can easily roll the water on the ground. The pot-in-pot system is a good way to store food without using electricity. The user puts wet sand between two pots, one fitting inside the other. The water evaporates2 and keeps food cool. That helps food stay fresh longer. For example, tomatoes can last for weeks instead of just days. That way, people can buy more fresh fruits and vegetables at the market, and farmers can make more money. Scientist Hayat Sindi's device is the size of a postage stamp, and it costs just a penny. But it could save millions of lives. In many parts of the world, doctors and nurses work with no electricity or clean water. They have to send health tests to labs3 and wait weeks for results. But this little piece of paper could change that. It contains tiny holes that are filled with chemicals. These chemicals can detect health problems. A person places a single drop of blood on the paper. The chemicals in the paper change because of the blood and indicate* whether or not the person has an illness. The StarSight system is an innovation that can benefit millions of people around the world. It absorbs solar energy during the day to power streetlamps at night. The solar panels also provide wireless Internet access. The result: renewable electricity for better street lighting and faster communication. This can be extremely valuable in places where it is difficult to get electricity. Let's analyze each item based on the information provided in the passage. We'll use the titles, subheads, and opening paragraphs to make educated guesses about their purposes. Purpose: To keep low-birthweight babies warm in developing countries. Key information: Purpose: To make transporting water easier in areas with limited access to clean water. Key information: Purpose: To preserve food without electricity in areas with limited resources. Key information: Purpose: To provide quick, affordable health diagnostics in resource-limited areas. Key information: Purpose: To provide sustainable lighting and internet access in areas with limited electricity. Key information: By using clues from titles, headings, and opening paragraphs, we can quickly grasp the purpose of each innovation. This approach helps us predict and understand the main ideas before diving into detailed reading. Remember, using these contextual clues not only improves comprehension but also makes reading more efficient and engaging. To rank items in order, first decide on your criteria for ranking, e.g., how many people you think will be able to afford the item, or how many lives might be saved or improved. Which of the innovations do you think is the most important? Which is the least important? Rank them 1-5, with 1 as the most important. Around 19 million low-birthweight babies are born every year in developing countries. These babies weigh less than 5.5 pounds (2.5 kilograms) when they're born. Low-birthweight babies are often unable to keep their body temperatures1 warm enough. Many get too cold and die. The Embrace Infant Warmer helps keep these babies warm. Developer Jane Chen says, 'Over the next five years, we hope to save the lives of almost a million babies.' In poor areas, people often have to walk several miles to get clean water. Usually, women and children have to carry heavy containers of water home every day, and it is difficult work. The Q Drum holds 13 gallons (about 50 liters) in a rolling container. With this innovation, people can easily roll the water on the ground. The pot-in-pot system is a good way to store food without using electricity. The user puts wet sand between two pots, one fitting inside the other. The water evaporates2 and keeps food cool. That helps food stay fresh longer. For example, tomatoes can last for weeks instead of just days. That way, people can buy more fresh fruits and vegetables at the market, and farmers can make more money. Scientist Hayat Sindi's device is the size of a postage stamp, and it costs just a penny. But it could save millions of lives. In many parts of the world, doctors and nurses work with no electricity or clean water. They have to send health tests to labs3 and wait weeks for results. But this little piece of paper could change that. It contains tiny holes that are filled with chemicals. These chemicals can detect health problems. A person places a single drop of blood on the paper. The chemicals in the paper change because of the blood and indicate* whether or not the person has an illness. The StarSight system is an innovation that can benefit millions of people around the world. It absorbs solar energy during the day to power streetlamps at night. The solar panels also provide wireless Internet access. The result: renewable electricity for better street lighting and faster communication. This can be extremely valuable in places where it is difficult to get electricity. Let's analyze each innovation and consider potential criteria for ranking their importance. We'll focus on the impact on human lives and the scale of the problem each innovation addresses. Impact: Potentially saves lives of newborns Scale: 19 million low-birthweight babies born annually Goal: Save almost a million babies over five years Impact: Eases the burden of water transportation Scale: Affects daily life in poor areas Benefit: Improves quality of life, especially for women and children Impact: Preserves food without electricity Scale: Benefits both consumers and farmers Advantage: Extends food freshness, potentially improving nutrition and income Impact: Provides quick, affordable health diagnostics Scale: Could save millions of lives Advantage: Works in areas without electricity or clean water Impact: Provides lighting and internet access Scale: Can benefit millions of people Advantage: Uses renewable energy, improves safety and communication When ranking these innovations, consider: Based on the analysis and criteria discussed, here is a suggested ranking of the innovations from most important to least important: Infant Warmer: Due to its potential to save the lives of nearly a million newborns in developing countries. Health Detector: For providing quick and affordable health diagnostics in areas lacking basic medical infrastructure. Water Container: As it greatly eases the daily burden of water transportation, especially for women and children. Solar Wi-Fi Light: For its broad impact on providing renewable energy, lighting, and internet access. Portable Clay Cooler: Due to its economic and health benefits, though its impact is less immediate compared to other innovations. Remember, ranking these innovations involves personal judgment. The criteria you choose will significantly influence your ranking. Consider the immediate impact on saving lives, the number of people affected, and the long-term benefits to communities. Discuss your reasoning with others to gain different perspectives and potentially refine your ranking. We use the simple past tense to talk about events that began and ended in the past. To form the simple past tense of be: To form the simple past tense with other verbs: Some verbs have irregular past tense forms in affirmative statements: Let's approach this exercise step by step, focusing on the use of simple past tense: Now, let's consider how the tip about the simple past tense helps us solve this exercise: By remembering these rules and examples from the tip, we can confidently complete exercises involving the simple past tense, whether dealing with regular verbs, irregular verbs, or the verb 'to be'. Good paragraphs include supporting ideas that give information and details about the main idea. These sentences can give descriptions, reasons, or examples to help the reader clearly understand the main idea. Match each topic sentence with three supporting sentences. Write A or B for each one. Two sentences are extra. Topic Sentence A: About 900 million people need access to safe drinking water, and a simple invention may be the answer to this problem. Topic Sentence B: The solar-powered MightyLight is a safe and clean source of lighting that can provide light to millions of people around the world. Let's approach this exercise by analyzing each supporting sentence and determining which topic sentence it best supports: First, let's review the two topic sentences: Now, let's analyze each supporting sentence: Now, let's consider how the tip about supporting ideas and giving details helps us solve this exercise: By applying the concepts from the tip, we can better understand how to construct coherent paragraphs and identify the relationship between main ideas and supporting details in various texts. The prefix -inter means between or connected, e.g., interactive, interchangeable, intercontinental, international, internet, intersection, interview You make inferences when you make logical guesses about things a writer does not say directly. This is also called 'reading between the lines.' What can you infer from each statement from the reading passage? Determine the best inference. \"When television became the dominant medium in the 1950s, it changed the way families interacted.\" \"This kind of sharing changes the way we communicate. With the Internet, everyone can have a voice.\" \"It's pretty amazing that I have this little box sitting on my desk through which I can talk to any one of a billion people. And yet do any of us really use it for all the potential that's there?\" Let's analyze each statement and choose the most logical inference based on the information provided. \"When television became the dominant medium in the 1950s, it changed the way families interacted.\" Let's analyze this statement: Best inference: a. Before the 1950s, a different medium was probably dominant. This inference logically follows from the idea that TV 'became' dominant, suggesting something else was dominant before. \"This kind of sharing changes the way we communicate. With the Internet, everyone can have a voice.\" Key points to consider: Best inference: b. The Internet is a better medium of communication than TV. While not explicitly stated, the emphasis on everyone having a voice suggests the Internet offers more communication opportunities than previous media like TV. \"It's pretty amazing that I have this little box sitting on my desk through which I can talk to any one of a billion people. And yet do any of us really use it for all the potential that's there?\" Important elements: Best inference: a. There are a lot of possible uses of the Internet that most people don't really think about. This inference aligns with the speaker's wonder at the device's capabilities and the question about utilizing its full potential. When making inferences: Making inferences, or 'reading between the lines,' is a crucial skill in comprehension. It allows you to understand more than what's explicitly stated, enriching your understanding of the text. By making logical guesses based on given information, you engage more deeply with the material and often uncover the author's underlying message or intent. Skimming is quickly looking over a passage to get the general idea of what it is about. When we skim, we don't read every word. Instead, we look for important words or chunks (pieces) of information. For example, we look for things such as names, dates, and repeated words. We often skim online news sites to find out the most important news of the day, blogs to choose which posts we want to read, and magazines to decide what we want to read about. But skimming can also help with academic reading. If you skim a passage before you read it carefully, you can get an idea of what the passage is about and how it is organized. This can help you understand the passage more easily when you do read it carefully, because you know what to expect. For many of us, visiting Facebook, Twitter, or other online social networks has become a regular part of our daily activities. However, we may not have noticed the significant ways that social networks have changed our lives. First of all, they have changed the way we get our news. These days, we often only read the news stories that our friends post online. Second, our relationships have changed. Now, it's easier to keep in touch with new friends and find old friends that we haven't seen for a long time. Third, many of us share thoughts with our online friends that we used to keep private. For example, in an instant, we can tell all our online friends that we think we just failed an exam. Are these changes good or bad? That's for each person to decide. But one thing is certain — as more people join social networks and as new networks continue to appear, we can expect more changes in the future. Let's apply the skimming technique to identify the main idea of the given paragraph. From the highlighted words, we can gather: Based on our skimming, the main idea appears to be: Social networks have significantly changed various aspects of our lives, including how we get news, maintain relationships, and share information. Now, let's read the entire paragraph carefully to confirm our initial understanding. After reading the full paragraph, we can confirm that our initial understanding was correct. The main idea indeed revolves around how social networks have changed various aspects of our lives, including: The paragraph also touches on the ongoing nature of these changes, suggesting more to come in the future. As we've seen, skimming allowed us to quickly grasp the main idea of the paragraph before reading it in detail. This technique is particularly useful when: By focusing on key words, sentence beginnings, and repeated phrases, we can efficiently extract the core message of a text, saving time and improving overall comprehension. The suffix -al often indicates that a word is an adjective, e.g., virtual, tribal, environmental, cultural, structural, traditional, influential, economical. Use environmentally with adjectives, for example, environmentally responsible, environmentally sound, environmentally friendly, environmentally aware, and environmentally sensitive. When you scan for key details, first consider what kind of information you need to scan for. Read the sentences below. What kind of information is missing in each one? Match the kinds of information (a-h) with the sentences (1-8). Then read the passage to complete each sentence. Let's approach this exercise by identifying the type of information needed for each sentence, then scanning the passage for specific details. Let's determine what kind of information is missing for each sentence: Now, let's scan the passage for each type of information we've identified: Let's fill in all the blanks with the information we've found: Scanning for key details is an essential reading skill that allows you to quickly find specific information in a text. This technique is particularly useful when: By first considering what kind of information you need to scan for, you can focus your attention on specific types of words or phrases, making your reading more efficient and effective. Use the present perfect tense to talk about something that happened several times in the past, something that happened at an unspecified time in the past, something that began in the past and continues to the present, or when the time in the past is not important. To form the present perfect, use have or has and the past participle of a main verb. Remember to use the simple past to talk about something that happened at a specific time in the past. Let's explore how to use the present perfect tense to complete these sentences. We'll focus on the structure and usage of this tense. The present perfect tense is formed using: 'Social media (change) our lives in many ways.' Let's apply the present perfect: Answer: Social media have changed our lives in many ways. 'Michael Wesch (use) social media in several of his classes.' Applying the present perfect: Answer: Michael Wesch has used social media in several of his classes. 'My friend (meet) a lot of great people on social networking sites.' Applying the present perfect: Answer: My friend has met a lot of great people on social networking sites. 'A lot of old friends (find) me online.' Applying the present perfect: Answer: A lot of old friends have found me online. The present perfect tense is particularly useful for discussing: By mastering this tense, you can effectively communicate about ongoing situations and past experiences that are relevant to the present, adding depth and context to your writing and speech. Formal paragraphs often have concluding sentences. A concluding sentence is the last sentence of a paragraph. It ties the paragraph together. Concluding sentences can state an opinion (either the author's, or a person mentioned in the paragraph), make a prediction, or ask a question for the reader to think about. They can also restate, or summarize, the main idea of a long or complex paragraph. Everywhere you look these days, people are on their phones, tablets, or computers. Some are talking, some are texting, and some are surfing the Web. It seems like people communicate with each other on social networks and by email more than they do in person. According to Dan Buettner, in his book Thrive, people should spend six to seven hours a day socializing with friends and family in order to increase their happiness. Socializing online probably doesn't have the same effect as socializing in person does. In my opinion, reading the news online is better than reading a newspaper or watching the news on TV. One way that it is better is that readers can comment on articles that they read online. They can have conversations with other readers, and sometimes even with the writer. Also, online articles provide links to additional information. For example, if an article mentions a name, the name is often linked to another article with more information about that person. Finally, online news articles can be updated if something changes during the day. For example, an online news site might post an article about a dangerous storm in the morning. If more information about the storm becomes available later that day, it can be added to the article. Let's explore how to write effective concluding sentences for the given paragraphs. We'll focus on creating predictions and restating main ideas. The first paragraph discusses the prevalence of digital communication and its potential impact on happiness. To write a prediction, we need to consider the future implications of the information provided. A good prediction for this paragraph might be: 'If this trend continues, we may see a decrease in overall happiness as people spend less time interacting face-to-face.' This prediction: If this trend continues, we may see a decrease in overall happiness as people spend less time interacting face-to-face. The second paragraph compares online news to traditional news sources. To restate the main idea, we need to summarize the key points discussed in the paragraph. A good restatement of the main idea could be: 'In conclusion, online news offers distinct advantages over traditional media, including interactive features, additional resources, and real-time updates.' This concluding sentence: In conclusion, online news offers distinct advantages over traditional media, including interactive features, additional resources, and real-time updates. Concluding sentences play a crucial role in formal writing. They serve to: By mastering the art of writing effective concluding sentences, you can significantly improve the coherence and impact of your paragraphs. For an opinion paragraph, you can use these phrases in your topic sentence: You can also use one of them in your concluding sentence if you end the paragraph with a statement of your opinion.Read the title and the subheads of the reading passage. What do you think the reading passage is about?
Is there a Recipe for Happiness?
Safety and Security
Friends and Neighbors
A Mixed Recipe?
Understanding the Tip
Applying the Tip
Answering the Question
Benefits of the Tip
",
+ "id": "c7e322ad-71e5-4aef-bcff-433fbe33e8c7",
+ "verified": true
+ }
+ ]
+ },
+ {
+ "page": 7,
+ "tips": [
+ {
+ "category": "CT Focus",
+ "embedding": "Use the context - the words around a word - to guess the meaning of a word you don't know. The context can also help you decide the word's part of speech.",
+ "text": "Use the context - the words around a word - to guess the meaning of a word you don't know. The context can also help you decide the word's part of speech, e.g., noun, verb, adjective, etc.",
+ "html": "Guessing Meaning from Context
Guessing Meaning from Context
1. Strict
2. Flushing
3. Unemployed
4. Look after
5. Public
Key Strategy
Helpful Tip
Identifying the Main Idea
",
+ "additional": "Analyzing the Paragraph
Identifying Key Relationships
Evaluating the Options
Selecting the Main Idea
Understanding Main Ideas
Applying This Approach
Identifying the Main Idea.
Identifying the Main Idea
Key Points:
Applying the Tip:
Use the context to guess the meaning of new words. Let's examine fit, obesity, and recreation.Building Vocabulary
Understanding Context Clues
1. Researcher
2. Long-term
3. Community
4. Hobby
5. Volunteer
6. Grateful
7. Mood
8. Well-being
9. Support
10. Factor
Key Strategy
Tip Reminder
Identifying Main Ideas
",
+ "segments": [
+ {
+ "html": "Category Option A Option B Self You need to take care of yourself and connect with the people around you. Focus on your interests and talents and meet people who are like you. Home It's a good idea to paint your living room yellow. You should arrange your home so that it makes you feel happy. Financial Life You can be happy if you have enough money, but don't want money too much. If you waste money on things you don't need, you won't have enough money for things that you do need. Social Life A good group of friends can increase your happiness. Researchers say that a happy friend can increase our mood by nine percent. Workplace You spend a lot of time at work, so you should like your workplace. Your boss needs to be someone you enjoy working for. Community The place where you live is more important for happiness than anything else. Live around people who have the same amount of money as you do. Identifying Main Ideas
1. Self
2. Home
3. Financial Life
4. Social Life
5. Workplace
6. Community
Key Strategy
Helpful Tip
Writing a Topic Sentence
Strong Topic Sentences
One reason that Singaporeans are happy is that the government provides the basic necessities, such as jobs and housing.
People in Mexico socialize a lot, and this may contribute to their happiness.
Weak Topic Sentences
Singaporeans are happy.
People in Mexico socialize a lot.
Identify the topic sentence in each paragraph. One of the topic sentences is stronger than the others.
Rewrite the two topic sentences that are weak.
Analyzing Topic Sentences in Paragraphs
Paragraph 1
Paragraph 2
Paragraph 3
The Importance of Strong Topic Sentences
Applying the Topic Sentence Tip
Analyzing Writing Drafts
Paragraph A
Paragraph B
Comparing the Paragraphs
Identifying First Draft and Revision
Understanding 'Passionate'
Key Takeaway
",
+ "id": "4445562b-5ab9-4284-b32e-4b41407401aa",
+ "standalone": true,
+ "verified": true
+ }
+ ]
+ },
+ {
+ "page": 28,
+ "tips": [
+ {
+ "category": "Reading Skill",
+ "embedding": "Identifying Supporting Ideas\n\nSupporting ideas tell more about the main idea. They can do the following:\n\ndescribe give reasons give examples",
+ "text": "Identifying Supporting Ideas\n\nSupporting ideas tell more about the main idea. They can do the following:\n\ndescribe give reasons give examples\n\nLook at the paragraph from the reading. What does each colored sentence do?\n\nWhen William went home and started building his windmill, a lot of people laughed at him, including his mother. They didn't think he could do it, but William was confident.He saw the Photo of the windmill in the book. That meant someone else was able to build it, so he knew he could build it, too. William was also creative. He didn't have the parts and equipment that he saw in the book's illustrations, and he couldn't buy them. So he looked for parts in junkyards. He explains, 'I found a tractor fan, shock absorber, [and] PVC pipes. Using a bicycle frame ... , I built my machine.'\n\nThe main idea of the paragraph is that William was confident and creative in building his windmill. The green sentences give reasons why William was confident. The blue sentences give examples of how William was creative. And the purple sentences describe how he did it.",
+ "html": "Identifying Supporting Ideas
",
+ "id": "693c8547-d2fa-45e1-803a-ff979c893b04",
+ "verified": true,
+ "standalone": false,
+ "exercise": {
+ "question": "Look at the paragraph from the reading. What does each colored sentence do?
Analyzing the Paragraph
Identifying the Main Idea
Supporting Ideas: Confidence
Supporting Ideas: Creativity
Supporting Ideas: Description
Conclusion
",
+ "id": "1a15adf5-50cf-44e6-8a42-80144bfb70eb",
+ "standalone": true,
+ "verified": true
+ }
+ ]
+ },
+ {
+ "page": 31,
+ "tips": [
+ {
+ "category": "Strategy",
+ "embedding": "Use clues in titles, headings, pictures, and captions to get a quick sense of what you will read. As you read in more detail, check whether your predictions were correct.",
+ "text": "Use clues in titles, headings, pictures, and captions to get a quick sense of what you will read. As you read in more detail, check whether your predictions were correct.",
+ "html": "Predicting
",
+ "additional": "Infant Warmer
Water Container
Portable Clay Cooler
Health Detector
Solar Wi-Fi Light
Predicting Item Purposes
1. Infant Warmer
2. Water Container
3. Portable Clay Cooler
4. Health Detector
5. Solar Wi-Fi Light
Key Takeaway
Critical Thinking: Ranking and Justifying
",
+ "additional": "Infant Warmer
Water Container
Portable Clay Cooler
Health Detector
Solar Wi-Fi Light
Ranking Innovations
1. Infant Warmer
2. Water Container
3. Portable Clay Cooler
4. Health Detector
5. Solar Wi-Fi Light
Ranking Considerations
Ranking the Innovations
Final Thoughts
Review of the Simple Past
According to historians, a man named Ts'ai Lun invented paper in China around AD 105.
Before that time, people didn't have inexpensive material to write on.
People wrote on things such as silk and clay, which were expensive and inconvenient.Use the simple past tense of the verbs in parentheses to complete the sentences.
",
+ "segments": [
+ {
+ "html": "Supporting the Main Idea and Giving Details
Identifying Supporting Ideas
",
+ "segments": [
+ {
+ "html": "
This clearly supports Topic A about safe drinking water.
This is general advice and doesn't directly support either topic sentence. It's an extra sentence.
This directly supports Topic B about the MightyLight.
This provides details about the LifeStraw, supporting Topic A.
This describes the MightyLight's portability, supporting Topic B.
While related to lighting, this doesn't directly support either topic sentence. It's the second extra sentence.
This provides information about the MightyLight's longevity, supporting Topic B.
This provides an example of the LifeStraw's use in a disaster situation, supporting Topic A.Making Inferences
",
+ "segments": [
+ {
+ "html": "Making Inferences from Text
Statement 1
Statement 2
Statement 3
Making Inferences: Key Strategies
The Value of Inference
Skimming for Gist
Skim the paragraph below. Read only the darker words. What do you think is the main idea of the paragraph?
For many of us, visiting Facebook, Twitter, or other online social networks has become a regular part of our daily activities. However, we may not have noticed the significant ways that social networks have changed our lives. First of all, they have changed the way we get our news. These days, we often only read the news stories that our friends post online. Second, our relationships have changed. Now, it's easier to keep in touch with new friends and find old friends that we haven't seen for a long time. Third, many of us share thoughts with our online friends that we used to keep private. For example, in an instant, we can tell all our online friends that we think we just failed an exam. Are these changes good or bad? That's for each person to decide. But one thing is certain — as more people join social networks and as new networks continue to appear, we can expect more changes in the future.",
+ "additional": "Now read the whole paragraph carefully. Were you correct about the main idea?
Skimming for the Main Idea
Key Points from Skimming
Identifying the Main Idea
Verifying the Main Idea
Confirming Our Analysis
The Value of Skimming
Identifying Key Details
",
+ "additional": "Scanning for Key Details
Step 1: Identify Information Types
Step 2: Scan for Specific Details
Step 3: Fill in the Blanks
The Value of Scanning for Key Details
Language for Writing: The Present Perfect Tense
Use the present perfect tense of the verbs in parentheses to complete the sentences (1-4).
",
+ "segments": [
+ {
+ "html": "Understanding the Present Perfect Tense
Structure of Present Perfect
Sentence 1
Sentence 2
Sentence 3
Sentence 4
The Value of Using Present Perfect
Writing a Concluding Sentence
Write a concluding sentence for each paragraph below.
",
+ "segments": [
+ {
+ "html": "Writing Concluding Sentences
Paragraph 1: Writing a Prediction
Paragraph 2: Restating the Main Idea
The Importance of Concluding Sentences
Fill in the blanks then write a draft of the paragraph.
Topic: Has online social networking helped us or harmed us?
Topic sentence
Supporting Idea (one way social networking has helped or harmed us)
Let's work through creating an opinion paragraph about whether online social networking has helped or harmed us. We'll break down the process step-by-step.
Start with a clear statement of your opinion. For this example, let's argue that social networking has helped us:
'I believe that online social networking has significantly improved our lives in several ways.'
This topic sentence:
I believe that online social networking has significantly improved our lives in several ways.
" + } + ] + }, + { + "html": "Provide a main way that social networking has helped us:
'One way social networking has helped us is by facilitating long-distance connections.'
Details to support this idea:
One way social networking has helped us is by facilitating long-distance connections.
" + }, + { + "target": "question", + "targetId": "details-1", + "position": "replace", + "html": "Provide another way that social networking has helped us:
'Another benefit of social networking is its ability to spread information quickly.'
Details to support this idea:
Another benefit of social networking is its ability to spread information quickly.
" + }, + { + "target": "question", + "targetId": "details-2", + "position": "replace", + "html": "Wrap up your paragraph by restating your opinion:
'In my opinion, these benefits of online social networking have greatly enhanced our ability to connect and stay informed, making it a positive force in our lives.'
This concluding sentence:
In my opinion, these benefits of online social networking have greatly enhanced our ability to connect and stay informed, making it a positive force in our lives.
" + } + ] + }, + { + "html": "Now, let's combine all the elements into a cohesive paragraph:
I believe that online social networking has significantly improved our lives in several ways. One way social networking has helped us is by facilitating long-distance connections. People can easily stay in touch with friends and family across the globe, and it allows for sharing of life updates, photos, and experiences in real-time. Another benefit of social networking is its ability to spread information quickly. Important news and updates can reach a large audience rapidly, and it enables the organization of events and movements more efficiently. In my opinion, these benefits of online social networking have greatly enhanced our ability to connect and stay informed, making it a positive force in our lives.
" + } + ] + }, + { + "html": "Using phrases like 'I think...', 'I believe...', and 'In my opinion...' in your topic and concluding sentences is beneficial because:
By incorporating these phrases, you make your writing more engaging and your opinions more explicit, which is crucial in argumentative or persuasive writing.
Make inferences about the paragraph. What can you tell about the writer? Does he or she use the Internet a lot? Do you think this person is generally honest or dishonest?
", + "id": "b66691d1-7cd0-4e12-bc7f-2bd866190d34", + "verified": true, + "standalone": false, + "exercise": { + "question": "There are many views about online music sharing, but in my opinion, people should pay for music instead of getting it free online. I have gotten free music online in the past, and I didn't really think about whether or not it was fair to the musician. Then I thought about how musicians make money. They earn money by giving concerts and selling CDs. I realized that when I get music free online, I'm stealing from the people who made the music. Musicians work hard to write and perform songs. If people want to enjoy those songs, they should pay for them. We don't expect other kinds of professionals to work for free. For example, we don't expect doctors to treat us for free or teachers to teach for free. If musicians don't get paid for their work, they might not be able to continue making music. They might have to find other work in order to make money. Without musicians, where would we get our music?
There have been a lot of disagreements about online music sharing. I have gotten free music online in the past, and I didn't really think about whether or not it was fair to the musician. Then I thought about how musicians make money. They earn money by giving concerts and selling CDs. I realized that when I get music free online, I'm stealing from the people who made the music. That's when I stopped sharing music online. Now I always pay for music. I feel the same way about sharing movies online. Even though movie studios make millions of dollars, I still don't think it's right to get movies for free. Musicians work hard to write and perform songs. If musicians don't get paid for their work, they might not be able to continue making music. They might have to find other work in order to make money.
Let's examine two paragraphs about online music sharing to determine which is the first draft and which is the revision. We'll look at the structure, content, and overall coherence of each paragraph.
Let's start by examining paragraph A:
These characteristics suggest that paragraph A is likely the revision.
Now, let's look at paragraph B:
These characteristics suggest that paragraph B is likely the first draft.
Based on our analysis:
Now, let's make some inferences about the writer based on these paragraphs:
Making inferences about a writer based on their text is beneficial because:
By practicing this skill, readers become more discerning and can better understand the context and subtext of what they read.
Use reduce with nouns: reduce costs, reduce crime, reduce spending, reduce the number of (something), reduce waste; you can also use reduce with adverbs: dramatically reduce, greatly reduce, significantly reduce.
", + "id": "5a218540-cf72-4f17-adb6-380a4bdcdd8a", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 67, + "tips": [ + { + "category": "CT Focus", + "embedding": "In a problem-solution passage, a writer usually describes a problem first and then provides possible solutions.", + "text": "In a problem-solution passage, a writer usually describes a problem first and then provides possible solutions. As you read, ask yourself: Does the writer provide enough information to show why the problem is real? Is it clear how the solutions match the problem(s)?", + "html": "In a problem-solution passage, a writer usually describes a problem first and then provides possible solutions. As you read, ask yourself: Does the writer provide enough information to show why the problem is real? Is it clear how the solutions match the problem(s)?
", + "id": "b1befaec-0307-4d59-bd08-de2f64a6182f", + "verified": true, + "standalone": false, + "exercise": { + "question": "1.
2.
3.
Does the writer provide enough supporting information to show that the problem of overfishing is real? If so, how does he or she do this?
How well do the solutions help to address the problem? Has the writer given enough information so the reader can see how they might work?
Throughout history, people have thought of the ocean as a diverse and limitless source of food. Yet today there are clear signs that the oceans have a limit. Most of the big fish in our oceans are now gone. One major factor is overfishing. People are taking so many fish from the sea that species cannot replace themselves. How did this problem start? And what is the future for fish?
For centuries, local fishermen caught only enough fish for themselves and their communities. However, in the mid-20th century, people around the world became interested in making protein-rich foods, such as fish, cheaper and more available. In response to this, governments gave money and other help to the fishing industry.
As a result, the fishing industry grew. Large commercial fishing1 companies began catching enormous quantities of fish for profit and selling them to worldwide markets. They started using new fishing technologies that were designed to catch more fish. Modern sonar2 to locate fish, and huge nets to catch them, made this easier. Modern technology allowed these companies to catch more fish than local fishermen.
In 2003, a scientific report estimated that only 10 percent remained of the large ocean fish populations that existed before commercial fishing began. Specifically, commercial fishing has greatly reduced the number of large predatory fish3, such as cod and tuna. Today, there are plenty of fish in the sea, but they mostly just the little ones. Small fish, such as sardines and anchovies, have more than doubled in number — largely because there are not enough big fish to eat them.
This trend is a problem because ecosystems need predators to be stable. Predators are necessary to weed out the sick and weak individuals. Without this weeding out, or survival of the fittest, ecosystems become less stable. As a result, fish are less able to survive difficulties such as pollution, environmental change, or changes in the food supply.
A study published in 2006 in the journal Science made a prediction: If we continue to overfish the oceans, most of the fish that we catch now—from tuna to sardines—will largely disappear by 2050. However, the researchers say we can prevent this situation if we restore ocean's biodiversity4.
Scientists say there are a few ways we can do this. First, commercial fishing companies can catch fewer fish. This will increase the number of large predatory fish. Another way to improve the biodiversity of the oceans is to develop aquaculture—fish farming. Growing fish on farms may take the pressure off wild-caught fish. This gives species of fish a chance to restore their numbers. Finally, we can make good choices about what we eat. For example, we can avoid eating species of fish that are threatened. If we are careful today, we can still look forward to a diverse and healthy ocean.
", + "segments": [ + { + "html": "Let's examine the passage 'Where Have All the Fish Gone?' to identify the main problem and its proposed solutions. We'll also evaluate how well the author presents the problem and solutions.
The main problem described in the passage is:
Overfishing is depleting ocean fish populations, particularly large predatory fish, leading to an imbalance in marine ecosystems.
Overfishing is depleting ocean fish populations, particularly large predatory fish, leading to an imbalance in marine ecosystems.
" + } + ] + }, + { + "html": "The passage proposes three main solutions:
The writer provides substantial information to show that overfishing is a real problem:
Yes, the writer provides sufficient information. They use historical context, scientific data, ecosystem explanations, and future predictions to illustrate the severity of overfishing.
" + } + ] + }, + { + "html": "The solutions are well-matched to the problem:
However, the writer could provide more details on implementation and potential challenges of these solutions.
The solutions address the problem well, but more information on implementation and potential challenges would strengthen the argument. The writer provides a good overview but could elaborate on how these solutions would work in practice.
" + } + ] + }, + { + "html": "Analyzing problem-solution passages is beneficial because:
By asking questions about the problem's presentation and the effectiveness of proposed solutions, readers can better understand and critically evaluate the information presented in such passages.
mini = very small; minimal, minimum, minimize, miniature, minibus
", + "id": "7a6588a6-e35f-4f4a-9e2d-e168e23188c8", + "verified": true, + "standalone": true + }, + { + "category": "Word Partners", + "embedding": "Use informed and inform.", + "text": "Use the adjective informed with nouns: informed choice, informed decision. Use the verb inform with nouns: inform parents, inform the police, inform readers, inform someone in writing, inform someone of something.", + "html": "Use the adjective informed with nouns: informed choice, informed decision. Use the verb inform with nouns: inform parents, inform the police, inform readers, inform someone in writing, inform someone of something.
", + "id": "1b011f9a-3a50-43a2-b532-75db7fba001b", + "verified": true, + "standalone": true + } + ] + } + ] + }, + { + "unit": 5, + "title": "Memory and Learning", + "pages": [ + { + "page": 84, + "tips": [ + { + "category": "Word Link", + "embedding": "The suffix -ize forms verbs that mean to cause or become something.", + "text": "The suffix -ize forms verbs that mean to cause or become something, e.g., visualize, memorize, internalize, minimize.", + "html": "The suffix -ize forms verbs that mean to cause or become something, e.g., visualize, memorize, internalize, minimize.
", + "id": "0d263ead-e16a-434e-a04e-d031aef2dbf1", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 88, + "tips": [ + { + "category": "Reading Skill", + "embedding": "Identifying Cause and Effect\n\nA cause is something that makes another event happen. The resulting event is the effect. Recognizing causes and effects can help you better understand a reading passage. You can sometimes identify cause and effect relationships by finding certain connecting or signal words. These include because, so, if, then, therefore, as a result, and by verb + -ing.", + "text": "Identifying Cause and Effect\n\nA cause is something that makes another event happen. The resulting event is the effect. Recognizing causes and effects can help you better understand a reading passage. Look at the sentence from the reading. Does the underlined portion show a cause or an effect?\nIf you think of a very familiar place, and visualize certain things in that place, you can keep those things in your memory for a long time.\nThe underlined portion shows the effect. Visualizing things within a familiar place is the cause. Keeping memories for a long time is the effect.\n\nYou can sometimes identify cause and effect relationships by finding certain connecting or signal words. These include because, so, if, then, therefore, as a result, and by verb + -ing.\nWe don't have to remember phone numbers now because we can store them on smartphones.\nI enter my email password three times a day, so I remember it easily.\n", + "html": "A cause is something that makes another event happen. The resulting event is the effect. Recognizing causes and effects can help you better understand a reading passage. Look at the sentence from the reading. Does the underlined portion show a cause or an effect?
If you think of a very familiar place, and visualize certain things in that place, you can keep those things in your memory for a long time.
The underlined portion shows the effect. Visualizing things within a familiar place is the cause. Keeping memories for a long time is the effect.
You can sometimes identify cause and effect relationships by finding certain connecting or signal words. These include because, so, if, then, therefore, as a result, and by verb + -ing.
We don't have to remember phone numbers now because we can store them on smartphones.", + "id": "ab708cf8-449b-4e4a-af4e-a2510f04839d", + "verified": true, + "standalone": false, + "exercise": { + "question": "
I enter my email password three times a day, so I remember it easily.
Techniques for remembering things like lists, numbers, and facts, are called mnemonic devices. For example, people often use things like poems, pictures, or movements because it is easier to remember stories, images, or actions than plain facts and lists.
Acronyms are one type of mnemonic. For example, it may be hard to remember the colors of the rainbow in the order that they appear. Someone therefore made an acronym for this: ROY G BIV. The first letters in the acronym are the first letters in the names for the colors: red, orange, yellow, green, blue, indigo, and violet. The name Roy G. Biv is meaningless, but it's short, so it is easier to remember than the list.
English spelling rules can also be difficult to learn, so some students use rhymes to help them remember the rules. By learning \"i before e except after c\" (where you hear /ee/), students of English remember the spelling of words like niece and receipt.
", + "segments": [ + { + "html": "Let's analyze the given text to identify cause-effect relationships. We'll go through the passage step by step, looking for connections between events or ideas.
The first paragraph introduces mnemonic devices:
The second paragraph discusses using acronyms:
There's another cause-effect relationship here:
The final paragraph talks about using rhymes for spelling:
And another relationship:
We've identified 5 cause-effect relationships in total:
Recognizing cause and effect relationships helps us understand the logic and structure of a text. It allows us to see how different ideas or events are connected, which can improve our comprehension and critical thinking skills.
In this exercise, identifying these relationships helped us understand:
As mentioned in the tip, certain words can signal cause-effect relationships. In our text, we can find a few examples:
Recognizing these signal words can make it easier to identify cause-effect relationships in future readings.
Use stress with: (n.) effects of stress, work-related stress; (adj.) emotional stress, mental stress, physical stress; (v.) cause stress, cope with stress, deal with stress, experience stress, reduce stress.
", + "id": "535453f2-96d6-4845-af23-234a3edba570", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 91, + "tips": [ + { + "category": "Word Link", + "embedding": "The prefix trans- means 'moving across or changing from one thing to another'.", + "text": "The prefix trans- means 'moving across or changing from one thing to another', e.g., transfer, transition, translate, transform.", + "html": "The prefix trans- means 'moving across or changing from one thing to another', e.g., transfer, transition, translate, transform.
", + "id": "99166b16-a227-4abd-9b3c-a7ca0aaa448d", + "verified": true, + "standalone": true + }, + { + "category": "Strategy", + "embedding": "Use key words in titles and subheads to help you predict what a passage is about.", + "text": "Use key words in titles and subheads to help you predict what a passage is about.", + "html": "Use key words in titles and subheads to help you predict what a passage is about.
", + "id": "bb189a09-f9b9-4f8e-92b2-b77f6cb0f8a9", + "verified": true, + "standalone": false, + "exercise": { + "question": "1. I think the reading passage titled \"Train Your Brain!\" is about how ...
2. I think the reading passage titled \"Sleep and Memory\" is about how ...
Is there anything you can do to have a better memory? Research shows that mental and physical exercise and lifestyle choices can affect memory. In fact, many experts agree it is possible to improve your memory.
Here are some tips:
Recent research shows that stress is bad for the brain. In fact, one study connects worrying with memory loss. Therefore, if you can avoid stress in your life, you may also improve your memory. Relaxation techniques like yoga are one way to reduce stress.
Can brainteasers1 like sudoku puzzles improve memory? Some scientists say that mental activity might help memory. Puzzles, math problems, even reading and writing, can probably all benefit the brain.
\"Poor sleep before or after learning makes it hard to encode2 new memories\", says Harvard University scientist Robert Stickgold. One study shows that by getting a good night's sleep, people remember a motor skill (such as piano playing) 30 percent better.
Your brain can benefit from a healthy diet, just like the rest of your body. Foods that have antioxidants,3 such as blueberries, are good for brain cells. This helps memory.
Many people think that sleep must be important for learning and memory, but until recently there was no proof. Scientists also believe the hippocampus plays a role in making long-term memories, but they weren't sure how. Now they understand how the process happens—and why sleep is so important.
A research team at Rutgers University recently discovered a type of brain activity that happens during sleep. The activity transfers new information from the hippocampus to the neocortex. The neocortex stores long-term memories. The researchers call the transferring activity \"sharp wave ripples\", because the transferring activity looks like powerful, short waves. The brain creates these waves in the hippocampus during the deepest levels of sleep.
The Rutgers scientists discovered the wave activity in a 2009 study using rats. They trained the rats to learn a route in a maze. Then they let the rats sleep after the training session. They gave one group of sleeping rats a drug. The drug stopped the rats' wave activity. As a result, this group of rats had trouble remembering the route. The reason? The new information didn't have a chance to leave the hippocampus and go to the neocortex.
The experiment explains how we create long-term memories. The wave activity transfers short-term memories from the hippocampus to the neocortex. Then the neocortex turns the sharp wave ripples into long-term memories. Researcher György Buzsáki says this is \"why certain events may only take place once in the waking state and yet can be remembered for a lifetime.\"
The Rutgers study is important because it proves the importance of sleep for learning and memory. It also finally explains how the brain makes long-term memories.
Let's examine the titles and subheads of the given passages to predict their content. We'll focus on identifying key words that give us clues about the main ideas.
Key words in the title and subheads:
These key words suggest that the passage is about different ways to improve brain function and memory.
Based on these key words, we can complete the first sentence:
1. I think the reading passage titled \"Train Your Brain!\" is about how to improve memory and brain function through various lifestyle choices and activities.
Key words in the title and subheads:
These key words indicate that the passage explores the relationship between sleep and memory formation, particularly how sleep affects long-term memory.
Based on these key words, we can complete the second sentence:
2. I think the reading passage titled \"Sleep and Memory\" is about how sleep plays a crucial role in forming and consolidating long-term memories.
Identifying key words in titles and subheads is a powerful strategy for predicting and understanding the content of a passage. This approach offers several benefits:
By using this technique, we were able to quickly grasp the main ideas of both passages without reading the full text. This skill is particularly useful when you need to quickly assess whether a text is relevant to your needs or when you want to prepare your mind for more detailed reading.
Use key words in questions, especially nouns and noun phrases, to help you scan for the most relevant parts of a text.
", + "id": "e2f954f0-1961-4647-aecc-d0ccb28b1e9e", + "verified": true, + "standalone": false, + "exercise": { + "question": "The main idea of \"Sleep and Memory\" is ____________________________
Many people think that sleep must be important for learning and memory, but until recently there was no proof. Scientists also believe the hippocampus plays a role in making long-term memories, but they weren't sure how. Now they understand how the process happens—and why sleep is so important.
A research team at Rutgers University recently discovered a type of brain activity that happens during sleep. The activity transfers new information from the hippocampus to the neocortex. The neocortex stores long-term memories. The researchers call the transferring activity \"sharp wave ripples\", because the transferring activity looks like powerful, short waves. The brain creates these waves in the hippocampus during the deepest levels of sleep.
The Rutgers scientists discovered the wave activity in a 2009 study using rats. They trained the rats to learn a route in a maze. Then they let the rats sleep after the training session. They gave one group of sleeping rats a drug. The drug stopped the rats' wave activity. As a result, this group of rats had trouble remembering the route. The reason? The new information didn't have a chance to leave the hippocampus and go to the neocortex.
The experiment explains how we create long-term memories. The wave activity transfers short-term memories from the hippocampus to the neocortex. Then the neocortex turns the sharp wave ripples into long-term memories. Researcher György Buzsáki says this is \"why certain events may only take place once in the waking state and yet can be remembered for a lifetime.\"
The Rutgers study is important because it proves the importance of sleep for learning and memory. It also finally explains how the brain makes long-term memories.
", + "segments": [ + { + "html": "Let's analyze the passage 'Sleep and Memory' to answer the questions. We'll focus on key words and phrases to help us locate the relevant information.
To identify the main idea, let's look for recurring themes throughout the passage:
Based on these key points, we can conclude that the main idea is:
Let's look for information about the Rutgers University team's discovery:
To understand the transfer of information, let's focus on 'sharp wave ripples':
To understand why some rats had trouble remembering the route:
Using key words, especially nouns and noun phrases, to scan for relevant information is an effective strategy because:
By using this technique, we were able to efficiently extract the necessary information from the 'Sleep and Memory' passage to answer the questions. This skill is particularly useful when dealing with longer texts or when you need to quickly find specific information.
Use by with a gerund to say how to do something. By + gerund forms can appear at the beginning or at the end of a sentence. Use a comma when they appear at the beginning of a sentence.
By + gerund expresses how to reach a result:
write new words on cards / a person can retain them better
give rats drugs / the scientists stopped their brain waves
you can improve your memory / do puzzles
Let's practice using 'by + gerund' to combine sentence parts. This structure helps us express how to achieve a particular result.
To combine these parts, we'll use the gerund form of 'write' after 'by'. We can structure this sentence in two ways:
Both forms are correct. The second form uses a comma after the 'by + gerund' phrase.
For this sentence, we'll use the gerund form of 'give' after 'by'. Again, we have two possible structures:
Both are correct, with the second form using a comma after the 'by + gerund' phrase.
For this sentence, we'll use the gerund form of 'do' after 'by'. Here are our two options:
Both forms are correct, with the second form using a comma after the 'by + gerund' phrase.
Using 'by + gerund' is beneficial for several reasons:
By mastering this structure, you can enhance your writing and speaking skills, making your English more natural and expressive. Remember, practice is key to becoming comfortable with using 'by + gerund' in various contexts.
Using an outline helps you to organize your main idea, supporting ideas, and examples and/or details. The examples might be a list of reasons, or steps in a process. An outline is like a map because it gives you something to follow. For example, you can use an outline to develop your ideas in a descriptive paragraph.
Don't write complete sentences in an outline, except for your topic sentence.
", + "id": "4834e060-6c94-4f81-b8db-15a2da92b831", + "verified": true, + "standalone": false, + "exercise": { + "question": "__ (topic sentence)
memorize as steps __ (supporting idea 1)
write names, directions __ (details)
repeat __ (details)
create mental picture __ (supporting idea 2)
study a map __ (details)
imagine following route __ (details)
When you have to memorize a route, you should use a technique that works well for you. One way is to memorize the directions as a set of steps. To do this, write the street names and directions in the correct order on a piece of paper. If you repeat the steps several times, you won't have to look at the list anymore. You can also memorize a route by creating a mental picture of it. That is, see the streets and the places on the streets in your mind. To do this, study the route as it appears on a map. Then imagine yourself following the route. See the buildings and other places along the route in your mind. There are other ways to learn routes; use the method that works best for you.
", + "segments": [ + { + "html": "Let's go through the outline and match it with the appropriate sentences from the paragraph, focusing on how each part contributes to the overall structure of memorizing a route.
The outline begins with a topic sentence that introduces the main idea. Sentence (a) serves this purpose perfectly, emphasizing the importance of choosing a suitable memorization technique.
The first method suggested is memorizing the route as a series of steps. Sentence (b) directly corresponds to this idea, introducing it as one approach to route memorization.
For the step method, two important details are provided. First, sentence (c) explains how to write down the route information. Then, sentence (d) emphasizes the importance of repetition in this method.
The second method introduced is creating a mental picture of the route. Sentence (e) clearly presents this alternative approach to route memorization.
For the mental picture method, two key steps are outlined. Sentence (g) suggests studying a map to visualize the route, while sentence (h) encourages imagining yourself following the route, focusing on landmarks and buildings.
By matching these sentences to the outline, we've created a structured guide for memorizing routes. The outline now clearly presents two main methods - step-by-step memorization and mental visualization - along with specific techniques for each method.
dis = negative, not: disease, disagree, disappear, discomfort, discontinue, discourage, disrespect
", + "id": "b5fbd194-6148-4e6c-81ea-5b7d59f58966", + "verified": true, + "standalone": true + }, + { + "category": "Strategy", + "embedding": "Look for clues in titles, captions, and opening sentences to get a sense of the general topic of a passage. This will help you predict the kind of information you are going to read about.", + "text": "Look for clues in titles, captions, and opening sentences to get a sense of the general topic of a passage. This will help you predict the kind of information you are going to read about.", + "html": "Look for clues in titles, captions, and opening sentences to get a sense of the general topic of a passage. This will help you predict the kind of information you are going to read about.
", + "id": "10a5e2ed-d615-4e63-afe5-d0f17bff891e", + "verified": true, + "standalone": false, + "exercise": { + "question": "As a boy, Zoltan Takacs caught snakes and kept them in his room. Now he hunts them for a living.1
Zoltan Takacs collects snake venom so that he can study it. He wants to find out if the venom can be used as medicine to cure people. Usually, he travels alone with only a backpack, a camera bag, and equipment for collecting the venom. He often flies small planes to reach faraway places, and has traveled to 134 countries. His trips are often dangerous; he has encountered pirates,2 wars, and angry elephants. He has also survived six venomous snake bites. Takacs's adventures are like action movies, but his goal is pure science: \"Animal venoms\", Takacs explains, \"are the source of over a dozen medications.\"3
Many drugs produce side effects. These side effects happen because the drugs affect more than one target. For example, most cancer drugs can't tell the difference between cancer cells and healthy cells. So the drugs kill cancer cells, but they also kill other healthy cells in the body. Toxins are a good model for medications because they can hit a single target. But finding the right toxin to fight a specific disease can take years of work. That's why Takacs and his colleagues have developed a new technology. It allows the creation of \"toxin libraries.\"
The new toxin libraries help researchers identify which toxin might cure a specific disease. With the new technology, testing can happen much more quickly and efficiently than before. A researcher can test many different toxins at once to see if any of them have an effect on a specific disease. Takacs thinks the technology will help researchers develop new toxin-based drugs for a lot of different diseases. But Takacs is also worried that a lot of possible toxin-based drugs are being lost.
According to Takacs, \"Scientists have studied fewer than a thousand animal toxins... But some 20 million more exist.\" Some of these animal toxins come from endangered species. So every time an animal becomes extinct, it's possible that a new drug is lost, too. For example, the venom of an endangered snake could potentially lead to a medicine that saves human lives.
Takacs explains, \"Once we've allowed something to become extinct … there's no way back … For me, losing biodiversity means losing beauty, … knowledge, and resources, including possibilities for treating diseases.\" Losing species, he says, is \"like peeling4 out pages from a book we've never read, then burning them.\"
A snake's venom aims only at a specific part of the body. However, if contact with the target is blocked, the toxin has no effect. For example, when researchers inject5 a cobra with its own venom, nothing happens. This is because cobras have a molecule6 that blocks the toxin from making contact with its target.
", + "segments": [ + { + "html": "Let's approach this exercise by quickly examining key elements of the passage to determine its main focus.
The title 'The Snake Chaser' immediately suggests that the passage is about a person with an unusual occupation related to snakes.
The first paragraph provides more context:
These sentences confirm that the passage is about a person's unusual job involving snakes.
Skimming through the subheadings, we see:
These subheadings indicate that the passage explores various aspects of snake venom and its potential medical applications, all related to the snake chaser's work.
Based on our quick skim of the title, opening sentences, and subheadings, we can conclude that the passage is mainly about:
b. a person's job
Specifically, it's about Zoltan Takacs' unique profession as a 'snake chaser' and how his work with snake venom relates to medical research.
This exercise demonstrates the importance of efficient reading strategies:
By focusing on these elements, we can quickly grasp the main idea of a passage without reading every word, saving time and improving comprehension.
Figurative language allows a writer to compare one thing to another. When you read, it's important to understand how the two things being compared are similar.
", + "id": "6f742334-21ee-40e2-a804-891f85e20881", + "verified": true, + "standalone": false, + "exercise": { + "question": "Takacs's adventures are like action movies.
Takacs's job is sometimes like the events in a movie.
Takacs and his colleagues have developed a new technology. It allows the creation of \"toxin libraries\".
In a toxin library, a lot of information is stored in a way that's easy to search.
\"Biodiversity loss is like peeling out pages from a book we've never read, then burning them.\"
Let's analyze each sentence to understand the writer's intended meaning through the use of figurative language.
This comparison suggests that Takacs's experiences in his job share similarities with exciting events typically seen in action movies.Let's consider the options:
The correct answer is b. Takacs's job is sometimes like the events in a movie.
This phrase uses the concept of a library as a metaphor. Let's examine the options:
The correct answer is b. In a toxin library, a lot of information is stored in a way that's easy to search.
This vivid metaphor compares biodiversity loss to destroying unread book pages. Let's analyze the options:
The correct answer is b. Biodiversity loss is a problem because we lose species before we understand them.
These examples demonstrate how figurative language enhances writing by:
By recognizing and interpreting figurative language, readers can gain a deeper understanding of the writer's message and engage more fully with the text.
Pros are advantages (positive effects) of something, and cons are disadvantages (negative effects) of something. Writers often provide the pros and cons of an issue in order to make a more balanced argument. Identifying the pros and cons of an issue will help you evaluate the strength of a writer's arguments. It will also help you decide your own opinion on the issue.
Look at the facts below. Is each fact a pro or a con for studying snake venom?
It can be very dangerous.
A snake's venom might be used to cure a serious disease.
Snake venom is a good model for medications.
The first fact is a con (a disadvantage of studying snake venom), and the other two are pros.
", + "id": "a191ea0f-d097-4510-8c08-345246941aec", + "verified": true, + "standalone": false, + "exercise": { + "question": "| Pros of Studying Extinct Viruses | Cons of Studying Extinct Viruses |
|---|---|
Scientists called virologists study viruses1 to discover how they work and how to stop people from getting them. Of course, working with viruses is very dangerous. Some viruses can infect large numbers of people very quickly. Other viruses, such as HIV, still have no widely available vaccine2 or cure. In the past few years, some virologists have begun studying extinct viruses — ones that died out long ago. They discovered that all humans have pieces of very old viruses in their bodies. Some of these viruses are hundreds of thousands of years old. The virologists were able to rebuild some of the viruses and bring them back to life.
Although some people think that rebuilding viruses is potentially very dangerous, the virologists argue that studying these extinct viruses can teach us more about how viruses cause disease. They also believe that these viruses can tell us a lot about how our human species developed in the past. In addition, the scientists can develop vaccines for these diseases in case they reappear one day and begin infecting people again.
", + "segments": [ + { + "html": "Let's examine the passage to identify the advantages (pros) and disadvantages (cons) of studying extinct viruses.
Let's identify the advantages mentioned in the passage:
Now, let's identify the disadvantages or potential risks:
By identifying both pros and cons, we can see that:
Recognizing pros and cons in a text is valuable because it:
Use relief with: (n.) pain relief, sense of relief; (v.) express relief, feel relief, bring relief, get relief (from), provide relief (for).
", + "id": "2fb41a74-409f-47c1-85db-b1cbd0bbf7b5", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 114, + "tips": [ + { + "category": "CT Focus", + "embedding": "Writers often use as if when they make a figurative comparison.", + "text": "Writers often use as if when they make a figurative comparison. For example: He acted as if he was a king.", + "html": "Writers often use as if when they make a figurative comparison. For example: He acted as if he was a king.
", + "id": "7ca405a9-3d39-4e4d-9021-66f23bf78b6a", + "verified": true, + "standalone": false, + "exercise": { + "question": "In the 1950s and '60s, Leon Fleisher was one of the world's greatest piano players. But one day in 1964, his career suddenly ended. While he was practicing, he started to lose control of the fourth and fifth fingers on his right hand. \"Wow\", he thought, \"I'd better practice harder\". But his problem got worse.
Fleisher saw several different doctors. He had injections and medications and other treatments, but nothing worked. \"It was as if my hand had been taken over by aliens\", he says. \"It was not under my control.\" His career was finished.
Finally, after more than 30 years, Fleisher found out what was wrong. He had focal dystonia, a disease that makes muscles move in strange, and sometimes painful, ways. At last, relief seemed possible. He went to the U.S. National Institutes of Health, where researchers were testing botulinum toxin as a cure for the disease.
Botulinum toxin is one of the most poisonous toxins in the world: One gram of it could kill 20 million people. But scientists have used it to create the drug Botox. This drug is now safely used in small doses to treat many different problems. It's used to make skin look younger, to stop headaches, and even to cure some serious diseases.
The botulinum toxin cured Fleisher, and he got his career back. He began performing again, and he made his first recording in 40 years. Recently, he received a Kennedy Center Award, which is given for important contributions to the arts in America.
", + "segments": [ + { + "html": "This exercise requires us to identify what the word 'it' refers to in four sentences from the reading passage. We need to carefully consider the context and match each sentence with the correct option (a-f). Let's examine each sentence:
'It was as if my hand had been taken over by aliens.'
'It was not under my control.'
'One gram of it could kill 20 million people.'
'It's used to make skin look younger...'
The tip about using 'as if' in figurative comparisons is particularly relevant to the first sentence:
Making a concession is saying that one idea is true, but another idea is stronger or more important, according to the writer. In other words, it is more persuasive. Use although, though, and even though to make concessions:
Although botulinum toxin can be deadly, it can also cure several serious diseases.
Even though botulinum toxin can cure several diseases, it can be deadly.
In each sentence, the idea in the second clause is emphasized - the writer feels it is stronger and more important.
In the first sentence, the writer concedes that botulinum toxin is dangerous. However, the writer believes its ability to cure diseases is more important. (In other words, scientists should continue to work with it). In the second sentence, the writer concedes that botulinum toxin can cure diseases. However, the writer believes that the fact that it is dangerous is more important. (Scientists should stop working with it)
", + "id": "1f1b891c-242d-4bba-9354-af222640b54a", + "verified": true, + "standalone": false, + "exercise": { + "question": "We need to create sentences using 'although', 'even though', or 'though' to connect the given ideas. Remember, the structure we're aiming for is:
Although/Even though/Though [less important idea], [more important idea].
Connected sentence:
Although just a small amount of arsenic can be deadly, it is still used to treat leukemia.
Connected sentence:
Even though snake venom is dangerous to humans, it is used in a lot of important medications.
Connected sentence:
Though studying extinct viruses can tell us about the human species, it might bring back deadly diseases.
In this exercise, we practiced creating concessions using 'although', 'even though', and 'though'. These connectors help us acknowledge one point while emphasizing another that we consider more significant.
Making concessions in writing is a valuable skill because it:
The tip provided at the beginning of this exercise is particularly beneficial because it:
By practicing this technique, you'll be able to present more balanced and thoughtful arguments in your writing, acknowledging different viewpoints while still emphasizing your main points effectively.
In a persuasive paragraph, you try to convince the reader that something is true. First, you state the issue. Then you state your argument. Finally, you explain the reasons why you think your argument is valid or true.
Making concessions in a persuasive paragraph can help strengthen your argument. It shows the reader that you have thought about the different arguments, but you believe that your argument is the strongest and most important.
", + "id": "601f2918-dc72-412a-81a2-7167a1e66831", + "verified": true, + "standalone": false, + "exercise": { + "question": "Many cosmetic and drug companies test their products on animals to make sure that they are safe. However, this kind of testing is cruel and unnecessary. Although people who support animal testing say that animals are not harmed during tests, animals usually have to live in small cages in laboratories. In addition, animals are often badly injured during testing, and some are even killed. Even though drug companies need to make their products safe for people, their products don't always have the same effect on animals and humans. So it's possible that these tests don't show how products might affect humans. In fact, according to the Food and Drug Administration, over 90 percent of drugs that are used in testing are safe for animals, but are not safe for humans. Since animal testing harms animals and may not help humans, researchers should stop testing products on animals.
", + "segments": [ + { + "html": "We need to identify two sentences in the given paragraph that make a concession. A concession acknowledges an opposing viewpoint before presenting a counter-argument.
Let's break down the paragraph and look for sentences that acknowledge the opposing view (pro-animal testing) before presenting the main argument (against animal testing).
After careful analysis, we can identify two sentences that make concessions:
Both sentences start by acknowledging a point made by those who support animal testing, but then counter with an argument against it:
Using concessions in a persuasive paragraph is a powerful technique. It shows that the writer has considered multiple perspectives and strengthens their argument by addressing potential counterpoints.
By identifying and understanding these concessions, we can see how the author builds a stronger argument against animal testing. This technique demonstrates a balanced approach to the topic while still maintaining a clear stance.
Use occur with (n.): accidents occur, changes occur, events occur; (adv.): frequently occur, naturally occur, normally occur, often occur.
", + "id": "60239035-4aca-4092-bfc4-340a1d851604", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 127, + "tips": [ + { + "category": "CT Focus", + "embedding": "Writers often quote or paraphrase (restate) the ideas of experts to support information in an article. They may introduce these sources with According to ... or [the expert] thinks/says ...", + "text": "Writers often quote or paraphrase (restate) the ideas of experts to support information in an article. They may introduce these sources with According to ... or [the expert] thinks/says ...", + "html": "Writers often quote or paraphrase (restate) the ideas of experts to support information in an article. They may introduce these sources with According to ... or [the expert] thinks/says ...
", + "id": "56f09660-c0e9-4c2d-a90c-8f9239b98aaf", + "verified": true, + "standalone": false, + "exercise": { + "question": "Quote: \"There were no limitations\", said tornado expert Tim Samaras. \"It went absolutely crazy. It had nothing but hundreds of miles to grow and develop\".
Paraphrase: Other people, such as Russell Schneider, director of the U.S. Storm Prediction Center, think it's because of a weather pattern called \"La Niña\".
The tornado that hit Joplin, Missouri, on April 26 2011, threw cars into the air as if they were toys. It pulled buildings apart and even broke up pavement1 — something that only the strongest twisters can do. The Joplin tornado was strong, but it was just one of an amazing number of powerful twisters to strike the United States recently.
A huge number of intense tornadoes hit several regions of the southern United States in 2011. In fact, more violent tornadoes struck the United States in April 2011 than in any other month on record.2 In just two days, from April 26 to April 27, there were more than 100 separate twisters. The tornadoes moved through six states and killed at least 283 people.
From April 26 to April 27, \"perfect storm\" conditions gave birth to a monster twister in Tuscaloosa, Alabama. \"Perfect storm\" conditions occur when warm, wet air rises and collides with cold, dry air at high altitudes.3
The Tuscaloosa tornado was 1.0 mile (1.6 kilometers) wide, with winds over 260 mph (400 kph). It stayed on the ground for an unusually long time. Tornadoes usually touch the ground for only a few miles before they die. But experts think the Tuscaloosa tornado stayed on the ground and traveled 300 miles (480 kilometers) across a region extending from Alabama to Georgia. \"There were no limitations,\" said tornado expert Tim Samaras. \"It went absolutely crazy. It had nothing but hundreds of miles to grow and develop.\"
What caused the violent tornadoes in 2011? Experts disagree. Some think warmer-than-normal water temperatures in the Gulf of Mexico were the cause. Other people, such as Russell Schneider, director of the U.S. Storm Prediction Center, think it's because of a weather pattern called \"La Niña.\"4 La Niña can affect the climate in the United States. It makes air drier or wetter and causes temperatures to rise and fall. Some experts, such as Samaras, think we simply don't have enough data to decide.
Because their cause is unclear, scientists around the world continue to study tornadoes. One day their research will help us to better understand the conditions that cause tornadoes to form. Eventually, we may even be able to predict how strong they will be and where they will hit.
", + "segments": [ + { + "html": "Let's start by finding the requested quote and paraphrase in the 'When Tornadoes Strike' article:
The writer quoted Samaras to:
The writer paraphrased Schneider to:
The writer describes the sources differently:
We have more specific information about Schneider's role and affiliation, which may lend more authority to his opinion in this context.
The writer employs quotes and paraphrases to:
By using quotes and paraphrases, the writer effectively supports their points with expert opinions, adding depth and credibility to the article. This technique demonstrates how writers can introduce sources using phrases like 'said tornado expert' or 'think it's because of', which helps to smoothly integrate expert opinions into the text. These methods not only provide valuable information but also make the article more engaging and authoritative.
When writers describe processes - how things happen - they use transition words and phrases to show the order, or sequence, of the steps or events in the process. Look at these sentences:
First, warm air and cold air collide and form a tube of rotating air.
Next, the rotating air turns to become a vertical column.
The words first and next tell you that warm and cold air collide and form a tube before the rotating air becomes a vertical column.
Other transition words that indicate sequence include then, second, and finally. Time clauses with before, after, when, as soon as, once, and during also show order.
Before you go out, check the weather report.
After the storm passes, it's safe to go outside.
Once the storm hits, go inside.
Note: When, as soon as, and once describe an event that happens just before another event. During shows a period of time in which an event occurs.
Keep windows closed during the storm.", + "id": "f5b96fbe-b210-4f97-a135-9cb035f4074d", + "verified": true, + "standalone": false, + "exercise": { + "question": "
As soon as the storm stops, it's safe to go outside.
What should you do before a tornado?
What should you do during a tornado?
What should you do when a tornado is over?
If you live in a tornado region, it's important to know what to do when tornadoes strike. Follow these steps for what to do before, during, and after a tornado strikes, and you will have the best chance to stay safe.
First, always pay attention to weather reports during tornado season. In addition, keep your eye on the sky. Watch for dark, greenish-colored clouds, and clouds that are close to the ground. This may mean that a tornado is coming. As soon as you know a tornado is about to hit, find shelter immediately if you are outdoors. If you are indoors, go to the lowest level you can, for example, to a basement. Once the tornado hits, stay inside for the entire time.
During a tornado, stay away from windows, as tornadoes can cause them to break. When the storm is over, make sure family members are safe. Check your home and the area around it for damage. Finally, contact disaster relief organizations such as the American Red Cross for help with cleanup and other assistance, such as food and shelter.
", + "segments": [ + { + "html": "We need to identify the actions to take before, during, and after a tornado based on the given text. This exercise helps us practice recognizing sequence in written instructions.
The text mentions several actions to take before a tornado strikes:
The text provides clear instructions for what to do during a tornado:
The text outlines several steps to take after a tornado has passed:
The text uses several sequence indicators to show the order of actions:
Recognizing sequence in instructions is crucial because:
By paying attention to sequence indicators, we can better understand and follow important safety instructions like those for tornado preparedness.
One way to evaluate online sources is to look at the suffix in the Web address (e.g., .com = company; .edu = educational institution (school or college); .gov = government). The suffix may help you judge a source's reliability.
", + "id": "e40eae4a-e1a0-4e02-9aaa-9de8804e86ea", + "verified": true, + "standalone": false, + "exercise": { + "question": "What is the source of the paragraph?
Is this a reliable source of information on tornadoes?
Why, or why not?
If you live in a tornado region, it's important to know what to do when tornadoes strike. Follow these steps for what to do before, during, and after a tornado strikes, and you will have the best chance to stay safe.
First, always pay attention to weather reports during tornado season. In addition, keep your eye on the sky. Watch for dark, greenish-colored clouds, and clouds that are close to the ground. This may mean that a tornado is coming. As soon as you know a tornado is about to hit, find shelter immediately if you are outdoors. If you are indoors, go to the lowest level you can, for example, to a basement. Once the tornado hits, stay inside for the entire time.
During a tornado, stay away from windows, as tornadoes can cause them to break. When the storm is over, make sure family members are safe. Check your home and the area around it for damage. Finally, contact disaster relief organizations such as the American Red Cross for help with cleanup and other assistance, such as food and shelter.
Source: http://www.fema.gov
", + "segments": [ + { + "html": "We need to evaluate the reliability of the given information about tornado safety. To do this, we'll:
At the end of the provided text, we can see the source clearly stated:
FEMA stands for the Federal Emergency Management Agency, which is a part of the U.S. government.
To determine if this is a reliable source, let's consider:
Based on these factors, we can conclude that this is indeed a reliable source for information on tornadoes.
This source is reliable for tornado information because:
Evaluating online sources is crucial because:
By considering factors like website suffixes (.com, .edu, .gov) and the authority of the source, you can make better judgments about the reliability of online information.
Use experience with adjectives: professional experience, valuable experience, past experience, shared experience, learning experience. You can also use experience with nouns: work experience, life experience, experience danger.
", + "id": "9afe3753-35be-4bff-be9d-dc5ca7f39d93", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 134, + "tips": [ + { + "category": "CT Focus", + "embedding": "Evaluating sources: When you see a quote from an expert in an article, think about why the writer included it and the ideas it supports.", + "text": "Evaluating sources: When you see a quote from an expert in an article, think about why the writer included it and the ideas it supports.", + "html": "Evaluating sources: When you see a quote from an expert in an article, think about why the writer included it and the ideas it supports.
", + "id": "e1b2bd7d-4986-4eae-8530-d5fce12b281f", + "verified": true, + "standalone": false, + "exercise": { + "question": "Why does the writer quote Jack Cohen?
What idea does his quote support?
According to the two reading passages, what are the main factors that firefighters consider when they are fighting a fire? What are examples of each one? Complete the chart.
| Factor | Shape of the land | ||
|---|---|---|---|
| Examples | Dry grass, plants |
Wildfires occur all around the world, but they are most frequent in areas that have wet seasons followed by long, hot, dry seasons. These conditions exist in parts of Australia, South Africa, Southern Europe, and the western regions of the United States.
Wildfires can move quickly and destroy large areas of land in just a few minutes. Wildfires need three conditions: fuel, oxygen, and a heat source. Fuel is anything in the path of the fire that can burn: trees, grasses, even homes. Air supplies the oxygen. Heat sources include lightning, cigarettes, or just heat from the sun.
From past experience we know that it is difficult to prevent wildfires, but it is possible to stop them from becoming too big. One strategy is to cut down trees. Another strategy is to start fires on purpose. Both of these strategies limit the amount of fuel available for future fires. In addition, people who live in areas where wildfires occur can build fire-resistant1 homes, according to fire researcher Jack Cohen. Cohen says that in some recent California fires, “there were significant cases of communities that did not burn . . . because they were fire-resistant.”
However, most experts agree that no single action will reduce fires or their damage. The best method is to consider all these strategies and use each of them when and where they are the most appropriate.
Fighting fires is similar to a military campaign.2 Attacks come from the air and from the ground. The firefighters must consider three main factors: the shape of the land, the weather, and the type of fuel in the path of the fire. For example, southern sides of mountains are sunnier and drier, so they are more likely to burn than the northern sides. Between two mountains, in the canyons, strong winds can suddenly change the direction of a fire. These places, therefore, experience particularly dangerous fires.
We need to analyze the given text to answer questions about:
Let's break this down step by step.
The writer quotes Jack Cohen, a fire researcher, who says: \"there were significant cases of communities that did not burn . . . because they were fire - resistant.\"
This quote is used to:
According to the passage, firefighters consider three main factors when fighting a fire:
Let's look at examples for each factor.
1. Shape of the land:
2. Weather:
3. Fuel type:
Including expert quotes in an article serves several purposes:
When reading articles, it's important to consider why certain quotes are included and how they support the main ideas being presented.
Writers usually use two verb forms when they describe a process - the imperative and the simple present.
If you are explaining how to do something, use the imperative. The imperative is the base form of a verb. You do not use a subject with the imperative. For example:
First, remove fuel in the fire's path.
The subject, you, is understood. Remove is the base form of the verb.
If you are explaining how something happens, use the simple present. For example:
Then warm air moves upward.
Then firefighters look for something in the area that can block the fire.
Remember to make subjects and verbs agree when you use the simple present.
", + "id": "01638dd5-3d2d-402c-89a9-a35d15098d4a", + "verified": true, + "standalone": false, + "exercise": { + "question": "Imperative:
Simple Present:
We need to complete two exercises:
Let's approach this step-by-step, focusing on the correct use of verb forms in describing processes.
Let's analyze each sentence and determine the correct verb form:
Now, let's create three imperative and three simple present sentences:
Using the correct verb forms is crucial when describing processes because:
This tip is beneficial because:
By mastering these verb forms, you can communicate processes more effectively in both academic and professional contexts.
When you write a process paragraph, you explain steps or events in a process in chronological order - the first event appears first, then the next event, and so on.
To plan a process paragraph, first list each step or event in the correct order. When you write your paragraph, use transition words and phrases to help the reader follow the order.
first, second, third; then, next, in addition; finally
before, after, once, when, as soon as, during, while
Note that during and while have similar meanings but are used differently in a sentence.
During the storm, it isn't safe to go outside. (during + noun)
While the storm is happening, stay indoors. (while + noun + be + verb + -ing)
Writers usually use the simple present or the imperative to describe a process. You can also use the present perfect with after and once.
After / Once the storm has passed, it's safe to go outside.
Note: A process paragraph is more than a list of steps. It is also important to include details that help the reader understand the steps or events.
", + "id": "fb0a015f-c414-4e63-bd87-bdd908e89bd6", + "verified": true, + "standalone": false, + "exercise": { + "question": "Wildfires move quickly and are extremely dangerous, but you can avoid danger if you follow these steps.
If you follow these steps, you will have the best chances for staying safe if a wildfire occurs.
", + "segments": [ + { + "html": "We need to complete two main tasks:
Let's approach this step-by-step, focusing on creating a clear, chronological process.
Let's arrange the events in a logical sequence:
Now, let's write the paragraph using the ordered events and appropriate transition words:
Wildfires move quickly and are extremely dangerous, but you can avoid danger if you follow these steps. First, if a fire is approaching your home, go outside and move any items that can act as fuel for the fire, such as dead plants. Then, go back inside and close all windows, doors, and other openings to prevent the fire from moving easily through the house. After that, turn off any of your home energy sources that can act as fuel, such as natural gas. Next, fill large containers such as garbage cans and bathtubs with water to slow down the fire. Finally, leave the area as quickly as possible and do not return home until it is safe. If you follow these steps, you will have the best chances for staying safe if a wildfire occurs.
Writing an effective process paragraph involves:
Understanding how to organize a process paragraph is beneficial because:
By mastering this skill, you can create clear, concise, and easily understandable process descriptions in various contexts.
Use style with (n.) leadership style, learning style, style of music, writing style; (adj.) distinctive style, particular style, personal style.
", + "id": "fe2afa25-31c1-48ba-8b7f-0ca29f3cb889", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 150, + "tips": [ + { + "category": "Strategy", + "embedding": "When you scan, look for paraphrases of key words, as well as the key words themselves.", + "text": "When you scan, look for paraphrases of key words, as well as the key words themselves. For example, began building is a paraphrase for started work on.", + "html": "When you scan, look for paraphrases of key words, as well as the key words themselves. For example, began building is a paraphrase for started work on.
", + "id": "9cf7701a-4bc2-4f75-8e41-2619c1b47399", + "verified": true, + "standalone": false, + "exercise": { + "question": "The passage below is about the mysterious statues in Rapa Nui (Easter Island) called moai. Scan the paragraph to find the answers to these questions.
How far is Rapa Nui from Chile? ___________________
When did people probably first come to Rapa Nui? ___________________
Where did the people of Rapa Nui come from? ___________________
How tall are the statues? How much do they weigh? ___________________
", + "additional": "Rapa Nui (Easter Island) is an island in the Pacific Ocean located 2,300 miles (3,700 kilometers) west of Chile. It’s home to the mysterious moai statues, enormous figures carved from stone. It's not clear when the island was first settled. Experts guess that a few brave sailors somehow sailed west to Rapa Nui from Polynesian islands around AD 800. Experts do know that the Rapa Nui culture was at its height between the 10th and 16th centuries. They think the Rapa Nui people carved and built the moai in this period. There are 900 moai statues across the island. They are about 13 feet (4 meters) tall and weigh as much as 14 tons. Most scholars think that the moai were created to honor ancestors, chiefs, or other important people.
", + "segments": [ + { + "html": "We need to scan the given passage about the moai statues of Rapa Nui (Easter Island) to find specific information. Let's break down the questions we need to answer:
We'll use scanning techniques to quickly locate this information in the text.
Let's go through each question and find the relevant information:
Notice how we didn't need to read the entire passage in detail. We quickly located the specific information by scanning for key words and numbers.
To scan effectively:
Recognizing paraphrases is crucial in scanning because:
For example, in our text, 'first settled' could be paraphrased as 'brave sailors somehow sailed west to Rapa Nui', indicating the first settlement.
Mastering the skill of scanning, including recognizing paraphrases, is beneficial because:
By practicing scanning and being aware of paraphrases, you can become a more efficient and effective reader across various contexts.
Scanning helps you find details quickly. When you scan, you move your eyes quickly across and down a page and you only look for particular things. For example, to get information about times and dates, look for numbers, and to get information about people and places, look for capitalized words. Read the words around the numbers or capitalized words to understand the context.
For example, to answer the question 'When did Gaudí start work on La Sagrada Família?', first scan the text to find a year. Then read the words near the year for information about 'starting work'.
Antoni Gaudí began building his church, La Sagrada Família, in 1881.
First, your eyes go to 1887. Then your eyes go to began building. You have found the answer to the question - in 1881.
", + "id": "84282316-08c8-4e36-9a66-f892315040dc", + "verified": true, + "standalone": false, + "exercise": { + "question": "The passage below is about the mysterious statues in Rapa Nui (Easter Island) called moai. Scan the paragraph to find the answers to these questions.
How far is Rapa Nui from Chile? ___________________
When did people probably first come to Rapa Nui? ___________________
Where did the people of Rapa Nui come from? ___________________
How tall are the statues? How much do they weigh? ___________________
", + "additional": "Rapa Nui (Easter Island) is an island in the Pacific Ocean located 2,300 miles (3,700 kilometers) west of Chile. It's home to the mysterious moai statues, enormous figures carved from stone. It's not clear when the island was first settled. Experts guess that a few brave sailors somehow sailed west to Rapa Nui from Polynesian islands around AD 800. Experts do know that the Rapa Nui culture was at its height between the 10th and 16th centuries. They think the Rapa Nui people carved and built the moai in this period. There are 900 moai statues across the island. They are about 13 feet (4 meters) tall and weigh as much as 14 tons. Most scholars think that the moai were created to honor ancestors, chiefs, or other important people.
", + "segments": [ + { + "html": "We need to scan the given passage about the moai statues of Rapa Nui (Easter Island) to find specific information. Let's break down the questions we need to answer:
We'll use scanning techniques to quickly locate this information in the text.
Let's go through each question and find the relevant information:
Notice how we didn't need to read the entire passage in detail. We quickly located the specific information by scanning for key words and numbers.
To scan effectively:
Recognizing paraphrases is crucial in scanning because:
For example, in our text, 'first settled' could be paraphrased as 'brave sailors somehow sailed west to Rapa Nui', indicating the first settlement.
Mastering the skill of scanning, including recognizing paraphrases, is beneficial because:
By practicing scanning and being aware of paraphrases, you can become a more efficient and effective reader across various contexts.
trans = across: transport, transportation, transfer, transit, translate. Note that transport can be both a noun and a verb, but the stress is different: (n.) transport, (v.) transport.
", + "id": "9d657295-2afe-4ce2-a47c-e5a0ab70b782", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 156, + "tips": [ + { + "category": "CT Focus", + "embedding": "To identify comparisons, you need to scan for and select relevant details from different parts of the text.", + "text": "To identify comparisons, you need to scan for and select relevant details from different parts of the text, for example, names of people and places, years, dimensions, and other specific details.", + "html": "To identify comparisons, you need to scan for and select relevant details from different parts of the text, for example, names of people and places, years, dimensions, and other specific details.
", + "id": "aa7d4e33-86aa-4655-b2f2-e5f08316ae37", + "verified": true, + "standalone": false, + "exercise": { + "question": "| Name | When was it built? | How was it built? |
|---|---|---|
| Göbekli Tepe | 11,500 B.C. | |
| Chichén Itzá |
Göbekli Tepe
___________________________________________
___________________________________________
Chichén Itzá
___________________________________________
___________________________________________
| Göbekli Tepe | Both | Chichén Itzá |
|---|---|---|
People have created monuments for various reasons, inspired by different sources. Two of the greatest architectural achievements are on opposite sides of the world, in Turkey and Mexico.
Göbekli Tepe is one of the oldest man-made structures on Earth. It was already nearly 8,000 years old when both Stonehenge1 and the pyramids of Egypt were built. The structure consists of dozens of stone pillars arranged in rings. The pillars are shaped like capital T's, and many are covered with carvings of animals running and jumping. They are also very big—the tallest pillars are 18 feet (5.5 m) in height and weigh 16 tons (more than 14,500 kg). In fact, archaeologists think that Göbekli Tepe was probably the largest structure on Earth at the time.
At the time that Göbekli Tepe was built, most humans lived in small nomadic2 groups. These people survived by gathering plants and hunting animals. They had no writing system and did not use metal. Even wheels did not exist. Amazingly, the structure's builders were able to cut, shape, and transport 16-ton stones. Archaeologists found Stone Age3 tools such as knives at the site. They think hundreds of workers carved and put the pillars in place.
Archaeologists are still excavating Göbekli Tepe and debating its meaning. Many think it is the world's oldest temple. Klaus Schmidt is the archaeologist who originally excavated the site. He thinks that people living nearby created Göbekli Tepe as a holy meeting place. To Schmidt, the T-shaped pillars represent human beings. The pillars face the center of the circle and perhaps represent a religious ritual.
Chichén Itzá is an ancient city made of stepped pyramids, temples, and other stone structures. The largest building in Chichén Itzá is the Temple of Kukfooterkan, a pyramid with 365 steps. A kind of calendar, the temple shows the change of seasons. Twice a year on the spring and autumn equinoxes,4 a shadow falls on the pyramid in the shape of a snake. As the sun sets, this shadowy snake goes down the steps to eventually join a carved snake head on the pyramid's side.
The Mayans constructed the pyramids with carved stone. To build a pyramid, Mayan workers created a base and added smaller and smaller levels as the structure rose. Building the pyramids required many workers. Some pyramids took hundreds of years to complete. As at Göbekli Tepe, builders worked without wheels or metal tools.
Chichén Itzá was both an advanced city center and a religious site. Spanish records show that the Mayans made human sacrifices5 to a rain god here. Archaeologists have found bones, jewelry, and other objects that people wore when they were sacrificed. Experts also know that the Mayans were knowledgeable astronomers.6 They used the tops of the pyramids to view Venus and other planets.
", + "segments": [ + { + "html": "We need to complete three main tasks:
Let's approach this step-by-step, using scanning techniques to find the relevant information quickly.
Let's scan for the missing information:
Scanning for purpose and evidence:
Let's identify similarities and differences:
Scanning for comparisons is a crucial skill because:
By practicing this skill, you can improve your ability to process and understand complex texts efficiently.
One way to make comparisons is to use the comparative forms of adjectives.
adjective + -er + than
more / less + adjective + than (with most adjectives that have two or more syllables)
Examples:
Göbekli Tepe is older than Stonehenge.
The design of La Sagrada Família is more complex than the design of St. Patrick's Cathedral.
Use (not) as + adjective + as to say things are (or are not) the same.
Example:
The Empire State Building is not as tall as the Tokyo Sky Tree.", + "id": "a0510b3c-a54f-4ffd-b2cf-62887ffc9418", + "verified": true, + "standalone": false, + "exercise": { + "question": "
The Tokyo Sky Tree is 2,080 feet (634 meters) tall. The Canton Tower is 1,969 feet (600 meters) tall.
The Tokyo Sky Tree is __________ the Canton Tower. (tall)
St. Paul's Cathedral has a traditional design. The design of St. Mary's Cathedral is partly traditional and partly modern.
The design of St. Mary's Cathedral is __________ the design of St. Paul's Cathedral. (traditional)
The Great Wall of China is 5,500 miles (8,850 kilometers) long. Hadrian's Wall is 73 miles (120 kilometers) long.
Hadrian's Wall is not __________ the Great Wall of China. (long)
In this exercise, we need to complete three sentences using comparative adjectives. The task requires us to:
Let's approach each sentence step by step.
Given information:
Analysis:
Correct comparative form: 'taller than'
Given information:
Analysis:
Correct comparative form: 'less traditional than'
Given information:
Analysis:
Correct comparative form: 'as long as'
Comparative adjectives are used to compare two things. The rules for forming comparatives are:
The structure 'not as... as' is used to express inequality between two things.
Understanding and using comparative adjectives is beneficial because:
By mastering comparative adjectives, you can communicate more effectively and make clearer comparisons in both written and spoken English.
When you write a comparison paragraph, first choose a topic - that is, the items you wish to compare. Next, think of two or three points about the items that you want to discuss. Then think of one or two details to include about each point.
Transition words and phrases in your paragraph help the reader understand your ideas:
Similarities: similarly, both, also, too
Differences: however, on the other hand, but
Both Göbekli Tepe and Stonehenge are ancient monuments. However, Göbekli Tepe is much older.", + "id": "204019c1-3832-433f-911d-76ed743293f1", + "verified": true, + "standalone": false, + "exercise": { + "question": "
The pyramids at Chichén Itzá showed the change in seasons. Similarly, some experts think people used Stonehenge as a kind of calendar.
In this exercise, we need to write five comparison sentences about places. To do this effectively, we should:
Let's approach this task step by step, creating diverse comparison sentences.
Let's compare two well-known cities:
'New York City is significantly larger than Paris in terms of population, however, both cities are renowned for their iconic landmarks.'
This sentence:
Let's compare the climate of two countries:
'While Canada experiences extremely cold winters, Australia has much milder temperatures year-round, but both countries have diverse landscapes that attract nature enthusiasts.'
This sentence:
Let's compare two Asian countries:
'Japan and South Korea share many cultural similarities, such as a strong emphasis on respect for elders, however, their traditional cuisines are distinctly different.'
This sentence:
Let's compare two natural wonders:
'The Grand Canyon is significantly deeper than the Great Barrier Reef, but both natural wonders attract millions of visitors annually due to their breathtaking beauty.'
This sentence:
Let's compare two ancient structures:
'The pyramids of Egypt are older than the Colosseum in Rome; similarly, both structures serve as remarkable examples of ancient engineering and continue to fascinate modern archaeologists.'
This sentence:
Practicing writing comparison sentences is beneficial because it:
By mastering this skill, you can create more engaging and informative writing in various academic and professional contexts.
Organizing ideas visually, for example, by using a Venn diagram or other graphic organizer, can help you see similarities and differences more clearly. It can also help you remember key information.
", + "id": "9e4d61ca-2488-4f87-b0c7-86746d3ffe70", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 160, + "tips": [ + { + "category": "Strategy", + "embedding": "When you write a comparison paragraph, use pronouns (if, they, etc.) to avoid repeating the same nouns too often.", + "text": "When you write a comparison paragraph, use pronouns (if, they, etc.) to avoid repeating the same nouns too often. Make sure it is clear to the reader what the pronoun is referring to.", + "html": "When you write a comparison paragraph, use pronouns (if, they, etc.) to avoid repeating the same nouns too often. Make sure it is clear to the reader what the pronoun is referring to.
", + "id": "080b86ef-ca41-4d4b-bcf6-a460ca737777", + "verified": true, + "standalone": true + } + ] + } + ] + }, + { + "unit": 9, + "title": "Form and Function", + "pages": [ + { + "page": 166, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use theory.", + "text": "Use theory with: (n.) evidence for a theory, support for a theory; (adj.) a scientific theory, a convincing theory; (v.) develop a theory, propose a theory, put forward a theory, test a theory.", + "html": "Use theory with: (n.) evidence for a theory, support for a theory; (adj.) a scientific theory, a convincing theory; (v.) develop a theory, propose a theory, put forward a theory, test a theory.
", + "id": "a14dc341-ed16-46c3-a046-f5efd76e9757", + "verified": true, + "standalone": true + }, + { + "category": "Strategy", + "embedding": "A subhead (or section head) indicates the main theme of that section. Reading subheads can give you an overall idea of the theme of a passage and how it is organized, such as whether or not the information is divided into categories.", + "text": "A subhead (or section head) indicates the main theme of that section. Reading subheads can give you an overall idea of the theme of a passage and how it is organized, such as whether or not the information is divided into categories.", + "html": "A subhead (or section head) indicates the main theme of that section. Reading subheads can give you an overall idea of the theme of a passage and how it is organized, such as whether or not the information is divided into categories.
", + "id": "2ed0ba59-986b-46ce-bf71-478e2c6e8225", + "verified": true, + "standalone": false, + "exercise": { + "question": "Paleontologists1 think feathers have existed for millions of years. Fossils of a 125-million-year-old dinosaur called a theropod show that it had a thin layer of hair on its back—evidence of very primitive feathers. Discoveries such as this are helping scientists understand how and why feathers evolved.
Some paleontologists speculate that feathers began as a kind of insulation to keep animals or their young warm. Paleontologists have found theropod fossils that have their front limbs2 spread over nests. They think this shows that the dinosaurs were using feathers to keep their young warm. In addition, many young birds are covered in light, soft feathers, which keep the birds' bodies warm. Even when they become adult birds, they keep a layer of warm feathers closest to their bodies.
Another theory is that feathers evolved for display—that is, to be seen. Feathers on birds show a huge range of colors and patterns. In many cases, the purpose of these beautiful feathers is to attract the opposite sex. A peacock spreads his iridescent3 tail to attract a peahen. Other birds use crests — feathers on their heads. A recent discovery supports the display idea: In 2009, scientists found very small sacs4 inside theropod feathers, called melanosomes. Melanosomes give feathers their color. The theropod melanosomes look the same as those in the feathers of living birds.
We know that feathers help birds to fly. Here's how they work: A bird's feathers are not the same shape on each side. They are thin and hard on one side, and long and flexible on the other. To lift themselves into the air, birds turn their wings at an angle. This movement allows air to go above and below the wings. The difference in air pressure allows them to fly.
Paleontologists are now carefully studying the closest theropod relatives of birds. They are looking for clues to when feathers were first used for flight. A 150-million-year-old bird called Anchiornis, for example, had black-and-white arm feathers. These feathers were almost the same as bird feathers. However, unlike modern bird feathers, the feathers were the same shape on both sides. Because of this, Anchiornis probably wasn't able to fly.
Scientists also found a small, moveable bone in Anchiornis fossils. This bone allowed it to fold its arms to its sides. Modern birds use a similar bone to pull their wings toward their bodies as they fly upwards. Scientists speculate that feathered dinosaurs such as Anchiornis evolved flight by moving their feathered arms up and down as they ran, or by jumping from tree to tree.
Recent research therefore shows that feathers probably evolved because they offered several advantages. The evidence suggests that their special design and bright colors helped dinosaurs, and then birds, stay warm, attract mates, and finally fly high into the sky.
We need to determine the main topic of the reading passage by analyzing its title and subheads. This exercise tests our ability to:
Let's examine the title and subheads to find the answer.
Let's look at the structural elements of the passage:
The title poses a question about the purpose of feathers, and the subheads appear to be answering this question by listing different functions of feathers.
From our analysis, we can conclude:
This structure suggests that the passage is exploring different purposes or functions of feathers, rather than focusing solely on attraction or flight methods.
Based on our analysis, the correct answer is:
b. three possible purposes of feathers
This answer best reflects the content suggested by the title and subheads. It encompasses all three subheads (insulation, attraction, and flight) as purposes of feathers, whereas the other options focus on only one aspect or are not directly related to the subheads.
This exercise demonstrates why understanding subheads is crucial:
By mastering this skill, you can quickly grasp the main ideas of a text and improve your reading efficiency across various subjects and contexts.
When you evaluate evidence, consider whether it is relevant (does it relate to the main idea?), logical (does it make sense?), sufficient (does it give enough support for the idea?), plausible (is it believable and does it match what you already know?), and reliable (does the writer state where the evidence comes from?).
", + "id": "67c3173f-fd42-459c-bafd-160a0c1bd5da", + "verified": true, + "standalone": false, + "exercise": { + "question": "How does the author support the ideas about the purposes of feathers? Find at least one modern-day example in the reading for each purpose. Write each one under “Examples.”
What fossil evidence have scientists found relating to each purpose? Note the information under “Evidence.”
| Purpose | Examples | Evidence |
|---|---|---|
| 1. | __________ have that keep their bodies warm. | |
| 2. | ||
| 3. | A bird's feathers are __________ on one side and __________ on the other — so they can lift themselves into the air. | Feathered dinosaurs such as Anchiornis had a __________ that allowed them to fold their arms to their sides. This may eventually have helped them use their feathers to fly. |
In your opinion, does the evidence help support the theories? Does it convince, or persuade, you? Why, or why not?
Do you think one theory is more convincing than the others?
Paleontologists1 think feathers have existed for millions of years. Fossils of a 125-million-year-old dinosaur called a theropod show that it had a thin layer of hair on its back—evidence of very primitive feathers. Discoveries such as this are helping scientists understand how and why feathers evolved.
Some paleontologists speculate that feathers began as a kind of insulation to keep animals or their young warm. Paleontologists have found theropod fossils that have their front limbs2 spread over nests. They think this shows that the dinosaurs were using feathers to keep their young warm. In addition, many young birds are covered in light, soft feathers, which keep the birds' bodies warm. Even when they become adult birds, they keep a layer of warm feathers closest to their bodies.
Another theory is that feathers evolved for display—that is, to be seen. Feathers on birds show a huge range of colors and patterns. In many cases, the purpose of these beautiful feathers is to attract the opposite sex. A peacock spreads his iridescent3 tail to attract a peahen. Other birds use crests — feathers on their heads. A recent discovery supports the display idea: In 2009, scientists found very small sacs4 inside theropod feathers, called melanosomes. Melanosomes give feathers their color. The theropod melanosomes look the same as those in the feathers of living birds.
We know that feathers help birds to fly. Here's how they work: A bird's feathers are not the same shape on each side. They are thin and hard on one side, and long and flexible on the other. To lift themselves into the air, birds turn their wings at an angle. This movement allows air to go above and below the wings. The difference in air pressure allows them to fly.
Paleontologists are now carefully studying the closest theropod relatives of birds. They are looking for clues to when feathers were first used for flight. A 150-million-year-old bird called Anchiornis, for example, had black-and-white arm feathers. These feathers were almost the same as bird feathers. However, unlike modern bird feathers, the feathers were the same shape on both sides. Because of this, Anchiornis probably wasn't able to fly.
Scientists also found a small, moveable bone in Anchiornis fossils. This bone allowed it to fold its arms to its sides. Modern birds use a similar bone to pull their wings toward their bodies as they fly upwards. Scientists speculate that feathered dinosaurs such as Anchiornis evolved flight by moving their feathered arms up and down as they ran, or by jumping from tree to tree.
Recent research therefore shows that feathers probably evolved because they offered several advantages. The evidence suggests that their special design and bright colors helped dinosaurs, and then birds, stay warm, attract mates, and finally fly high into the sky.
This exercise requires us to analyze a reading passage about the purposes of feathers and complete a table with examples and evidence for each purpose. Let's break it down step by step:
Now, let's find examples from the reading for each purpose:
Now, let's find the fossil evidence for each purpose:
Now that we've gathered the information, let's think about how convincing this evidence is:
Based on this evaluation, we can conclude that the evidence is generally convincing. Each theory is supported by both modern examples and fossil evidence. However, the flight theory might be considered the most convincing due to the detailed explanation of how feathers enable flight and the clear progression from non-flying to flying creatures in the fossil record.
The tip about evaluating evidence has been crucial in our analysis. By considering relevance, logic, sufficiency, plausibility, and reliability, we've been able to thoroughly assess the strength of the evidence presented for each feather purpose. This systematic approach helps in forming a well-reasoned opinion about the theories and their supporting evidence.
Science writers use certain words and expressions to differentiate theories from facts. In science, a fact is an idea that has been proven to be true. A theory is an idea that is based on evidence and reasoning, but has not yet been proven. Scientists develop theories in order to explain why something happens, or happened in a particular way.
Science writers use verbs such as think, speculate, and suggest when they refer to theories.
Some paleontologists speculate that feathers started out as insulation.
Evidence suggests that their special design and bright colors helped both dinosaurs and birds stay warm.
Writers also use words such as probably and perhaps to indicate theories.
Because of this, Anchiornis probally wasn't able to fly.", + "id": "54a8d94e-2f3c-45fa-8d60-e4ebecae79fa", + "verified": true, + "standalone": false, + "exercise": { + "question": "
Many scientists think that a group of dinosaurs closely related to today's birds took the first steps toward flight when their limbs evolved to flap.1 They theorize that this arm flapping possibly led to flying as a result of running or jumping. But recently discovered fossils in China are showing a different picture.
Paleontologists discovered the fossils of a small, feathered dinosaur called Microraptor gui that lived between 120 and 110 million years ago. The Chinese team that studied the fossils doesn't think this animal ran or flapped well enough to take off from the ground. Instead, they think that this animal possibly flew by gliding2 from tree to tree. They further speculate that the feathers formed a sort of \"parachute\"3 that helped the animal stay in the air.
Not everyone agrees with this theory. Some researchers suggest that M. gui's feathers weren't useful for flight at all. They think that the feathers possibly helped the animal to attract a mate, or perhaps to make the tiny dinosaur look bigger.
", + "segments": [ + { + "html": "Let's examine the information about the fossil discovery in China and identify the theories presented along with the words that introduce them. We'll go through this step-by-step:
Now that we've identified the theories, let's consider how to evaluate the evidence presented:
This approach to evaluating evidence is crucial when analyzing scientific theories. By considering these aspects, we can better understand the strength of each theory and the overall state of knowledge about early flight evolution. It's important to note that in science, multiple theories can coexist until more evidence is found to support or refute them.
Use involved with: (in + n.) involved in a process, involved in an accident, involved in politics, involved in a relationship; (adv.) actively involved, deeply involved, directly involved, emotionally involved, heavily involved, personally involved.
", + "id": "ba837a64-0e2c-4b48-93e7-7276ea935462", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 176, + "tips": [ + { + "category": "Strategy", + "embedding": "When you look for theories, scan for words like think, believe, suggest, feel, and theorize, as well as qualifiers like can, may, and might.", + "text": "When you look for theories, scan for words like think, believe, suggest, feel, and theorize, as well as qualifiers like can, may, and might.", + "html": "When you look for theories, scan for words like think, believe, suggest, feel, and theorize, as well as qualifiers like can, may, and might.
", + "id": "fbe9c8b5-827c-4d2e-a572-b3457340531b", + "verified": true, + "standalone": false, + "exercise": { + "question": "ALL LIVING organisms are uniquely adapted to the environment in which they live. Scientists study their designs to get ideas for products and technologies for humans. This process is called biomimetics. Here are three examples—in the air, on land, and in the water.
Toucan bills are so enormous that it's surprising the birds don't fall on their faces. One species of toucan, the toco toucan, has an orange-yellow bill six to nine inches (15-23 centimeters) long. It's about a third of the bird's entire length. Biologists aren't sure why toucans have such large, colorful bills. Charles Darwin theorized that they attracted mates. Others suggest the bills are used for cutting open fruit, for fighting, or for warning predators to stay away.
One thing scientists are certain of is that the toucan's beak is well designed to be both strong and light. The surface is made of keratin, the same material in human fingernails and hair. But the outer layer isn't a solid structure. It's actually made of many layers of tiny overlapping pieces of keratin. The inside of the bill has a foam-like structure—a network of tiny holes held together by light, thin pieces of bone. This design makes the bill hard but very light.
Marc André Meyers is an engineering professor at the University of California, San Diego. He thinks that the automotive and aviation industries can use the design of the toucan bill to make cars and planes safer. “Panels that mimic toucan bills may offer better protection to motorists involved in crashes,” Meyers says.
The Namib Desert in Angola, Africa, is one of the hottest places on Earth. A beetle called Stenocara survives there by using its shell to get drinking water from the air. Zoologist Andrew Parker of the University of Oxford has figured out how Stenocara collects water from desert air.
The surface of Stenocara's armor-like2 shell is covered with bumps. The top of each bump is smooth and attracts water. The sides of each bump and the areas in between the bumps repel water. As the little drops of water join together and become larger and heavier, they roll down the bumps into the areas between them. A channel3 connects these areas to a spot on the beetle's back that leads straight to its mouth.
Parker thinks Stenocara's bumpy armor can help humans survive better, too. He thinks the beetle's shell is a good model for designing inexpensive tent coverings. The shell might also be a model for roofs that can collect water for drinking and farming in dry parts of the world.
Sharks are covered in scales made from the same material as teeth. These flexible scales protect the shark and help it swim quickly in water. A shark can move the scales as it swims. This movement helps reduce the water's drag.4
Amy Lang, an aerospace engineer at the University of Alabama, studied the scales on the shortfin mako, a relative of the great white shark. Lang and her team discovered that the mako shark's scales differ in size and in flexibility in different parts of its body. For instance, the scales on the sides of the body are tapered—wide at one end and narrow at the other end. Because they are tapered, these scales move very easily. They can turn up or flatten to adjust to the flow of water around the shark and to reduce drag.
Lang feels that shark scales can inspire designs for machines that experience drag, such as airplanes. Designers are also getting ideas from shark scales for coating ship bottoms and designing swimwear.
", + "segments": [ + { + "html": "Let's examine the text to find two theories about nature's designs and how they inspire human technology. We'll look for words that indicate theories or hypotheses.
While not required for the exercise, it's worth noting other theories present:
The tip provided is incredibly useful for identifying theories in scientific texts. Let's see how it helped us:
By scanning for these key words, we can quickly pinpoint where scientists are presenting theories rather than established facts.
This approach not only helps in identifying theories but also in understanding the tentative nature of scientific knowledge. It reminds us that many ideas in science are hypotheses that scientists are still exploring and testing. By recognizing these linguistic cues, we can better distinguish between established facts and developing theories in scientific literature.
When you write a summary of a passage, you should restate information as much as possible in your own words. One way to do this is to replace some of the original words or phrases with synonyms - words that have a similar meaning. This is also known as paraphrasing. For example, look at the two sentences below:
Original: Some paleontologists speculate that feathers began as a kind of insulation to keep animals or their young warm.
Paraphrase: Some experts think that feathers started as a way to keep warm.
paleontologists ➝ expertsbegan ➝ startedspeculate ➝ thinkinsulation ➝ a way to keep warm
(Note: You don't change words that don't have synonyms: feathers ➝ feathers.)
One way to find synonyms is to use a thesaurus, a type of dictionary that has synonyms and antonyms (words with opposite meaning). Not all synonyms are an exact match for a word, so it's important to understand the context in which you are using a word in order to choose the best synonym. For example, look at the following sentence:
The Stenocara beetle collects drinking water from the atmosphere.
Synonyms in a thesaurus for atmosphere might include: air, sky, feeling, and mood. Only air is correct in this context.
", + "id": "4451576d-0fd4-4b21-ac96-ff0e2a092cfb", + "verified": true, + "standalone": false, + "exercise": { + "question": "Let's approach this exercise by examining each sentence and choosing the most appropriate synonym based on the context. We'll analyze the meaning of each word in the given sentences and compare it with the provided options.
This exercise demonstrates the crucial role of context in selecting appropriate synonyms. Let's review the key points:
The tip provided is particularly valuable for this exercise and for improving writing skills in general. Here's how it applies:
By applying this tip, you can enhance your vocabulary, improve your writing clarity, and develop a deeper understanding of language nuances.
When you paraphrase, you can combine sentences into a single sentence. How many sentences from the original paragraph combine to make the last sentence in the summary?
", + "id": "1939c5c4-cd9b-42df-9350-88e03b3dacf5", + "verified": true, + "standalone": false, + "exercise": { + "question": "Scientists are studying the adaptations of living organisms in order to use their designs in products and technologies for humans. This process is called biomimetics. Velcro is one example of biomimetics. In 1948, a Swiss scientist, George de Mestral, removed a bur stuck to his dog's fur. De Mestral studied it under a microscope and noticed how well hooks on the bur stuck to things. He copied the design to make a two-piece fastening device. One piece has stiff hooks like the ones on the bur. The other piece has soft loops that allow the hooks to attach to it.
Let's analyze how the original paragraph has been summarized, focusing on sentence combination. We'll compare the original text with the summary to identify which sentences were combined.
The original paragraph contains 7 sentences:
Now, let's look at the summary, particularly the last sentence:
d. He created a two-part fastener by mimicking the loops on the bur and the softness of the dog's fur.
This sentence combines information from the following original sentences:
The last sentence in the summary combines information from 3 sentences in the original paragraph. It effectively condenses the key points about de Mestral's observation and invention into a single, concise sentence.
This exercise demonstrates the power of combining sentences when paraphrasing:
By mastering this skill, you can create more effective summaries and demonstrate a deeper understanding of the original text.
Use challenge with (adj.) biggest challenge, new challenge; (v.) accept a challenge, face a challenge, present a challenge.
", + "id": "858f56f5-7a1a-4e0c-8be1-5e6e5a2483ff", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 189, + "tips": [ + { + "category": "CT Focus", + "embedding": "Relating information to personal experience means comparing situations that you read about to experiences in your own life.", + "text": "Relating information to personal experience means comparing situations that you read about to experiences in your own life. Ask yourself questions: What would I do in that situation? Have I experienced something like that? How might this idea apply to my own life?", + "html": "Relating information to personal experience means comparing situations that you read about to experiences in your own life. Ask yourself questions: What would I do in that situation? Have I experienced something like that? How might this idea apply to my own life?
", + "id": "2c9b9d65-e45d-4f7c-a053-8fe45babeb68", + "verified": true, + "standalone": false, + "exercise": { + "question": "Ken Banks does not run health care programs in Africa. He also does not provide information to farmers in El Salvador. However, his computer software1 is helping people do those things—and more.
Banks was working in South Africa in 2003 and 2004. He saw that there were many organizations in Africa that were trying to help people. They were doing good work, but it was difficult for them to communicate over great distances. They didn't have much money, and many didn't have Internet access. But they did have cell phones.
Banks had an idea. He created some computer software called FrontlineSMS. “I wrote the software in five weeks at a kitchen table,” Banks says. The software allows users to send information from computers without using the Internet. It can work with any kind of computer. Users install the software on a computer. Then they connect a cell phone to the computer. To send information, users select the people they want to send it to and hit “send.” The cell phone sends the information as a text message from the computer.
FrontlineSMS software is free. It can work with an inexpensive laptop. It works with old cell phones, too. In fact, it can work almost anywhere in the world, even in places where electricity is not very dependable. Today, people are using FrontlineSMS to send important information in more than 50 nations.
For example, Nigerians used it to monitor their 2007 election2. Voters sent 10,000 texts to describe what was happening when they went to vote. In Malawi, a rural health care program uses FrontlineSMS to contact patients. As a result, workers no longer have to visit patients' homes to update medical records. The program saves thousands of hours of doctor time and thousands of dollars in fuel costs. In other parts of the world, such as Indonesia, Cambodia, Niger, and El Salvador, farmers now receive the most current prices for their crops3 by cell phone. As a result, the farmers can earn more money.
FrontlineSMS is an example of taking an idea and turning it into a successful reality. So, what should you do if you have an idea for making the world a better place? Banks advises first researching your idea thoroughly. Try to find out if your idea offers something that people really need. The best way to do this kind of research is to go into the community and talk to people. Then take advantage of social media tools such as blogs, he advises. They allow you to get your message out and connect with people who have similar ideas.
Technology is not a solution by itself, but it's a useful tool for solving many of the world's great challenges. Using today's technology, Banks says, makes it faster and easier than ever to make the world a better place.
", + "segments": [ + { + "html": "This exercise asks us to relate the information in the passage about FrontlineSMS to our personal experiences with communicating important information to large groups. Let's break down the task and then explore how we can approach it.
Now, let's think about our own experiences with mass communication:
Here's an example of how you might answer these questions:
Situation: Organizing a school fundraiser
Method: Created a Facebook event and used group text messaging
Technology: Smartphone, social media platforms
Success: Mostly successful, reached many people quickly
Comparison to FrontlineSMS: Effective with good internet, but limited reach
After identifying your experience, consider these questions:
By connecting the passage to your own experiences, you can:
This approach not only deepens your understanding of the text but also helps you critically evaluate your own communication strategies and their effectiveness in different scenarios.
| Paragraph Number | Main Idea | Supporting Details |
|---|---|---|
| 2 | How Banks got the idea for FrontlineSMS | Lived in S. Africa in 2003-04 Trouble communicating without electricity, Internet, etc., but did have cell phones |
| 3 | ||
| 4 | ||
| 5 | ||
| 6 |
Ken Banks does not run health care programs in Africa. He also does not provide information to farmers in El Salvador. However, his computer software1 is helping people do those things—and more.
Banks was working in South Africa in 2003 and 2004. He saw that there were many organizations in Africa that were trying to help people. They were doing good work, but it was difficult for them to communicate over great distances. They didn't have much money, and many didn't have Internet access. But they did have cell phones.
Banks had an idea. He created some computer software called FrontlineSMS. “I wrote the software in five weeks at a kitchen table,” Banks says. The software allows users to send information from computers without using the Internet. It can work with any kind of computer. Users install the software on a computer. Then they connect a cell phone to the computer. To send information, users select the people they want to send it to and hit “send.” The cell phone sends the information as a text message from the computer.
FrontlineSMS software is free. It can work with an inexpensive laptop. It works with old cell phones, too. In fact, it can work almost anywhere in the world, even in places where electricity is not very dependable. Today, people are using FrontlineSMS to send important information in more than 50 nations.
For example, Nigerians used it to monitor their 2007 election2. Voters sent 10,000 texts to describe what was happening when they went to vote. In Malawi, a rural health care program uses FrontlineSMS to contact patients. As a result, workers no longer have to visit patients' homes to update medical records. The program saves thousands of hours of doctor time and thousands of dollars in fuel costs. In other parts of the world, such as Indonesia, Cambodia, Niger, and El Salvador, farmers now receive the most current prices for their crops3 by cell phone. As a result, the farmers can earn more money.
FrontlineSMS is an example of taking an idea and turning it into a successful reality. So, what should you do if you have an idea for making the world a better place? Banks advises first researching your idea thoroughly. Try to find out if your idea offers something that people really need. The best way to do this kind of research is to go into the community and talk to people. Then take advantage of social media tools such as blogs, he advises. They allow you to get your message out and connect with people who have similar ideas.
Technology is not a solution by itself, but it's a useful tool for solving many of the world's great challenges. Using today's technology, Banks says, makes it faster and easier than ever to make the world a better place.
", + "segments": [ + { + "html": "Let's break down the article paragraph by paragraph, focusing on the main ideas and supporting details. We'll use the note-taking strategy to capture key points concisely.
Main Idea: Description of FrontlineSMS software
Supporting Details:
Created in 5 weeks
Sends info without internet
Works with any computer
Connects cell phone to computer
Sends info as text message
" + } + ] + }, + { + "html": "Main Idea: FrontlineSMS is widely accessible
Supporting Details:
Free software
Works with cheap laptops and old phones
Functions in areas with unreliable electricity
Used in over 50 countries
" + } + ] + }, + { + "html": "Main Idea: Examples of FrontlineSMS usage worldwide
Supporting Details:
Nigeria: Election monitoring (10,000 texts)
Malawi: Rural healthcare (saves time and money)
Various countries: Farmers get crop prices
" + } + ] + }, + { + "html": "Main Idea: Banks' advice for turning ideas into reality
Supporting Details:
Research thoroughly
Ensure idea meets real needs
Talk to community members
Use social media to connect and share
" + } + ] + }, + { + "html": "This exercise demonstrates the importance of concise, focused note-taking:
By practicing this skill, you can improve your ability to extract and retain essential information from any text you read.
Use imagine with (v.) can / can't imagine something, try to imagine; (adj.) difficult / easy / hard to imagine; possible / impossible to imagine.
", + "id": "f5a3c6cb-9680-45c8-b38a-e5ebcaad4b68", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 197, + "tips": [ + { + "category": "Language for Writing", + "embedding": "Using Modals to Discuss Abilities and Possibilities\n\nSome modals express abilities and possibilities. These modals are useful for describing solutions. Can shows present ability. Will, could, may, and might show future possibility.", + "text": "Using Modals to Discuss Abilities and Possibilities\n\nSome modals express abilities and possibilities. These modals are useful for describing solutions.\nCan shows present ability: FrontlineSMS can work with any kind of computer.\n\nWill, could, may, and might show future possibility. The modal you choose depends on your degree of certainty. Will is most certain, could is less certain, and may and might are the least certain.\nRadio collars will solve the problem. (I'm certain of this.)\nRadio collars could solve the problem. (I'm less certain.)\nRadio collars might solve the problem. (I'm the least certain.)\nNote: Remember to use the base form of the verb after a modal.", + "html": "Some modals express abilities and possibilities. These modals are useful for describing solutions.
Can shows present ability: FrontlineSMS can work with any kind of computer.
Will, could, may, and might show future possibility. The modal you choose depends on your degree of certainty. Will is most certain, could is less certain, and may and might are the least certain.
Radio collars will solve the problem. (I'm certain of this.)
Radio collars could solve the problem. (I'm less certain.)
Radio collars might solve the problem. (I'm the least certain.)
Note: Remember to use the base form of the verb after a modal.
", + "id": "2c181ca9-44c9-4724-9c15-90b1b20946bf", + "verified": true, + "standalone": false, + "exercise": { + "question": "This exercise focuses on using modal verbs to express different levels of certainty about abilities and possibilities. Let's break down the task and approach each sentence step by step.
We use 'could' here because it expresses a future possibility with less certainty than 'will' but more certainty than 'might' or 'may'.
We use 'might' or 'may' here because the cue specifies the least certain possibility.
'Can' is used here because it expresses a present ability or capability.
'Will' is used here because it expresses the highest level of certainty about a future possibility.
Understanding and correctly using modal verbs is crucial for effective communication:
By mastering the use of modal verbs, you can communicate ideas about abilities and possibilities with greater accuracy and sophistication.
Remember to use transition words and phrases when you describe a solution that involves a sequence of steps.
", + "id": "b70928a7-b6fe-430e-bfc2-32b15e189186", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 200, + "tips": [ + { + "category": "Strategy", + "embedding": "One way to provide support for your solution is to describe an alternative and say why it isn't as good as your solution.", + "text": "One way to provide support for your solution is to describe an alternative and say why it isn't as good as your solution.", + "html": "One way to provide support for your solution is to describe an alternative and say why it isn't as good as your solution.
", + "id": "58d66b4a-aebe-445d-a329-4385e239d84f", + "verified": true, + "standalone": true + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/modules/training_content/tips/prompt.txt b/modules/training_content/tips/prompt.txt new file mode 100644 index 0000000..da118cb --- /dev/null +++ b/modules/training_content/tips/prompt.txt @@ -0,0 +1,62 @@ +I am going to give you an exercise and a tip, explain how to solve the exercise and how the tip is beneficial, +your response must be with this format: + +{ + "segments": [ + { + "html": "", + "wordDelay": 0, + "holdDelay"; 0, + "highlight": [ + { + "targets": [], + "phrases": [] + } + ], + "insertHTML": [ + { + "target": "", + "targetId": "", + "position": "replace", + "html": "" + } + ] + } + ] +} + +Basically you are going to produce multiple objects and place it in data with the format above to integrate with a react component that highlights passages and inserts html, +these objects are segments of your explanation that will be presented to a student. + +In the html field place a segment of your response that will be streamed to the component with a delay of "wordDelay" ms and in the end of that segment stream the phrases or words inside +"highlight" will be highlighted for "holdDelay" ms, and the cycle repeats until the whole data array is iterated. Make it so +that the delays are reasonable for the student have time to process the message your trying to send. Take note that +"wordDelay" is the time between words to display (always 200), and "holdDelay" (no less than 5000) is the total time the highlighter will highlight what you put +inside "highlight". + +There are 3 target areas: +- "question": where the question is placed +- "additional": where additional content is placed required to answer the question (this section is optional) +- "segment": a particular segment + +You can use these targets in highlight and insertHTML. In order for insertHTML to work, you will have to place an html element with an "id" attribute +in the targets you will reference and provide the id via the "targetId", by this I mean if you want to use insert you will need to provide me the +html I've sent you with either a placeholder element with an id set or set an id in an existent element. + +If there are already id's in the html I'm giving you then you must use insertHtml. + +Each segment html will be rendered in a div that as margins, you should condense the information don't give me just single short phrases that occupy a whole div. +As previously said this wil be seen by a student so show some train of thought to solve the exercise. +All the segment's html must be wrapped in a div element, and again since this div element will be rendered with some margins make proper use of the segments html. + +Try to make bulletpoints. +Dont explicitely mention the tip right away at the beginning, aim more towards the end. + + +Tip: + + +Target: "question" + + +Target: "additional" diff --git a/modules/training_content/tips/send_tips_to_firestore.py b/modules/training_content/tips/send_tips_to_firestore.py new file mode 100644 index 0000000..714e944 --- /dev/null +++ b/modules/training_content/tips/send_tips_to_firestore.py @@ -0,0 +1,34 @@ +import json +import os + +from dotenv import load_dotenv + +from pymongo import MongoClient + +load_dotenv() + +# staging: encoach-staging.json +# prod: storied-phalanx-349916.json + +mongo_db = MongoClient(os.getenv('MONGODB_URI'))[os.getenv('MONGODB_DB')] + +if __name__ == "__main__": + with open('pathways_2_rw.json', 'r', encoding='utf-8') as file: + book = json.load(file) + + tips = [] + for unit in book["units"]: + for page in unit["pages"]: + for tip in page["tips"]: + new_tip = { + "id": tip["id"], + "standalone": tip["standalone"], + "tipCategory": tip["category"], + "tipHtml": tip["html"] + } + if not tip["standalone"]: + new_tip["exercise"] = tip["exercise"] + tips.append(new_tip) + + for tip in tips: + doc_ref = mongo_db.walkthrough.insert_one(tip)