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": "", + "embedding": "", + "text": "", + "html": "", + "id": "", + "verified": , + "standalone": +} +``` + +If the manual does have an exercise that relates to the tip: + +```json +{ + // ... + "question": "", + "additional": "", + "segments": [ + { + "html": " >", + "wordDelay": , + "holdDelay": , + "highlight": [ + { + "targets": [""], + "phrases": [""] + } + ], + "insertHTML": [ + { + "target": "", + "targetId": "", + "position": "", + "html": "" + }, + ] + } + ] +} +``` + +In order to create these structures you will have to mannually screenshot the tips, exercises, context and send them to an llm (gpt-4o or claude) +with a prompt like "get me the html for this", you will have to check whether the html is properly structured and then +paste them in the prompt.txt file of this directory and send it +back to an llm. + +Afterwards you will have to check whether the default styles in /src/components/TrainingContent/FormatTip.ts are adequate, divs +(except for the wrapper div of a segment) and span styles are not overriden but you should aim to use the least ammount of +styles in the tip itself and create custom reusable html elements +in FormatTip.ts. + +After checking all of the tips render you will have to create new embeddings in the backend, you CAN'T change ids of existing tips since there +might be training tips that are already stored in firebase. + +This is a very tedious task here's a recommendation for [background noise](https://www.youtube.com/watch?v=lDnva_3fcTc). + +GL HF diff --git a/modules/training_content/tips/pathways_2_rw.json b/modules/training_content/tips/pathways_2_rw.json new file mode 100644 index 0000000..e8c1130 --- /dev/null +++ b/modules/training_content/tips/pathways_2_rw.json @@ -0,0 +1,7579 @@ +{ + "title": "Pathways Reading, Writing and Critical Thinking 2", + "pdf_page_offset": 18, + "units": [ + { + "unit": 1, + "title": "Happiness", + "pages": [ + { + "page": 4, + "tips": [ + { + "category": "Strategy", + "embedding": "Read titles and subheads to predict what a passage is about. This will help you know what to expect as you read.", + "text": "Read titles and subheads to predict what a passage is about. This will help you know what to expect as you read.", + "html": "

Read titles and subheads to predict what a passage is about. This will help you know what to expect as you read.

", + "id": "658b24d4-9c9c-4c2b-8451-f00addaaae3e", + "standalone": false, + "verified": true, + "exercise": { + "question": "

Read the title and the subheads of the reading passage. What do you think the reading passage is about?

  • Different things make different people happy.
  • Security is the most important thing for happiness.
  • Everyone needs the same basic things to be happy.
", + "additional": "

Is there a Recipe for Happiness?

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.

Safety and Security

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.'

Friends and Neighbors

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.

A Mixed Recipe?

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

1 A square mile = 2.59 square kilometers2 Littering is leaving garbage or trash lying around outside.3 Graffiti is words or pictures that are written or drawn on walls or other public places.4 If you top something up, you add to it to make it full.5 If the government gives someone a tax break, it lowers the amount of tax they have to pay.
", + "segments": [ + { + "html": "

Understanding the Tip

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.

", + "wordDelay": 200, + "holdDelay": 5000 + }, + { + "html": "

Applying the Tip

Let's look at the title and subheads of our passage:

  • Title: Is there a Recipe for Happiness?
  • Subhead 1: Safety and Security
  • Subhead 2: Friends and Neighbors
  • Subhead 3: A Mixed Recipe?
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Is there a Recipe for Happiness?", + "Safety and Security", + "Friends and Neighbors", + "A Mixed Recipe?" + ] + } + ] + }, + { + "html": "

Based on these, we can predict that the passage will discuss:

  • Various factors that contribute to happiness
  • The role of safety and security in happiness
  • How social relationships affect happiness
  • The possibility that happiness might have multiple sources
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "factors that contribute to happiness", + "safety and security", + "social relationships", + "multiple sources" + ] + } + ] + }, + { + "html": "

Answering the Question

Now, let's look at the options provided:

  • Different things make different people happy.
  • Security is the most important thing for happiness.
  • Everyone needs the same basic things to be happy.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Different things make different people happy.", + "Security is the most important thing for happiness.", + "Everyone needs the same basic things to be happy." + ] + } + ] + }, + { + "html": "

Based on our prediction from the title and subheads, the best answer is:

a. Different things make different people happy.

This answer aligns with the idea of exploring various factors and the possibility of a 'mixed recipe' for happiness.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Different things make different people happy." + ] + } + ] + }, + { + "html": "

Benefits of the Tip

By reading titles and subheads:

  • You get a quick overview of the main topics
  • It helps you anticipate the content, making reading easier
  • You can better focus on key information while reading
  • It improves comprehension and retention of the material
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "quick overview", + "anticipate the content", + "focus on key information", + "improves comprehension" + ] + } + ] + } + ] + } + }, + { + "category": "Word Link", + "embedding": "To increase your vocabulary use a dictionary to find other forms of a word.", + "text": "To increase your vocabulary use a dictionary to find other forms of a word, e.g., (adj.) confident, (n.) confidence; (adj.) secure, (n.) security; (n.) freedom, (adj.) free; (v.) socialize, (adj.) social; (adj.) financial, (n.) finance.", + "standalone": true, + "html": "

To increase your vocabulary use a dictionary to find other forms of a word, e.g. :

  • (adj.) confident, (n.) confidence;
  • (adj.) secure, (n.) security;
  • (n.) freedom, (adj.) free;
  • (v.) socialize, (adj.) social;
  • (adj.) financial, (n.) finance.
", + "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": "

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.

", + "id": "dbb2d0a9-2c68-4933-8cd6-8a51d6e0ad9c", + "standalone": false, + "verified": true, + "exercise": { + "question": "

Guessing Meaning from Context

Use context to identify the bold words meaning. Then match the sentence halves to make definitions.

", + "additional": "
    If you are strict, If you are flushing something, If you are unemployed, If you look after people, If you make something public,
    you provide it to everyone. you take care of them and make sure they are well. you don't allow people to behave badly. you do not have a job. you are cleaning or emptying it with a fast flow of water.
", + "segments": [ + { + "html": "

Guessing Meaning from Context

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + }, + { + "html": "

1. Strict

Sentence: 'If you are strict,'

Context clue: The sentence implies a characteristic or behavior.

Matching definition: c.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "If you are strict,", + "you don't allow people to behave badly." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "question-1", + "position": "replace", + "html": "c." + } + ] + }, + { + "html": "

2. Flushing

Sentence: 'If you are flushing something,'

Context clue: The word 'something' suggests an action being done to an object.

Matching definition: e.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "If you are flushing something,", + "you are cleaning or emptying it with a fast flow of water." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "question-2", + "position": "replace", + "html": "e." + } + ] + }, + { + "html": "

3. Unemployed

Sentence: 'If you are unemployed,'

Context clue: The prefix 'un-' often means 'not' or 'without'.

Matching definition: d.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "If you are unemployed,", + "you do not have a job." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "question-3", + "position": "replace", + "html": "d." + } + ] + }, + { + "html": "

4. Look after

Sentence: 'If you look after people,'

Context clue: The phrase suggests an action done for others.

Matching definition: b.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "If you look after people,", + "you take care of them and make sure they are well." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "question-4", + "position": "replace", + "html": "b." + } + ] + }, + { + "html": "

5. Public

Sentence: 'If you make something public,'

Context clue: 'Make something' suggests changing the state or availability of information.

Matching definition: a.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "If you make something public,", + "you provide it to everyone." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "question-5", + "position": "replace", + "html": "a." + } + ] + }, + { + "html": "

Key Strategy

When guessing word meanings from context:

  • Look at the words surrounding the unknown word
  • Consider the overall topic or theme of the sentence
  • Analyze prefixes, suffixes, or word parts for clues
  • Think about the part of speech (noun, verb, adjective, etc.)
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + }, + { + "html": "

Helpful Tip

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + } + ] + } + } + ] + }, + { + "page": 8, + "tips": [ + { + "category": "Reading Skill", + "embedding": "Identifying the Main\n\nIdea 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.", + "text": "Identifying the Main Idea\n\nThe 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. Read the paragraph below and think about the main idea.\n\nResearchers 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.\n\nWhich of these statements is the main idea of the paragraph?\n\na. People in Mexico are happy because they get a lot of vitamin D.\nb. Tanning makes us create more endorphins, which make us feel happy.\nc. Mexico gets a lot of sun, which may make people there happier.\n\nThe last sentence is the main idea. The other two sentences are supporting ideas that explain the main idea.", + "html": "

Identifying the Main Idea

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.

", + "id": "ec975445-8bce-4c7e-8ff4-9c870252a39d", + "standalone": false, + "verified": true, + "exercise": { + "question": "

Which of these statements is the main idea of the paragraph?

  • People in Mexico are happy because they get a lot of vitamin D.
  • Tanning makes us create more endorphins, which make us feel happy.
  • Mexico gets a lot of sun, which may make people there happier.
", + "additional": "

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.

", + "segments": [ + { + "html": "

Analyzing the Paragraph

Let's break down the key points in the given paragraph:

  • Sunny weather in Mexico contributes to happiness
  • Mexico has many hours of sunlight
  • People in Mexico get a lot of vitamin D
  • Vitamin D is important for health and well-being
  • Tanning produces endorphins, which make people feel happy
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "sunny weather", + "Sunny weather", + "happiness", + "Tanning", + "people tan", + "Mexico", + "happy", + "vitamin D", + "health and well-being", + "endorphins", + "many hours of sunlight", + "Vitamin D" + ] + } + ] + }, + { + "html": "

Identifying Key Relationships

The paragraph establishes connections between:

  • Sunny weather and happiness in Mexico
  • Sunlight and vitamin D production
  • Vitamin D and overall well-being
  • Tanning and endorphin production
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "additional", + "segment" + ], + "phrases": [ + "Sunny weather", + "sunny weather", + "Mexico", + "happy", + "happiness", + "sunlight", + "Sunlight", + "vitamin D", + "Vitamin D", + "overall health and well-being", + "overall well-being", + "people tan", + "endorphins", + "Tanning", + "endorphin production" + ] + } + ] + }, + { + "html": "

Evaluating the Options

Now, let's consider each option:

  • People in Mexico are happy because they get a lot of vitamin D.
  • Tanning makes us create more endorphins, which make us feel happy.
  • Mexico gets a lot of sun, which may make people there happier.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "People in Mexico are happy because they get a lot of vitamin D.", + "Tanning makes us create more endorphins, which make us feel happy.", + "Mexico gets a lot of sun, which may make people there happier." + ] + } + ] + }, + { + "html": "

Selecting the Main Idea

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.

", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Mexico gets a lot of sun, which may make people there happier." + ] + } + ] + }, + { + "html": "

Understanding Main Ideas

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.

", + "wordDelay": 200, + "holdDelay": 8000 + }, + { + "html": "

Applying This Approach

By focusing on identifying the main idea:

  • We can quickly grasp the central message of a text
  • We can distinguish between primary concepts and supporting details
  • We improve our reading comprehension and retention
  • We can more effectively summarize and discuss the content we read

This skill is crucial for efficient reading and understanding of various texts, from academic materials to everyday articles.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "main idea", + "central message", + "primary concepts", + "supporting details", + "reading comprehension", + "retention", + "summarize", + "discuss", + "efficient reading", + "understanding" + ] + } + ] + } + ] + } + }, + { + "category": "CT Focus", + "embedding": "Use the context to guess the meaning of new words.", + "text": "Use the context to guess the meaning of new words.", + "html": "

Use the context to guess the meaning of new words. What do fit, obesity and recreation mean?

", + "id": "49e4ac6c-e927-407d-b05a-fbec974ea20e", + "standalone": false, + "verified": true, + "exercise": { + "question": "

Identifying the Main Idea.

Read the information about Denmark. Then write the main idea of the paragraph.

", + "additional": "It's hard to be happy when you're unhealthy, According to the World Database of Happiness, Denmark is the second happiest country in the world, and most Danes are fit. They have a lower rate of obesity than many of their European neighbors. Danish cities are designed so it's easy to walk or bike from one place to another. With a 30-minute walk, you can go from the city of Copenhagen to the ocean, where you can sail or swim, or to the woods, where you can hike. Everyone has easy access to recreation.", + "segments": [ + { + "html": "

Identifying the Main Idea

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "main idea", + "recurring themes", + "emphasized points" + ] + } + ] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "Denmark", + "health", + "happiness", + "unhealthy", + "happy", + "most Danes are fit" + ] + } + ] + }, + { + "html": "

Key Points:

  • Denmark is the second happiest country in the world.
  • Most Danes are fit and have a lower rate of obesity.
  • Danish cities encourage walking and biking.
  • Easy access to recreation activities.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "second happiest country", + "fit", + "obesity", + "recreation" + ] + } + ] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "main idea", + "urban design", + "lifestyle choices", + "physical health", + "mental well-being" + ] + } + ] + }, + { + "html": "

Applying the Tip:

Now, let's use the provided tip:
Use the context to guess the meaning of new words. Let's examine fit, obesity, and recreation.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Use the context", + "fit", + "obesity", + "recreation" + ] + } + ] + }, + { + "html": "
  • Fit: Likely means being in good physical health, as it's contrasted with obesity.
  • Obesity: Refers to being overweight or having excess body fat, which is less common in Denmark.
  • Recreation: Activities done for enjoyment and relaxation, such as walking, biking, sailing, or hiking.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Fit", + "good physical health", + "Obesity", + "excess body fat", + "Recreation", + "enjoyment and relaxation" + ] + } + ] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "context", + "health and happiness", + "comprehending new vocabulary" + ] + } + ] + } + ] + } + } + ] + }, + { + "page": 10, + "tips": [ + { + "category": "CT Focus", + "embedding": "Look for key words to help you guess meaning from context.", + "text": "Look for key words to help you guess meaning from context.", + "html": "

Look for key words to help you guess meaning from context.

", + "id": "d1845a62-cc3b-4090-906a-6e16ad9c1496", + "standalone": false, + "verified": true, + "exercise": { + "question": "

Building Vocabulary

Look at the words around the bold words to guess their meanings. Then determine the best definition (a or b) of each word.

", + "additional": "
  1. A researcher who studies happiness might ask people what kinds of things make them happy.

    • someone who studies something and tries to discover facts about it
    • someone who teaches subjects such as science and math in school
  2. A person's long-term goals can include going to college and then medical school.

    • happening over a long time
    • traveling for a long distance
  3. 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?

    • the place where you live
    • a place where people meet
  4. Most happy people have a hobby, such as writing, surfing, or painting.

    • something that you do for money, such as a job
    • an activity that you enjoy doing in your free time
  5. 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.

    • do something without being paid
    • go to school with a group of people
  6. People feel happier when they are grateful for the things that they have. They spend less time wanting things that they don't have.

    • thankful
    • excited
  7. A person's mood can depend on many things. For example, if someone says something nice about you, it can make you feel good.

    • the place where you spend most of your time
    • the way you feel at a particular time
  8. Healthy food, exercise, and friends are important for a person's well-being.

    • health and happiness
    • the way you spend your time
  9. 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.

    • help
    • teach
  10. Good health is one factor that can make you a happy person. A close group of friends is another factor.

    • one of the things that causes a situation
    • something that is difficult or causes problems
", + "segments": [ + { + "html": "

Understanding Context Clues

When encountering unfamiliar words, the surrounding text often provides valuable hints about their meanings. Let's explore this concept using the given examples.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + }, + { + "html": "

1. Researcher

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "studies happiness", + "ask people what kinds of things make them happy", + " someone who studies something and tries to discover facts about it", + "a. someone who studies something and tries to discover facts about it" + ] + } + ] + }, + { + "html": "

2. Long-term

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "goals can include going to college and then medical school", + "a. happening over a long time", + " happening over a long time" + ] + } + ] + }, + { + "html": "

3. Community

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "people who live near you", + "area have good places to shop, eat, and socialize", + "area has good places to shop, eat, and socialize", + "a. the place where you live", + " the place where you live" + ] + } + ] + }, + { + "html": "

4. Hobby

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Most happy people", + "writing, surfing, or painting", + "b. an activity that you enjoy doing in your free time", + " an activity that you enjoy doing in your free time" + ] + } + ] + }, + { + "html": "

5. Volunteer

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "help others who are in need", + "get no money for volunteering", + "a. do something without being paid", + " do something without being paid" + ] + } + ] + }, + { + "html": "

6. Grateful

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "for the things that they have", + "spend less time wanting things that they don't have", + "a. thankful", + " thankful" + ] + } + ] + }, + { + "html": "

7. Mood

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "can depend on many things", + "if someone says something nice about you, it can make you feel good", + "b. the way you feel at a particular time", + " the way you feel at a particular time" + ] + } + ] + }, + { + "html": "

8. Well-being

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Healthy food, exercise, and friends are important for", + "a. health and happiness", + " health and happiness" + ] + } + ] + }, + { + "html": "

9. Support

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "pay their parents' bills and provide them with food and a place to live", + "a. help", + " help" + ] + } + ] + }, + { + "html": "

10. Factor

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

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Good health is one factor", + "A close group of friends is another factor", + "a. one of the things that causes a situation", + " one of the things that causes a situation" + ] + } + ] + }, + { + "html": "

Key Strategy

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + }, + { + "html": "

Tip Reminder

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + } + ] + } + }, + { + "category": "Word Partners", + "embedding": "Use factor.", + "text": "Use factor with: (adj.) contributing factor, deciding factor, important factor, key factor; (n.) risk factor.", + "html": "

Use factor with: (adj.) contributing factor, deciding factor, important factor, key factor; (n.) risk factor.

", + "id": "fb055481-9d53-4bf4-977a-5dfedccf9d57", + "standalone": true, + "verified": true + } + ] + }, + { + "page": 14, + "tips": [ + { + "category": "Strategy", + "embedding": "Look for clues to the main idea in the first (and sometimes second) sentence of a paragraph.", + "text": "Look for clues to the main idea in the first (and sometimes second) sentence of a paragraph.", + "html": "

Look for clues to the main idea in the first (and sometimes second) sentence of a paragraph.

", + "id": "999b1968-f3d0-488e-8957-56f97517dff5", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Identifying Main Ideas

Read the statements below. Determine the main idea in each pair of statements (a or b).

", + "additional": "
CategoryOption AOption B
SelfYou 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.
HomeIt's a good idea to paint your living room yellow.You should arrange your home so that it makes you feel happy.
Financial LifeYou 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 LifeA good group of friends can increase your happiness.Researchers say that a happy friend can increase our mood by nine percent.
WorkplaceYou spend a lot of time at work, so you should like your workplace.Your boss needs to be someone you enjoy working for.
CommunityThe 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.
", + "segments": [ + { + "html": "

Identifying Main Ideas

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + }, + { + "html": "

1. Self

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "You need to take care of yourself and connect with the people around you." + ] + } + ] + }, + { + "html": "

2. Home

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "You should arrange your home so that it makes you feel happy." + ] + } + ] + }, + { + "html": "

3. Financial Life

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "You can be happy if you have enough money, but don't want money too much." + ] + } + ] + }, + { + "html": "

4. Social Life

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "A good group of friends can increase your happiness." + ] + } + ] + }, + { + "html": "

5. Workplace

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "You spend a lot of time at work, so you should like your workplace." + ] + } + ] + }, + { + "html": "

6. Community

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "The place where you live is more important for happiness than anything else." + ] + } + ] + }, + { + "html": "

Key Strategy

When identifying main ideas:

  • Look for broader, more encompassing statements
  • Consider which statement other ideas could fall under
  • Identify which statement provides a general principle rather than a specific example
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + }, + { + "html": "

Helpful Tip

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + } + ] + } + } + ] + }, + { + "page": 15, + "tips": [ + { + "category": "Strategy", + "embedding": "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.", + "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.", + "html": "

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.

", + "id": "a5913388-e4bd-4c4c-a9fb-bab8642c1360", + "verified": true, + "standalone": true + } + ] + }, + { + "page": 16, + "tips": [ + { + "category": "Writing Skill", + "embedding": "Writing a Topic Sentence\n\nA 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.\n\nA topic sentence should introduce the main idea that the paragraph will discuss or examine.", + "text": "Writing a Topic Sentence\n\nA 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.\n\nA topic sentence should introduce the main idea that the paragraph will discuss or examine.\n\nBelow are some examples of strong and weak topic sentences.\n\nStrong Topic Sentences\n\nOne reason that Singaporeans are happy is that the government provides the basic necessities, such as jobs and housing.\n\nPeople in Mexico socialize a lot, and this may contribute to their happiness.\n\nWeak Topic Sentences\n\nSingaporeans are happy.\n\n(If the paragraph is about the ways that the government improves people's happiness, this idea should be included in the topic sentence.)\n\nPeople in Mexico socialize a lot.\n\n(if the paragraph is about how socializing contributes to people's happiness in Mexico, this idea should be included in the topic sentence.)", + "html": "

Writing a Topic Sentence

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.

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.

(If the paragraph is about the ways that the government improves people's happiness, this idea should be included in the topic sentence.)

People in Mexico socialize a lot.

(if the paragraph is about how socializing contributes to people's happiness in Mexico, this idea should be included in the topic sentence.)

", + "id": "9867613b-6575-432c-8246-3717bafa6860", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Identify the topic sentence in each paragraph. One of the topic sentences is stronger than the others.

  1. In Mexico, family is important. Family members provide support to each other during difficult times. Grandmothers take care of grandchildren so the children's mothers can go to work and earn money. When they grow up, children take care of their parents. People in Mexico are generally happy as long as family members are close.
  2. Studies have shown that laughter may be an important factor for our happiness, and people who laugh a lot are happier. People who laugh more tend to have higher levels of self-esteem. They also tend to be healthier. Laughter is so important for our general well-being that some people go to “laugh therapy” where they laugh with groups of people.
  3. We spend most of our daily lives at work. Our work can increase our happiness. In many countries, a lot of people choose their job based on how much it pays, or on what other people think about that job. But in Denmark, one of the world's happiest countries, most people take jobs that interest them. That gives them a better chance to feel good about the work that they do.

Rewrite the two topic sentences that are weak.

", + "segments": [ + { + "html": "

Analyzing Topic Sentences in Paragraphs

Let's examine each paragraph to identify the topic sentences and evaluate their strength. We'll then work on improving the weaker ones.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["Identify the topic sentence in each paragraph"] + } + ], + "insertHTML": [] + }, + { + "html": "

Paragraph 1

Topic sentence: 'In Mexico, family is important.'

  • This is a weak topic sentence because:
  • It doesn't fully introduce the main idea of the paragraph
  • It doesn't connect family importance to happiness, which is the paragraph's focus

A stronger version could be: 'In Mexico, the importance of family contributes significantly to people's happiness.'

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["In Mexico, family is important.", "People in Mexico are generally happy as long as family members are close."] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "In Mexico, the importance of family contributes significantly to people's happiness." + } + ] + }, + { + "html": "

Paragraph 2

Topic sentence: 'Studies have shown that laughter may be an important factor for our happiness, and people who laugh a lot are happier.'

  • This is a strong topic sentence because:
  • It clearly states the main idea of the paragraph
  • It introduces the connection between laughter and happiness
  • It sets up the supporting details that follow
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["Studies have shown that laughter may be an important factor for our happiness, and people who laugh a lot are happier."] + } + ], + "insertHTML": [] + }, + { + "html": "

Paragraph 3

Topic sentence: 'We spend most of our daily lives at work.'

  • This is a weak topic sentence because:
  • It doesn't introduce the main idea of job satisfaction and happiness
  • It doesn't mention Denmark or contrast it with other countries

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.'

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["We spend most of our daily lives at work.", "In Denmark, one of the world's happiest countries, most people take jobs that interest them."] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "In Denmark, one of the world's happiest countries, people prioritize job satisfaction over salary, contributing to their overall happiness." + } + ] + }, + { + "html": "

The Importance of Strong Topic Sentences

Crafting effective topic sentences is crucial for clear and organized writing:

  • They provide a roadmap for the reader, introducing the main idea of the paragraph
  • They help maintain focus and coherence within the paragraph
  • They make the writer's argument or point clearer and more persuasive
  • They improve the overall flow and readability of the text

By mastering the art of writing strong topic sentences, you can significantly enhance the quality and effectiveness of your writing.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["A topic sentence should introduce the main idea that the paragraph will discuss or examine."] + } + ], + "insertHTML": [] + }, + { + "html": "

Applying the Topic Sentence Tip

The provided tip offers valuable guidance for writing effective topic sentences:

  • It emphasizes that a topic sentence should state the main idea of the paragraph
  • It notes that topic sentences often (but not always) appear at the beginning of paragraphs
  • It provides examples of strong and weak topic sentences, illustrating how to improve weak ones
  • It demonstrates how to connect the topic sentence to the paragraph's focus (e.g., relating socialization to happiness in the Mexico example)

By applying these principles, you can create more coherent and focused paragraphs, enhancing the overall quality of your writing.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["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"] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 18, + "tips": [ + { + "category": "CT Focus", + "embedding": "Use context to help you guess meaning.", + "text": "Use context to help you guess meaning. For example, does passionate mean a good feeling or a bad feeling?", + "html": "

Use context to help you guess meaning. For example, does passionate mean a good feeling or a bad feeling?

", + "id": "a680672e-4a62-4989-a130-d0611e53cbc1", + "standalone": false, + "verified": true, + "exercise": { + "question": "

The paragraphs below are on the topic of a happy life.

Which is the first draft?Which is the revision?", + "additional": "

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.

", + "segments": [ + { + "html": "

Analyzing Writing Drafts

Let's examine two paragraphs about a happy life and determine which is the first draft and which is the revision.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + }, + { + "html": "

Paragraph A

Key points:

  • Generally happy
  • Great job, passionate work
  • Supportive family and friends
  • Good health
  • Plays sports

This paragraph is well-structured and focuses solely on positive aspects.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + }, + { + "html": "

Paragraph B

Key points:

  • Generally happy
  • Great job, passionate work
  • Mentions financial struggles
  • Supportive family and friends
  • Good health

This paragraph includes both positive and negative aspects, and seems less polished.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + }, + { + "html": "

Comparing the Paragraphs

Differences:

  • Paragraph B mentions financial struggles, while A does not
  • Paragraph A includes sports as a source of happiness
  • Paragraph A is more focused and cohesive
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "I don't make a lot of money", + "I play fun sports such as soccer and basketball." + ] + } + ] + }, + { + "html": "

Identifying First Draft and Revision

First Draft: Paragraph B

Reasons:

  • Includes both positive and negative aspects
  • Less focused structure
  • Contains extraneous information (weekend work, wanting a raise)

Revision: Paragraph A

Reasons:

  • More focused on the main topic (happiness)
  • Better structured and cohesive
  • Removed negative aspects for a more positive tone
  • Added specific details (sports) to support the claim of being healthy
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "I think I'm generally happy because I like most things about my life.", + "I think I'm generally happy." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "draft", + "html": "B", + "position": "replace" + }, + { + "target": "question", + "targetId": "revision", + "html": "A", + "position": "replace" + } + ] + }, + { + "html": "

Understanding 'Passionate'

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.

", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "I do work that I feel passionate about" + ] + } + ] + }, + { + "html": "

Key Takeaway

When analyzing drafts:

  • Look for improvements in focus and structure
  • Notice changes in tone and content
  • Observe how details are added or removed to strengthen the main idea

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + } + ] + } + } + ] + } + ] + }, + { + "unit": 2, + "title": "Big Ideas", + "pages": [ + { + "page": 24, + "tips": [ + { + "category": "Word Link", + "embedding": "The suffix -tion can turn some verbs into nouns.", + "text": "The suffix -tion can turn some verbs into nouns, e.g., prevent / prevention, define / definition, act / action, create / creation, contribute / contribution.", + "html": "

The suffix -tion can turn some verbs into nouns, e.g. :

  • prevent / prevention
  • define / definition
  • act / action
  • create / creation
  • contribute / contribution
", + "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

Supporting ideas tell more about the main idea. They can do the following:

  • describe
  • give reasons
  • give examples
", + "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?

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.'

", + "segments": [ + { + "html": "

Analyzing the Paragraph

Let's examine William's windmill project, identifying the main idea and its supporting elements.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + }, + { + "html": "

Identifying the Main Idea

To find the main idea, let's look at key points in the paragraph:

  • William started building a windmill
  • People laughed and didn't think he could do it
  • William was confident
  • William was creative
  • He found ways to build it despite challenges

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.

", + "wordDelay": 200, + "holdDelay": 12000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "When William went home and started building his windmill", + "a lot of people laughed at him", + "William was confident", + "William was also creative", + "He didn't have the parts and equipment", + "So he looked for parts in junkyards" + ] + } + ] + }, + { + "html": "

Supporting Ideas: Confidence

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.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "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." + ] + } + ] + }, + { + "html": "

Supporting Ideas: Creativity

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.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "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." + ] + } + ] + }, + { + "html": "

Supporting Ideas: Description

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.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "He explains, 'I found a tractor fan, shock absorber, [and] PVC pipes. Using a bicycle frame ... , I built my machine.'" + ] + } + ] + }, + { + "html": "

Conclusion

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + } + ] + } + } + ] + }, + { + "page": 30, + "tips": [ + { + "category": "Word Link", + "embedding": "The suffix -able can turn some verbs into adjectives.", + "text": "The suffix -able can turn some verbs into adjectives, e.g., renew / renewable, detect / detectable, afford / affordable, prevent / preventable.", + "html": "

The suffix -able can turn some verbs into adjectives, e.g. :

  • renew / renewable
  • detect / detectable
  • afford / affordable
  • prevent / preventable
", + "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": "

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.

", + "id": "7587f165-a179-490c-8866-483b0cbf3387", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Predicting

Read the passages below. What do you think is the purpose of each of the items described?

", + "additional": "

Infant Warmer

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.'

Water Container

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.

Portable Clay Cooler

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.

Health Detector

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.

Solar Wi-Fi Light

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.

1 Your body temperature is how hot or how cold your body is.2 When a liquid evaporates, it changes to a gas as its temperature increases.3 Labs are laboratories, places where scientific research is done.
", + "segments": [ + { + "html": "

Predicting Item Purposes

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + }, + { + "html": "

1. Infant Warmer

Purpose: To keep low-birthweight babies warm in developing countries.

Key information:

  • Designed for babies weighing less than 5.5 pounds
  • Helps prevent deaths due to low body temperature
  • Aims to save nearly a million babies over five years
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Low-birthweight babies are often unable to keep their body temperatures* warm enough.", + "The Embrace Infant Warmer helps keep these babies warm." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "purpose-1", + "position": "replace", + "html": "To keep low-birthweight babies warm in developing countries." + } + ] + }, + { + "html": "

2. Water Container

Purpose: To make transporting water easier in areas with limited access to clean water.

Key information:

  • Holds 13 gallons (50 liters) of water
  • Can be rolled instead of carried
  • Reduces the physical burden on women and children
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "people often have to walk several miles to get clean water", + "The Q Drum holds 13 gallons (about 50 liters) in a rolling container." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "purpose-2", + "position": "replace", + "html": "To make transporting water easier in areas with limited access to clean water." + } + ] + }, + { + "html": "

3. Portable Clay Cooler

Purpose: To preserve food without electricity in areas with limited resources.

Key information:

  • Uses evaporation to keep food cool
  • Extends the shelf life of fresh produce
  • Benefits both consumers and farmers
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "The pot-in-pot system is a good way to store food without using electricity.", + "That helps food stay fresh longer." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "purpose-3", + "position": "replace", + "html": "To preserve food without electricity in areas with limited resources." + } + ] + }, + { + "html": "

4. Health Detector

Purpose: To provide quick, affordable health diagnostics in resource-limited areas.

Key information:

  • Size of a postage stamp and costs only a penny
  • Uses chemical reactions to detect health problems
  • Provides rapid results without need for lab facilities
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "Scientist Hayat Sindi's device is the size of a postage stamp, and it costs just a penny.", + "These chemicals can detect health problems." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "purpose-4", + "position": "replace", + "html": "To provide quick, affordable health diagnostics in resource-limited areas." + } + ] + }, + { + "html": "

5. Solar Wi-Fi Light

Purpose: To provide sustainable lighting and internet access in areas with limited electricity.

Key information:

  • Uses solar energy to power streetlamps
  • Provides wireless internet access
  • Offers renewable electricity solution
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "It absorbs solar energy during the day to power streetlamps at night.", + "The solar panels also provide wireless Internet access." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "purpose-5", + "position": "replace", + "html": "To provide sustainable lighting and internet access in areas with limited electricity." + } + ] + }, + { + "html": "

Key Takeaway

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + } + ] + } + } + ] + }, + { + "page": 34, + "tips": [ + { + "category": "CT Focus", + "embedding": "To rank items in order, first decide on your criteria for ranking.", + "text": "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.", + "html": "

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.

", + "id": "999dc9ac-13ba-41e8-9a75-bff1c124710e", + "standalone": false, + "verified": true, + "exercise": { + "question": "

Critical Thinking: Ranking and Justifying

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.

", + "additional": "

Infant Warmer

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.'

Water Container

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.

Portable Clay Cooler

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.

Health Detector

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.

Solar Wi-Fi Light

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.

1 Your body temperature is how hot or how cold your body is.2 When a liquid evaporates, it changes to a gas as its temperature increases.3 Labs are laboratories, places where scientific research is done.
", + "segments": [ + { + "html": "

Ranking Innovations

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + }, + { + "html": "

1. Infant Warmer

Impact: Potentially saves lives of newborns

Scale: 19 million low-birthweight babies born annually

Goal: Save almost a million babies over five years

Potential Rank: High importance due to direct life-saving impact on vulnerable population
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "19 million low-birthweight babies are born every year", + "we hope to save the lives of almost a million babies" + ] + } + ] + }, + { + "html": "

2. Water Container

Impact: Eases the burden of water transportation

Scale: Affects daily life in poor areas

Benefit: Improves quality of life, especially for women and children

Potential Rank: Medium to high importance due to widespread daily impact
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "people often have to walk several miles to get clean water", + "people can easily roll the water on the ground" + ] + } + ] + }, + { + "html": "

3. Portable Clay Cooler

Impact: Preserves food without electricity

Scale: Benefits both consumers and farmers

Advantage: Extends food freshness, potentially improving nutrition and income

Potential Rank: Medium importance due to economic and health benefits
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "store food without using electricity", + "That helps food stay fresh longer", + "farmers can make more money" + ] + } + ] + }, + { + "html": "

4. Health Detector

Impact: Provides quick, affordable health diagnostics

Scale: Could save millions of lives

Advantage: Works in areas without electricity or clean water

Potential Rank: High importance due to low cost and potential to save many lives
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "it could save millions of lives", + "doctors and nurses work with no electricity or clean water", + "These chemicals can detect health problems" + ] + } + ] + }, + { + "html": "

5. Solar Wi-Fi Light

Impact: Provides lighting and internet access

Scale: Can benefit millions of people

Advantage: Uses renewable energy, improves safety and communication

Potential Rank: Medium to high importance due to broad impact on quality of life
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "all" + ], + "phrases": [ + "can benefit millions of people around the world", + "renewable electricity for better street lighting and faster communication" + ] + } + ] + }, + { + "html": "

Ranking Considerations

When ranking these innovations, consider:

  • Number of lives potentially saved or improved
  • Immediacy of the impact
  • Cost-effectiveness of the solution
  • Scope of the problem addressed
  • Long-term sustainability of the innovation
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + }, + { + "html": "

Ranking the Innovations

Based on the analysis and criteria discussed, here is a suggested ranking of the innovations from most important to least important:

  1. Infant Warmer: Due to its potential to save the lives of nearly a million newborns in developing countries.

  2. Health Detector: For providing quick and affordable health diagnostics in areas lacking basic medical infrastructure.

  3. Water Container: As it greatly eases the daily burden of water transportation, especially for women and children.

  4. Solar Wi-Fi Light: For its broad impact on providing renewable energy, lighting, and internet access.

  5. Portable Clay Cooler: Due to its economic and health benefits, though its impact is less immediate compared to other innovations.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "rank-1", + "position": "replace", + "html": "
1
" + }, + { + "target": "question", + "targetId": "rank-5", + "position": "replace", + "html": "
2
" + }, + { + "target": "question", + "targetId": "rank-4", + "position": "replace", + "html": "
3
" + }, + { + "target": "question", + "targetId": "rank-3", + "position": "replace", + "html": "
4
" + }, + { + "target": "question", + "targetId": "rank-2", + "position": "replace", + "html": "
5
" + } + ] + }, + { + "html": "

Final Thoughts

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + } + ] + } + } + ] + }, + { + "page": 35, + "tips": [ + { + "category": "Language for Writing", + "embedding": "Review of the Simple Past\n\nWe use the simple past tense to talk about events that began and ended in the past.\n\nTo form the simple past tense of be:\n\n* use was or were to form affirmative statements.\n* use was not / wasn't or were not / weren't to form negative statements.\n\nTo form the simple past tense with other verbs:\n* add -ed to the end of most verbs to form affirmative statements.\n* use did not / didn't with the base form of a main verb to form negative statements.\n", + "text": "Review of the Simple Past\n\nWe use the simple past tense to talk about events that began and ended in the past.\n\nAccording to historians, a man named Ts'ai Lun invented paper in China around AD 105.\nBefore that time, people didn't have inexpensive material to write on.\nPeople wrote on things such as silk and clay, which were expensive and inconvenient.\n\nTo form the simple past tense of be:\n\n* use was or were to form affirmative statements.\n* use was not / wasn't or were not / weren't to form negative statements.\n\nTo form the simple past tense with other verbs:\n* add -ed to the end of most verbs to form affirmative statements.\n* use did not / didn't with the base form of a main verb to form negative statements.\n\nSome verbs have irregular past tense forms in affirmative statements:\ngo-went have-had make-made take-took do-did build-built", + "html": "

Review of the Simple Past

We use the simple past tense to talk about events that began and ended in the 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.

To form the simple past tense of be:

  • use was or were to form affirmative statements.
  • use was not / wasn't or were not / weren't to form negative statements.

To form the simple past tense with other verbs:

  • add -ed to the end of most verbs to form affirmative statements.
  • use did not / didn't with the base form of a main verb to form negative statements.

Some verbs have irregular past tense forms in affirmative statements:

go-wenthave-hadmake-madetake-tookdo-didbuild-built", + "id": "4b6d0023-010b-47eb-9f00-3beb70092918", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Use the simple past tense of the verbs in parentheses to complete the sentences.

  1. Most people in William Kamkwamba’s village __________ (not / have) electricity.
  2. William __________ (go) to the library.
  3. He __________ (find) a book there called Using Energy.
  4. William __________ (use) the information in the book and he __________ (build) a windmill.
  5. When he __________ (start), people __________ (not / believe) that he could do it.
  6. William __________ (not / be) worried. He __________ (be) confident.
  7. After a while, he __________ (be) successful. His windmill __________ (make) electricity.
", + "segments": [ + { + "html": "

Let's approach this exercise step by step, focusing on the use of simple past tense:

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Use the simple past tense" + ] + } + ], + "insertHTML": [] + }, + { + "html": "
  1. Most people in William Kamkwamba's village did not have electricity.
    • This is a negative statement in the simple past, using 'did not' with the base form of 'have'.
", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "(not / have)", + "did not have" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "answer-1", + "position": "replace", + "html": "did not have" + } + ] + }, + { + "html": "
  1. William went to the library.
    • 'Go' is an irregular verb. Its simple past form is 'went'.
", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "(go)", + "went" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "answer-2", + "position": "replace", + "html": "went" + } + ] + }, + { + "html": "
  1. He found a book there called Using Energy.
    • 'Find' is another irregular verb. Its simple past form is 'found'.
", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "(find)", + "found" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "answer-3", + "position": "replace", + "html": "found" + } + ] + }, + { + "html": "
  1. William used the information in the book and he built a windmill.
    • 'Use' is a regular verb, so we add '-ed' for the simple past.
    • 'Build' is irregular; its simple past form is 'built'.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "(use)", + "(build)", + "used", + "built" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "answer-4", + "position": "replace", + "html": "used" + }, + { + "target": "question", + "targetId": "answer-5", + "position": "replace", + "html": "built" + } + ] + }, + { + "html": "
  1. When he started, people did not believe that he could do it.
    • 'Start' is a regular verb, so we add '-ed'.
    • For 'believe', we form a negative with 'did not' and the base form of the verb.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "(start)", + "(not / believe)", + "started", + "did not believe" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "answer-6", + "position": "replace", + "html": "started" + }, + { + "target": "question", + "targetId": "answer-7", + "position": "replace", + "html": "did not believe" + } + ] + }, + { + "html": "
  1. William was not worried. He was confident.
    • Both of these use the past tense of 'be'. For negative, we use 'was not', and for affirmative, we use 'was'.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "(not / be)", + "(be)", + "was not", + "was" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "answer-8", + "position": "replace", + "html": "was not" + }, + { + "target": "question", + "targetId": "answer-9", + "position": "replace", + "html": "was" + } + ] + }, + { + "html": "
  1. After a while, he was successful. His windmill made electricity.
    • Again, we use 'was' for the past tense of 'be'.
    • 'Make' is an irregular verb; its simple past form is 'made'.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "(be)", + "(make)", + "was", + "made" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "answer-10", + "position": "replace", + "html": "was" + }, + { + "target": "question", + "targetId": "answer-11", + "position": "replace", + "html": "made" + } + ] + }, + { + "html": "

Now, let's consider how the tip about the simple past tense helps us solve this exercise:

  • The tip reminds us that the simple past is used for events that began and ended in the past, which applies to all the sentences in our exercise.
  • It provides rules for forming the past tense of 'be' (was/were), which we used in sentences 6 and 7.
  • The tip explains how to form negatives with 'did not / didn't', which we applied in sentences 1 and 5.
  • It mentions adding '-ed' to regular verbs, which we did for 'use' and 'start'.
  • The tip also notes that some verbs have irregular past forms, and provides examples like 'go-went' and 'make-made', which we used in our answers.
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "simple past tense", + "began and ended in the past", + "was/were", + "did not / didn't", + "-ed", + "irregular past forms", + "go-went", + "make-made" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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'.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 36, + "tips": [ + { + "category": "Writing Skill", + "embedding": "Supporting the Main Idea and Giving Details\n\nGood 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.", + "text": "Supporting the Main Idea and Giving Details\n\nGood 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.", + "html": "

Supporting the Main Idea and Giving Details

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.

", + "id": "a2302e9a-ea46-485a-aba5-83d7efec436e", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Identifying Supporting Ideas

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.

", + "additional": "
  • The LifeStraw provides instant clean water, saving lives during disasters.
  • You should drink about eight glasses of water a day.
  • The MightyLight is safer and cleaner than traditional kerosene lamps.
  • Each straw purifies about 160 gallons of water.
  • It's easy to carry, and you can hang it on a wall or place it on a tabletop.
  • Candles don't provide much light.
  • It also lasts longer — its LED technology is good for up to 30 years.
  • Thousands of LifeStraws were donated to Haiti after the 2010 earthquake.
", + "segments": [ + { + "html": "

Let's approach this exercise by analyzing each supporting sentence and determining which topic sentence it best supports:

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Identifying Supporting Ideas", + "Match each topic sentence with three supporting sentences" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

First, let's review the two topic sentences:

  • A: Focuses on the LifeStraw as a solution for safe drinking water
  • B: Discusses the MightyLight as a clean lighting source
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Topic Sentence A", + "Topic Sentence B" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Now, let's analyze each supporting sentence:

  1. 'The LifeStraw provides instant clean water, saving lives during disasters.'
    This clearly supports Topic A about safe drinking water.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "The LifeStraw provides instant clean water, saving lives during disasters." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "blank-1", + "position": "replace", + "html": "A" + } + ] + }, + { + "html": "
  1. 'You should drink about eight glasses of water a day.'
    This is general advice and doesn't directly support either topic sentence. It's an extra sentence.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "You should drink about eight glasses of water a day." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "blank-2", + "position": "replace", + "html": "-" + } + ] + }, + { + "html": "
  1. 'The MightyLight is safer and cleaner than traditional kerosene lamps.'
    This directly supports Topic B about the MightyLight.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "The MightyLight is safer and cleaner than traditional kerosene lamps." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "blank-3", + "position": "replace", + "html": "B" + } + ] + }, + { + "html": "
  1. 'Each straw purifies about 160 gallons of water.'
    This provides details about the LifeStraw, supporting Topic A.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Each straw purifies about 160 gallons of water." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "blank-4", + "position": "replace", + "html": "A" + } + ] + }, + { + "html": "
  1. 'It's easy to carry, and you can hang it on a wall or place it on a tabletop.'
    This describes the MightyLight's portability, supporting Topic B.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "It's easy to carry, and you can hang it on a wall or place it on a tabletop." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "blank-5", + "position": "replace", + "html": "B" + } + ] + }, + { + "html": "
  1. 'Candles don't provide much light.'
    While related to lighting, this doesn't directly support either topic sentence. It's the second extra sentence.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Candles don't provide much light." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "blank-6", + "position": "replace", + "html": "-" + } + ] + }, + { + "html": "
  1. 'It also lasts longer — its LED technology is good for up to 30 years.'
    This provides information about the MightyLight's longevity, supporting Topic B.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "It also lasts longer — its LED technology is good for up to 30 years." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "blank-7", + "position": "replace", + "html": "B" + } + ] + }, + { + "html": "
  1. 'Thousands of LifeStraws were donated to Haiti after the 2010 earthquake.'
    This provides an example of the LifeStraw's use in a disaster situation, supporting Topic A.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Thousands of LifeStraws were donated to Haiti after the 2010 earthquake." + ] + } + ], + "insertHTML": [ + { + "target": "additional", + "targetId": "blank-8", + "position": "replace", + "html": "A" + } + ] + }, + { + "html": "

Now, let's consider how the tip about supporting ideas and giving details helps us solve this exercise:

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "
  • The tip reminds us that good paragraphs include supporting ideas that provide information and details about the main idea.
  • It mentions that supporting sentences can give descriptions, reasons, or examples to help readers understand the main idea clearly.
  • In this exercise, we identified how each supporting sentence provides specific details, descriptions, or examples that relate to one of the two main ideas (topic sentences).
  • By understanding the relationship between main ideas and supporting details, we were able to match each supporting sentence to its corresponding topic sentence.
  • This process demonstrates how well-structured paragraphs are organized, with each supporting sentence contributing to the development of the main idea.
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "supporting ideas", + "information and details", + "descriptions, reasons, or examples", + "understand the main idea" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + } + ] + }, + { + "unit": 3, + "title": "Connected Lives", + "pages": [ + { + "page": 44, + "tips": [ + { + "category": "Word Link", + "embedding": "The prefix -inter means between or connected.", + "text": "The prefix -inter means between or connected, e.g., interactive, interchangeable, intercontinental, international, internet, intersection, interview", + "html": "

The prefix -inter means between or connected, e.g., interactive, interchangeable, intercontinental, international, internet, intersection, interview

", + "id": "368442e8-fe58-4ba8-9964-3e6a49cbe5bd", + "standalone": true, + "verified": true + } + ] + }, + { + "page": 47, + "tips": [ + { + "category": "CT Focus", + "embedding": "You make inferences when you make logical guesses about things a writer does not say directly.", + "text": "You make inferences when you make logical guesses about things a writer does not say directly. This is also called 'reading between the lines.'", + "html": "

You make inferences when you make logical guesses about things a writer does not say directly. This is also called 'reading between the lines.'

", + "id": "27d15859-4260-4750-90a6-6302f71fc845", + "standalone": false, + "verified": true, + "exercise": { + "question": "

Making Inferences

What can you infer from each statement from the reading passage? Determine the best inference.

", + "additional": "
  1. \"When television became the dominant medium in the 1950s, it changed the way families interacted.\"

    • Before the 1950s, a different medium was probably dominant.
    • There were a lot of good television programs in the 1950s.
  2. \"This kind of sharing changes the way we communicate. With the Internet, everyone can have a voice.\"

    • People probably should not share certain things on the Internet.
    • The Internet is a better medium of communication than TV.
  3. \"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?\"

    • There are a lot of possible uses of the Internet that most people don't really think about.
    • The Internet is an amazing tool, but most people in the world don't use it very much.
", + "segments": [ + { + "html": "

Making Inferences from Text

Let's analyze each statement and choose the most logical inference based on the information provided.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + }, + { + "html": "

Statement 1

\"When television became the dominant medium in the 1950s, it changed the way families interacted.\"

Let's analyze this statement:

  • TV became dominant in the 1950s
  • It changed family interactions
  • The word 'became' implies a change in status

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Before the 1950s, a different medium was probably dominant." + ] + } + ] + }, + { + "html": "

Statement 2

\"This kind of sharing changes the way we communicate. With the Internet, everyone can have a voice.\"

Key points to consider:

  • Sharing changes communication
  • The Internet gives everyone a voice
  • This implies a change in who can communicate

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "The Internet is a better medium of communication than TV." + ] + } + ] + }, + { + "html": "

Statement 3

\"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:

  • The 'little box' likely refers to a computer or smartphone
  • It can connect to a billion people
  • The speaker questions if we use its full potential

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "There are a lot of possible uses of the Internet that most people don't really think about." + ] + } + ] + }, + { + "html": "

Making Inferences: Key Strategies

When making inferences:

  • Look for implied information
  • Consider the context and tone
  • Use your background knowledge
  • Think about cause and effect relationships
  • Look for words that suggest change or comparison
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [] + }, + { + "html": "

The Value of Inference

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [] + } + ] + } + } + ] + }, + { + "page": 48, + "tips": [ + { + "category": "Reading Skill", + "embedding": "Skimming for Gist\n\nSkimming 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.", + "text": "Skimming for Gist\n\nSkimming 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.\n\nWe 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.", + "html": "

Skimming for Gist

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.

", + "id": "9b084703-96ad-4728-8f04-5c1f13493ffd", + "verified": true, + "standalone": false, + "exercise": { + "question": "

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?

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.

", + "segments": [ + { + "html": "

Skimming for the Main Idea

Let's apply the skimming technique to identify the main idea of the given paragraph.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Key Points from Skimming

From the highlighted words, we can gather:

  • Social networks like Facebook and Twitter are mentioned
  • They have become part of daily activities
  • There are significant changes mentioned
  • News, relationships, and sharing of thoughts are discussed
  • Future changes are expected
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "changed our lives", + "changed the way", + "get our news.", + "relationships", + "changed", + "keep in touch", + "new friends", + "find old friends", + "share thoughts", + "online friends", + "used to keep private" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Identifying the Main Idea

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "significant ways", + "social networks", + "changed our lives" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Verifying the Main Idea

Now, let's read the entire paragraph carefully to confirm our initial understanding.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Confirming Our Analysis

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:

  • How we get and consume news
  • How we maintain and form relationships
  • How we share personal information

The paragraph also touches on the ongoing nature of these changes, suggesting more to come in the future.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "changed the way we get our news", + "relationships have changed", + "share thoughts with our online friends that we used to keep private", + "expect more changes in the future" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

The Value of Skimming

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:

  • You need to quickly understand the gist of a text
  • You're deciding whether a text is relevant to your needs
  • You want to prepare your mind for a more detailed reading

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 50, + "tips": [ + { + "category": "Word Link", + "embedding": "The suffix -al often indicates that a word is an adjective.", + "text": "The suffix -al often indicates that a word is an adjective, e.g., virtual, tribal, environmental, cultural, structural, traditional, influential, economical.", + "html": "

The suffix -al often indicates that a word is an adjective, e.g., virtual, tribal, environmental, cultural, structural, traditional, influential, economical.

", + "id": "95663dff-6d04-4ba0-b688-54431d3f385d", + "standalone": true, + "verified": true + }, + { + "category": "Word Partners", + "embedding": "Use environmentally.", + "text": "Use environmentally with adjectives, for example, environmentally responsible, environmentally sound, environmentally friendly, environmentally aware, and environmentally sensitive.", + "html": "

Use environmentally with adjectives, for example, environmentally responsible, environmentally sound, environmentally friendly, environmentally aware, and environmentally sensitive.

", + "id": "412ccda7-fdc7-41be-a300-cffc2475d6a7", + "standalone": true, + "verified": true + } + ] + }, + { + "page": 54, + "tips": [ + { + "category": "Strategy", + "embedding": "When you scan for key details, first consider what kind of information you need to scan for.", + "text": "When you scan for key details, first consider what kind of information you need to scan for.", + "html": "

When you scan for key details, first consider what kind of information you need to scan for.

", + "id": "74425d2b-d63c-4a86-a77f-38190611dd5d", + "standalone": false, + "verified": true, + "exercise": { + "question": "

Identifying Key Details

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.

  • a country name
  • a person's name
  • a type of food
  • a website name
  • a year
  • an adjective
  • an amount of money
  • an island name
", + "additional": "
  • __________ sent a message to his friend Ben Keene about starting a tribe.
  • James and Ben named their online site __________.
  • They found a small island for their tribe. It's called __________.
  • They paid __________ to lease the island for three years.
  • In September __________, Keene went to the island with 13 other people.
  • The members of the new tribe ate __________ while they lived on the island.
  • Keene and thetribal leader hope the island will become more __________, but still keep its traditions.
  • James and Keene started another tribe in __________ in West Africa.
", + "segments": [ + { + "html": "

Scanning for Key Details

Let's approach this exercise by identifying the type of information needed for each sentence, then scanning the passage for specific details.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Step 1: Identify Information Types

Let's determine what kind of information is missing for each sentence:

  1. The first sentence is missing a person's name because it refers to someone who sent a message.
  2. The second sentence needs a website name as it mentions an online site that was created.
  3. An island name is required in the third sentence because it talks about a specific small island.
  4. The fourth sentence is missing an amount of money, as it refers to a payment for leasing the island.
  5. A year is needed in the fifth sentence to specify when an event took place.
  6. The sixth sentence requires a type of food to describe what the tribe members ate.
  7. An adjective is missing in the seventh sentence to describe how they want the island to become.
  8. The last sentence needs a country name to specify where another tribe was started.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "additional", + "targetId": "letter-1", + "position": "replace", + "html": "b" + }, + { + "target": "additional", + "targetId": "letter-2", + "position": "replace", + "html": "d" + }, + { + "target": "additional", + "targetId": "letter-3", + "position": "replace", + "html": "h" + }, + { + "target": "additional", + "targetId": "letter-4", + "position": "replace", + "html": "g" + }, + { + "target": "additional", + "targetId": "letter-5", + "position": "replace", + "html": "e" + }, + { + "target": "additional", + "targetId": "letter-6", + "position": "replace", + "html": "c" + }, + { + "target": "additional", + "targetId": "letter-7", + "position": "replace", + "html": "f" + }, + { + "target": "additional", + "targetId": "letter-8", + "position": "replace", + "html": "a" + } + ] + }, + { + "html": "

Step 2: Scan for Specific Details

Now, let's scan the passage for each type of information we've identified:

  • Look for names of people, websites, islands, and countries
  • Search for monetary amounts and years
  • Identify food types and descriptive adjectives
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Step 3: Fill in the Blanks

Let's fill in all the blanks with the information we've found:

  1. A person's name: James
  2. A website name: Tribewanted
  3. An island name: Vorovoro
  4. An amount of money: $300,000
  5. A year: 2006
  6. A type of food: fish
  7. An adjective: modern
  8. A country name: Sierra Leone
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [ + { + "target": "additional", + "targetId": "underline-1", + "position": "replace", + "html": "James" + }, + { + "target": "additional", + "targetId": "underline-2", + "position": "replace", + "html": "Tribewanted" + }, + { + "target": "additional", + "targetId": "underline-3", + "position": "replace", + "html": "Vorovoro" + }, + { + "target": "additional", + "targetId": "underline-4", + "position": "replace", + "html": "$300,000" + }, + { + "target": "additional", + "targetId": "underline-5", + "position": "replace", + "html": "2006" + }, + { + "target": "additional", + "targetId": "underline-6", + "position": "replace", + "html": "fish" + }, + { + "target": "additional", + "targetId": "underline-7", + "position": "replace", + "html": "modern" + }, + { + "target": "additional", + "targetId": "underline-8", + "position": "replace", + "html": "Sierra Leone" + } + ] + }, + { + "html": "

The Value of Scanning for Key Details

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:

  • You need to answer specific questions about a text
  • You're looking for particular facts or figures
  • You want to locate relevant information quickly without reading every word

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 55, + "tips": [ + { + "category": "Language for Writing", + "embedding": "The Present Perfect Tense\n\nUse 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.", + "text": "The Present Perfect Tense\n\nUse 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.\n\nI think online media have improved our lives.\nThousands of people have created blogs in the past few years.\nWe have used several different kinds of social networks recently.\nShe has posted videos on YouTube three times.\n\nRemember to use the simple past to talk about something that happened at a specific time in the past.", + "html": "

Language for Writing: The Present Perfect Tense

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.

  • I think online media have improved our lives.
  • Thousands of people have created blogs in the past few years.
  • We have used several different kinds of social networks recently.
  • She has posted videos on YouTube three times.

Remember to use the simple past to talk about something that happened at a specific time in the past.

", + "id": "37f57b56-a21b-4082-87fe-9139a8a692f7", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Use the present perfect tense of the verbs in parentheses to complete the sentences (1-4).

  1. Social media __________ (change) our lives in many ways.
  2. Michael Wesch __________ (use) social media in several of his classes.
  3. My friend __________ (meet) a lot of great people on social networking sites.
  4. A lot of old friends __________ (find) me online.
", + "segments": [ + { + "html": "

Understanding the Present Perfect Tense

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Structure of Present Perfect

The present perfect tense is formed using:

  • have/has + past participle of the main verb
  • Use 'has' for he/she/it, and 'have' for I/you/we/they
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Use the present perfect tense" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Sentence 1

'Social media (change) our lives in many ways.'

Let's apply the present perfect:

  • Subject: Social media (plural)
  • Verb: have + past participle of 'change'
  • Past participle of 'change' is 'changed'

Answer: Social media have changed our lives in many ways.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Social media", + "have changed", + "(change) our lives in many ways." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "underline-1", + "position": "replace", + "html": "have changed" + } + ] + }, + { + "html": "

Sentence 2

'Michael Wesch (use) social media in several of his classes.'

Applying the present perfect:

  • Subject: Michael Wesch (singular)
  • Verb: has + past participle of 'use'
  • Past participle of 'use' is 'used'

Answer: Michael Wesch has used social media in several of his classes.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Michael Wesch", + "has used", + "(use) social media in several of his classes." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "underline-2", + "position": "replace", + "html": "has used" + } + ] + }, + { + "html": "

Sentence 3

'My friend (meet) a lot of great people on social networking sites.'

Applying the present perfect:

  • Subject: My friend (singular)
  • Verb: has + past participle of 'meet'
  • Past participle of 'meet' is 'met'

Answer: My friend has met a lot of great people on social networking sites.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "My friend", + "has met", + "(meet) a lot of great people on social networking sites." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "underline-3", + "position": "replace", + "html": "has met" + } + ] + }, + { + "html": "

Sentence 4

'A lot of old friends (find) me online.'

Applying the present perfect:

  • Subject: A lot of old friends (plural)
  • Verb: have + past participle of 'find'
  • Past participle of 'find' is 'found'

Answer: A lot of old friends have found me online.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "A lot of old friends", + "have found", + "(find) me online." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "underline-4", + "position": "replace", + "html": "have found" + } + ] + }, + { + "html": "

The Value of Using Present Perfect

The present perfect tense is particularly useful for discussing:

  • Actions that started in the past and continue to the present
  • Recent past actions with present results
  • Life experiences without specifying when they occurred

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 56, + "tips": [ + { + "category": "Writing Skill", + "embedding": "Writing a Concluding Sentence\n\nFormal paragraphs often have concluding sentences. A concluding sentence is the last sentence of a paragraph. It ties the paragraph together.\n\nConcluding 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.", + "text": "Writing a Concluding Sentence\n\nFormal paragraphs often have concluding sentences. A concluding sentence is the last sentence of a paragraph. It ties the paragraph together.\n\nConcluding 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.", + "html": "

Writing a Concluding Sentence

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.

", + "id": "d8cb5ef1-97fa-4249-8d7d-e4fc6c923724", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Write a concluding sentence for each paragraph below.

  • 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.

    (Write a prediction.)
  • 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.

    (Restate the main idea.)
", + "segments": [ + { + "html": "

Writing Concluding Sentences

Let's explore how to write effective concluding sentences for the given paragraphs. We'll focus on creating predictions and restating main ideas.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Paragraph 1: Writing a Prediction

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.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "(Write a prediction.)" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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:

  • Relates to the information provided about digital communication
  • Incorporates the idea of happiness mentioned in the paragraph
  • Speculates on a possible future outcome
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "text-1", + "position": "replace", + "html": "

If this trend continues, we may see a decrease in overall happiness as people spend less time interacting face-to-face.

" + } + ] + }, + { + "html": "

Paragraph 2: Restating the Main Idea

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.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "(Restate the main idea.)" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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:

  • Summarizes the three main points discussed in the paragraph
  • Reinforces the author's opinion stated at the beginning
  • Provides a concise overview of the paragraph's content
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "text-2", + "position": "replace", + "html": "

In conclusion, online news offers distinct advantages over traditional media, including interactive features, additional resources, and real-time updates.

" + } + ] + }, + { + "html": "

The Importance of Concluding Sentences

Concluding sentences play a crucial role in formal writing. They serve to:

  • Tie the paragraph together
  • Reinforce the main idea
  • Provide closure to the reader
  • Encourage further thought or action

By mastering the art of writing effective concluding sentences, you can significantly improve the coherence and impact of your paragraphs.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 57, + "tips": [ + { + "category": "Strategy", + "embedding": "For an opinion paragraph, you can use these phrases in your topic sentence:\n\nI think... I believe... In my opinion...\n\nYou can also use one of them in your concluding sentence if you end the paragraph with a statement of your opinion.", + "text": "For an opinion paragraph, you can use these phrases in your topic sentence:\n\nI think... I believe... In my opinion...\n\nYou can also use one of them in your concluding sentence if you end the paragraph with a statement of your opinion.", + "html": "

For an opinion paragraph, you can use these phrases in your topic sentence:

I think...I believe...In my opinion...

You can also use one of them in your concluding sentence if you end the paragraph with a statement of your opinion.

", + "id": "f9e30057-0887-4d0a-926b-54fadd958a8e", + "verified": true, + "standalone": false, + "exercise": { + "question": "

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)

Details:

Supporting Idea (another way social networking has helped or harmed us)

Details:

Concluding sentence

Draft

", + "additional": "
", + "segments": [ + { + "html": "

Writing an Opinion Paragraph on Social Networking

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Step 1: Topic Sentence

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:

  • Clearly states the writer's opinion
  • Uses the phrase 'I believe' to introduce the opinion
  • Provides a preview of what the paragraph will discuss
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "topic", + "position": "replace", + "html": "

I believe that online social networking has significantly improved our lives in several ways.

" + } + ] + }, + { + "html": "

Step 2: First Supporting Idea

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:

  • People can easily stay in touch with friends and family across the globe
  • It allows for sharing of life updates, photos, and experiences in real-time
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "sup-idea-1", + "position": "replace", + "html": "

One way social networking has helped us is by facilitating long-distance connections.

" + }, + { + "target": "question", + "targetId": "details-1", + "position": "replace", + "html": "
  • People can easily stay in touch with friends and family across the globe
  • It allows for sharing of life updates, photos, and experiences in real-time
" + } + ] + }, + { + "html": "

Step 3: Second Supporting Idea

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:

  • Important news and updates can reach a large audience rapidly
  • It enables the organization of events and movements more efficiently
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "sup-idea-2", + "position": "replace", + "html": "

Another benefit of social networking is its ability to spread information quickly.

" + }, + { + "target": "question", + "targetId": "details-2", + "position": "replace", + "html": "
  • Important news and updates can reach a large audience rapidly
  • It enables the organization of events and movements more efficiently
" + } + ] + }, + { + "html": "

Step 4: Concluding Sentence

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:

  • Restates the main opinion
  • Summarizes the key points discussed
  • Provides a final thought on the topic
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "concluding", + "position": "replace", + "html": "

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": "

Step 5: Draft the Complete Paragraph

Now, let's combine all the elements into a cohesive paragraph:

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "draft", + "position": "replace", + "html": "

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": "

The Value of Opinion Phrases

Using phrases like 'I think...', 'I believe...', and 'In my opinion...' in your topic and concluding sentences is beneficial because:

  • They clearly signal that you're expressing a personal viewpoint
  • They set the tone for the entire paragraph
  • They remind the reader that this is one perspective among many possible views
  • They create a consistent structure when used in both the opening and closing of the paragraph

By incorporating these phrases, you make your writing more engaging and your opinions more explicit, which is crucial in argumentative or persuasive writing.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 58, + "tips": [ + { + "category": "CT Focus", + "embedding": "Make inferences about the paragraph.", + "text": "Make inferences about the paragraph. What can you tell about the writer?", + "html": "

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": "

The paragraphs below are on the topic of online music sharing.

Which is the first draft?

Which is the revision?

", + "additional": "
a

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?

b

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.

", + "segments": [ + { + "html": "

Analyzing First Draft and Revision

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Paragraph A Analysis

Let's start by examining paragraph A:

  • Clear topic sentence stating the writer's opinion
  • Logical flow of ideas
  • Use of examples (doctors, teachers) to support the argument
  • Strong concluding sentence that poses a thought-provoking question

These characteristics suggest that paragraph A is likely the revision.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "There are many views about online music sharing, but in my opinion, people should pay for music instead of getting it free online.", + "Without musicians, where would we get our music?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Paragraph B Analysis

Now, let's look at paragraph B:

  • Less clear opening sentence
  • Similar content to paragraph A, but less organized
  • Introduces a new topic (movie sharing) that isn't fully developed
  • Lacks a strong concluding sentence

These characteristics suggest that paragraph B is likely the first draft.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "There have been a lot of disagreements about online music sharing.", + "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." + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Conclusion

Based on our analysis:

  • Paragraph A (blue) is the revision
  • Paragraph B (red) is the first draft
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "underline-1", + "position": "replace", + "html": "b" + }, + { + "target": "question", + "targetId": "underline-2", + "position": "replace", + "html": "a" + } + ] + }, + { + "html": "

Making Inferences

Now, let's make some inferences about the writer based on these paragraphs:

  • The writer likely uses the Internet frequently, as they mention past experience with online music sharing.
  • The writer seems to be honest, admitting to past behavior they now consider wrong.
  • The writer appears to value fairness and ethical behavior, as they've changed their stance on free music downloads.
  • The writer shows empathy towards musicians and their need to earn a living.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "I have gotten free music online in the past", + "Now I always pay for music" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

The Value of Making Inferences

Making inferences about a writer based on their text is beneficial because:

  • It helps develop critical reading skills
  • It encourages deeper engagement with the text
  • It aids in understanding the writer's perspective and motivations
  • It can reveal biases or assumptions in the writing
  • It helps in evaluating the credibility and reliability of the information presented

By practicing this skill, readers become more discerning and can better understand the context and subtext of what they read.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + } + ] + }, + { + "unit": 4, + "title": "Deep Trouble", + "pages": [ + { + "page": 64, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use reduce.", + "text": "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.", + "html": "

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": "

What is the main problem described in the reading passage below? What possible solutions are there to this problem?

Main Problem
Solutions

1.

2.

3.

  1. 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?

  2. 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?

", + "additional": "

Where Have All the Fish Gone?

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?

Source of the Problem

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.

Rise of the Little Fish

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 Future for Fish?

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.

1 Commercial fishing is fishing for profit.2 Sonar technology uses sound waves to locate objects, for example, underwater.3 Predatory fish are fish that kill and eat other fish.4 Biodiversity is the existence of a wide variety of plant and animal species in their natural environments.
", + "segments": [ + { + "html": "

Analyzing a Problem-Solution Passage

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Main Problem

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "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." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "main-idea", + "position": "replace", + "html": "

Overfishing is depleting ocean fish populations, particularly large predatory fish, leading to an imbalance in marine ecosystems.

" + } + ] + }, + { + "html": "

Solutions

The passage proposes three main solutions:

  1. Reduce commercial fishing
  2. Develop aquaculture (fish farming)
  3. Make informed consumer choices about fish consumption
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "First, commercial fishing companies can catch fewer fish.", + "Another way to improve the biodiversity of the oceans is to develop aquaculture—fish farming.", + "Finally, we can make good choices about what we eat. For example, we can avoid eating species of fish that are threatened." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "solution-1", + "position": "replace", + "html": "Reduce commercial fishing" + }, + { + "target": "question", + "targetId": "solution-2", + "position": "replace", + "html": "Develop aquaculture (fish farming)" + }, + { + "target": "question", + "targetId": "solution-3", + "position": "replace", + "html": "Make informed consumer choices about fish consumption" + } + ] + }, + { + "html": "

Problem Presentation

The writer provides substantial information to show that overfishing is a real problem:

  • Historical context of fishing practices
  • Scientific data on fish population decline
  • Explanation of ecosystem imbalance
  • Prediction of future fish depletion
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "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 2003, a scientific report estimated that only 10 percent remained of the large ocean fish populations that existed before commercial fishing began.", + "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.", + "If we continue to overfish the oceans, most of the fish that we catch now—from tuna to sardines—will largely disappear by 2050." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "answer-1", + "position": "replace", + "html": "

Yes, the writer provides sufficient information. They use historical context, scientific data, ecosystem explanations, and future predictions to illustrate the severity of overfishing.

" + } + ] + }, + { + "html": "

Solution Effectiveness

The solutions are well-matched to the problem:

  • Reducing commercial fishing directly addresses overfishing
  • Aquaculture offers an alternative to wild-caught fish
  • Consumer choices can influence fishing practices

However, the writer could provide more details on implementation and potential challenges of these solutions.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "answer-2", + "position": "replace", + "html": "

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": "

The Value of Analyzing Problem-Solution Passages

Analyzing problem-solution passages is beneficial because:

  • It develops critical thinking skills
  • It helps evaluate the credibility and thoroughness of arguments
  • It encourages readers to think about real-world issues and potential solutions
  • It improves comprehension of complex topics
  • It aids in identifying gaps in information or logic

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.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 70, + "tips": [ + { + "category": "Word Link", + "embedding": "mini = very small", + "text": "mini = very small; minimal, minimum, minimize, miniature, minibus", + "html": "

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": "

Identifying Cause and Effect

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.
I enter my email password three times a day, so I remember it easily.
", + "id": "ab708cf8-449b-4e4a-af4e-a2510f04839d", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Read the information about memory techniques. How many cause-effect relationships can you find? Determine the causes and their effects.

", + "additional": "

Memory Tricks

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": "

Identifying Cause and Effect Relationships

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "How many cause-effect relationships can you find?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

1. Mnemonic Devices

The first paragraph introduces mnemonic devices:

  • Cause: People use poems, pictures, or movements
  • Effect: It is easier to remember stories, images, or actions than plain facts and lists
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "people often use things like poems, pictures, or movements", + "it is easier to remember stories, images, or actions than plain facts and lists" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

2. Acronyms for Rainbow Colors

The second paragraph discusses using acronyms:

  • Cause: It's hard to remember the colors of the rainbow in order
  • Effect: Someone created the acronym ROY G BIV

There's another cause-effect relationship here:

  • Cause: The name Roy G. Biv is short and meaningless
  • Effect: It's easier to remember than the full list of colors
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "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", + "it's short, so it is easier to remember than the list" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

3. Rhymes for Spelling Rules

The final paragraph talks about using rhymes for spelling:

  • Cause: English spelling rules can be difficult to learn
  • Effect: Some students use rhymes to help them remember the rules

And another relationship:

  • Cause: Students learn the rhyme \"i before e except after c\"
  • Effect: Students remember the spelling of words like niece and receipt
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "English spelling rules can also be difficult to learn", + "some students use rhymes to help them remember the rules", + "By learning \"i before e except after c\"", + "students of English remember the spelling of words like niece and receipt" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Summary of Cause-Effect Relationships

We've identified 5 cause-effect relationships in total:

  1. Use of mnemonic devices leading to easier remembering
  2. Difficulty remembering rainbow colors leading to creation of ROY G BIV
  3. Short, meaningless acronym leading to easier memorization
  4. Difficulty with spelling rules leading to use of rhymes
  5. Learning specific rhyme leading to remembering specific spellings
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

The Value of Identifying Cause and Effect

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:

  • Why certain memory techniques are used
  • How these techniques work to improve memory
  • The reasoning behind specific mnemonic devices
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Looking for Signal Words

As mentioned in the tip, certain words can signal cause-effect relationships. In our text, we can find a few examples:

  • 'because' in \"because it is easier to remember stories...\"
  • 'therefore' in \"Someone therefore made an acronym...\"
  • 'so' in \"it's short, so it is easier to remember...\"

Recognizing these signal words can make it easier to identify cause-effect relationships in future readings.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 90, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use stress.", + "text": "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.", + "html": "

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": "

Identify the key words in the titles and the subheads of the reading passages. Use the words to help you complete the sentences.

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 ...

", + "additional": "

Train Your Brain!

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:

Avoid stress

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.

Play games

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.

Get some rest

\"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.

Eat right

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.

1 Brainteasers are activities that exercise the mind, such as puzzles.2 If you encode information, you put it into a different form or system of language.3 Antioxidants are chemicals that reduce the effect of harmful substances in your body.

Sleep and 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.

Memories in Motion

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.

Lifelong Memories

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": "

Predicting Content from Titles and Subheads

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Identify the key words in the titles and the subheads" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Passage 1: \"Train Your Brain!\"

Key words in the title and subheads:

  • Train Your Brain
  • Avoid stress
  • Play games
  • Get some rest
  • Eat right

These key words suggest that the passage is about different ways to improve brain function and memory.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Train Your Brain!", + "Avoid stress", + "Play games", + "Get some rest", + "Eat right" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "text-1", + "position": "replace", + "html": "to improve memory and brain function through various lifestyle choices and activities." + } + ] + }, + { + "html": "

Passage 2: \"Sleep and Memory\"

Key words in the title and subheads:

  • Sleep and Memory
  • Memories in Motion
  • Lifelong Memories

These key words indicate that the passage explores the relationship between sleep and memory formation, particularly how sleep affects long-term memory.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Sleep and Memory", + "Memories in Motion", + "Lifelong Memories" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "text-2", + "position": "replace", + "html": "sleep plays a crucial role in forming and consolidating long-term memories." + } + ] + }, + { + "html": "

The Value of Using Key Words in Titles and Subheads

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:

  • It provides a quick overview of the main topics
  • It helps focus your attention on important concepts
  • It allows you to make predictions about the content, engaging your prior knowledge
  • It improves comprehension by creating a mental framework for the information you're about to read
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 94, + "tips": [ + { + "category": "Strategy", + "embedding": "Use key words in questions, especially nouns and noun phrases, to help you scan for the most relevant parts of a text.", + "text": "Use key words in questions, especially nouns and noun phrases, to help you scan for the most relevant parts of a text.", + "html": "

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": "

Read the passage and then complete the following exercises:

What did you learn from the second reading \"Sleep and Memory\"?

The main idea of \"Sleep and Memory\" is ____________________________

Complete the following sentences about \"Sleep and Memory.\"

  1. A team from Rutgers University found ____________________________.
  2. Sharp wave ripples transfer information from the ____________________________ to the ____________________________.
  3. Some rats had trouble remembering a route because ____________________________.
", + "additional": "

Sleep and 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.

Memories in Motion

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.

Lifelong Memories

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": "

Understanding 'Sleep and Memory'

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "What did you learn from the second reading \"Sleep and Memory\"?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Main Idea

To identify the main idea, let's look for recurring themes throughout the passage:

  • Sleep's importance for memory and learning
  • The process of forming long-term memories during sleep
  • The role of 'sharp wave ripples' in transferring information

Based on these key points, we can conclude that the main idea is:

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "sleep must be important for learning and memory", + "The activity transfers new information", + "The experiment explains how we create long-term memories" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "how sleep plays a crucial role in forming long-term memories through a process called 'sharp wave ripples'." + } + ] + }, + { + "html": "

Rutgers University Research

Let's look for information about the Rutgers University team's discovery:

  • Key words: Rutgers University, discovered, brain activity
  • Relevant information: 'A research team at Rutgers University recently discovered a type of brain activity that happens during sleep.'
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "A research team at Rutgers University recently discovered a type of brain activity that happens during sleep" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "a type of brain activity that occurs during sleep" + } + ] + }, + { + "html": "

Sharp Wave Ripples

To understand the transfer of information, let's focus on 'sharp wave ripples':

  • Key words: sharp wave ripples, transfer, hippocampus, neocortex
  • Relevant information: 'The activity transfers new information from the hippocampus to the neocortex. The neocortex stores long-term memories.'
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "The activity transfers new information from the hippocampus to the neocortex. The neocortex stores long-term memories." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "hippocampus" + }, + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "neocortex" + } + ] + }, + { + "html": "

Rats' Memory Experiment

To understand why some rats had trouble remembering the route:

  • Key words: rats, trouble remembering, drug, wave activity
  • Relevant information: '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.'
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "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." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-5", + "position": "replace", + "html": "a drug stopped their sharp wave ripple activity during sleep" + } + ] + }, + { + "html": "

The Value of Using Key Words

Using key words, especially nouns and noun phrases, to scan for relevant information is an effective strategy because:

  • It helps you quickly locate specific information in a text
  • It allows you to focus on the most important concepts
  • It saves time when answering questions or completing tasks
  • It improves your comprehension by guiding your attention to crucial details
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 95, + "tips": [ + { + "category": "Language for Writing", + "embedding": "Using By + Gerund\n\nUse by with a gerund to say how to do something. By + gerund expresses how to reach a result.", + "text": "Using By + Gerund\n\nUse 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.\nYou can improve your memory by getting enough sleep.\nBy getting enough sleep, you can improve your memory.\n\nBy + gerund expresses how to reach a result:\nBy eating right (cause), you can improve your memory. (effect)", + "html": "

Using By + Gerund

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.

You can improve your memory by getting enough sleep.By getting enough sleep, you can improve your memory.

By + gerund expresses how to reach a result:

By eating right,cause
you can improve your memory.effect
", + "id": "9e02d489-e457-41b1-933b-3a6abc3f57b4", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Use by + gerund to combine the sentence parts.

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

", + "segments": [ + { + "html": "

Combining Sentences with By + Gerund

Let's practice using 'by + gerund' to combine sentence parts. This structure helps us express how to achieve a particular result.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Use by + gerund to combine the sentence parts." + ] + } + ], + "insertHTML": [] + }, + { + "html": "

1. Write new words on cards / a person can retain them better

To combine these parts, we'll use the gerund form of 'write' after 'by'. We can structure this sentence in two ways:

  • A person can retain new words better by writing them on cards.
  • By writing new words on cards, a person can retain them better.

Both forms are correct. The second form uses a comma after the 'by + gerund' phrase.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "A person can retain new words better by writing them on cards." + } + ] + }, + { + "html": "

2. Give rats drugs / the scientists stopped their brain waves

For this sentence, we'll use the gerund form of 'give' after 'by'. Again, we have two possible structures:

  • The scientists stopped the rats' brain waves by giving them drugs.
  • By giving rats drugs, the scientists stopped their brain waves.

Both are correct, with the second form using a comma after the 'by + gerund' phrase.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "The scientists stopped the rats' brain waves by giving them drugs." + } + ] + }, + { + "html": "

3. You can improve your memory / do puzzles

For this sentence, we'll use the gerund form of 'do' after 'by'. Here are our two options:

  • You can improve your memory by doing puzzles.
  • By doing puzzles, you can improve your memory.

Both forms are correct, with the second form using a comma after the 'by + gerund' phrase.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "You can improve your memory by doing puzzles." + } + ] + }, + { + "html": "

The Value of Using By + Gerund

Using 'by + gerund' is beneficial for several reasons:

  • It allows us to express how an action is performed or a result is achieved
  • It helps create more concise and varied sentences
  • It clearly shows the relationship between cause and effect
  • It provides flexibility in sentence structure, allowing emphasis on either the method or the result
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 96, + "tips": [ + { + "category": "Writing Skill", + "embedding": "Using an Outline\n\nUsing an outline helps you to organize your main idea, supporting ideas, and examples and/or details.", + "text": "Using an Outline\n\nUsing 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.\nDon't write complete sentences in an outline, except for your topic sentence.", + "html": "

Using an Outline

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": "

Look at the outline below and read the paragraph that follows. Match sentences in the paragraph (a-i) to the parts of the outline. (Two sentences are extra.)

How to Memorize a Route

__ (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)

", + "additional": "

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": "

Completing the 'How to Memorize a Route' Outline

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Topic Sentence

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "a" + } + ] + }, + { + "html": "

Supporting Idea 1: Memorizing as Steps

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "b" + } + ] + }, + { + "html": "

Details of Step Method

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "c" + }, + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "d" + } + ] + }, + { + "html": "

Supporting Idea 2: Creating a Mental Picture

The second method introduced is creating a mental picture of the route. Sentence (e) clearly presents this alternative approach to route memorization.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-5", + "position": "replace", + "html": "e" + } + ] + }, + { + "html": "

Details of Mental Picture Method

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-6", + "position": "replace", + "html": "g" + }, + { + "target": "question", + "targetId": "blank-7", + "position": "replace", + "html": "h" + } + ] + }, + { + "html": "

Completing the Outline

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + } + ] + }, + { + "unit": 6, + "title": "Dangerous Cures", + "pages": [ + { + "page": 104, + "tips": [ + { + "category": "Word Link", + "embedding": "dis = negative, not", + "text": "dis = negative, not: disease, disagree, disappear, discomfort, discontinue, discourage, disrespect", + "html": "

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": "

Skim the reading passage quickly. What do you think the reading is mainly about?

  • a recent event
  • a person's job
  • an unusual place
  • a serious disease
  • an endangered animal
", + "additional": "

The Snake Chaser

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

Why do toxins make good medications?

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.\"

How does the technology work?

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.

Why are we losing potential drugs?

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.\"

Why do snakes not poison themselves?

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.

1. If you do something for a living, you do it as your main job.2. Pirates are people who attack ships to rob them.3. Medications are medicines that are used to treat and cure illnesses.4. If you peel something, you remove layers from it one at a time.5. If you inject something, such as medicine, you put it into a person or animal using a needle.6. A molecule is the smallest amount of a chemical that can exist by itself.
", + "segments": [ + { + "html": "

Skimming the Passage: Identifying the Main Topic

Let's approach this exercise by quickly examining key elements of the passage to determine its main focus.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Skim the reading passage quickly" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

1. Examining the Title

The title 'The Snake Chaser' immediately suggests that the passage is about a person with an unusual occupation related to snakes.

", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "The Snake Chaser" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

2. Opening Sentences

The first paragraph provides more context:

  • 'As a boy, Zoltan Takacs caught snakes and kept them in his room.'
  • 'Now he hunts them for a living.'

These sentences confirm that the passage is about a person's unusual job involving snakes.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "As a boy, Zoltan Takacs caught snakes and kept them in his room. Now he hunts them for a living." + ] + } + ], + "insertHTML": [] + }, + { + "html": "

3. Subheadings

Skimming through the subheadings, we see:

  • 'Why do toxins make good medications?'
  • 'How does the technology work?'
  • 'Why are we losing potential drugs?'
  • 'Why do snakes not poison themselves?'

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.

", + "wordDelay": 200, + "holdDelay": 12000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Why do toxins make good medications?", + "How does the technology work?", + "Why are we losing potential drugs?", + "Why do snakes not poison themselves?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Conclusion

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.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "a person's job" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

The Value of Skimming Techniques

This exercise demonstrates the importance of efficient reading strategies:

  • Titles often provide a clear indication of the main topic
  • Opening sentences frequently introduce the central theme or subject
  • Subheadings offer a quick overview of the key points covered

By focusing on these elements, we can quickly grasp the main idea of a passage without reading every word, saving time and improving comprehension.

", + "wordDelay": 200, + "holdDelay": 12000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 107, + "tips": [ + { + "category": "CT Focus", + "embedding": "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.", + "text": "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.", + "html": "

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": "

What is the writer's or speaker's meaning in each sentence? Choose a or b.

  1. Takacs's adventures are like action movies.

    • Takacs's life is similar to the life of a famous movie actor.
    • Takacs's job is sometimes like the events in a movie.

  2. Takacs and his colleagues have developed a new technology. It allows the creation of \"toxin libraries\".

    • In a toxin library, toxins are arranged in order on shelves, like books in a library.
    • In a toxin library, a lot of information is stored in a way that's easy to search.

  3. \"Biodiversity loss is like peeling out pages from a book we've never read, then burning them.\"

    • Biodiversity loss can be very dangerous, as it often results from burning large areas of forest.
    • Biodiversity loss is a problem because we lose species before we understand them.
", + "segments": [ + { + "html": "

Understanding Figurative Language in Context

Let's analyze each sentence to understand the writer's intended meaning through the use of figurative language.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "What is the writer's or speaker's meaning in each sentence?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

1. \"Takacs's adventures are like action movies.\"

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:

  • Option a suggests Takacs lives like a movie actor, which isn't the point of the comparison.
  • Option b correctly interprets that Takacs's job involves events similar to those in action movies - likely dangerous, exciting, or unusual situations.

The correct answer is b. Takacs's job is sometimes like the events in a movie.

", + "wordDelay": 200, + "holdDelay": 12000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Takacs's adventures are like action movies.", + "Takacs's job is sometimes like the events in a movie." + ] + } + ], + "insertHTML": [] + }, + { + "html": "

2. \"Toxin libraries\"

This phrase uses the concept of a library as a metaphor. Let's examine the options:

  • Option a takes the metaphor too literally, suggesting physical arrangement like books.
  • Option b captures the essence of a library - organized information that's easy to access and search.

The correct answer is b. In a toxin library, a lot of information is stored in a way that's easy to search.

", + "wordDelay": 200, + "holdDelay": 12000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "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." + ] + } + ], + "insertHTML": [] + }, + { + "html": "

3. \"Biodiversity loss is like peeling out pages from a book we've never read, then burning them.\"

This vivid metaphor compares biodiversity loss to destroying unread book pages. Let's analyze the options:

  • Option a misinterprets the metaphor, focusing on literal burning of forests.
  • Option b correctly captures the metaphor's meaning - losing species before we can study and understand them.

The correct answer is b. Biodiversity loss is a problem because we lose species before we understand them.

", + "wordDelay": 200, + "holdDelay": 12000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Biodiversity loss is like peeling out pages from a book we've never read, then burning them.", + "Biodiversity loss is a problem because we lose species before we understand them." + ] + } + ], + "insertHTML": [] + }, + { + "html": "

The Power of Figurative Language

These examples demonstrate how figurative language enhances writing by:

  • Creating vivid imagery that helps readers visualize complex ideas
  • Drawing parallels between familiar concepts and new information
  • Conveying emotions and emphasizing the importance of certain ideas

By recognizing and interpreting figurative language, readers can gain a deeper understanding of the writer's message and engage more fully with the text.

", + "wordDelay": 200, + "holdDelay": 12000, + "highlight": [ + { + "targets": [ + "tip" + ], + "phrases": [ + "Figurative language allows a writer to compare one thing to another.", + "understand how the two things being compared are similar" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 108, + "tips": [ + { + "category": "Reading Skill", + "embedding": "Identifying Pros and Cons\n\nPros are advantages (positive effects) of something, and cons are disadvantages (negative effects) of something.", + "text": "Identifying Pros and Cons\n\nPros 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.\n\nLook at the facts below. Is each fact a pro or a con for studying snake venom?\nIt can be very dangerous.\nA snake's venom might be used to cure a serious disease.\nSnake venom is a good model for medications.\n\nThe first fact is a con (a disadvantage of studying snake venom), and the other two are pros.", + "html": "

Identifying Pros and Cons

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": "

Read the passage about the study of viruses. Then take notes in the table.

Pros of Studying Extinct VirusesCons of Studying Extinct Viruses
", + "additional": "

Should Dead Viruses Be Given New Life?

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.

1. A virus is a germ that can cause disease, such as smallpox, polio, and HIV.2. A vaccine is a substance that doctors put in people's bodies so that they won't get particular diseases.
", + "segments": [ + { + "html": "

Analyzing Pros and Cons of Studying Extinct Viruses

Let's examine the passage to identify the advantages (pros) and disadvantages (cons) of studying extinct viruses.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Pros of Studying Extinct Viruses", + "Cons of Studying Extinct Viruses" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Pros of Studying Extinct Viruses

Let's identify the advantages mentioned in the passage:

  • Can teach us more about how viruses cause disease
  • Can provide information about human species development
  • Allows for development of vaccines against potential reappearance
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "studying these extinct viruses can teach us more about how viruses cause disease", + "these viruses can tell us a lot about how our human species developed in the past", + "scientists can develop vaccines for these diseases in case they reappear one day" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "
  • Learn about disease mechanisms
  • Understand human evolution
  • Develop preventive vaccines
" + } + ] + }, + { + "html": "

Cons of Studying Extinct Viruses

Now, let's identify the disadvantages or potential risks:

  • Potentially very dangerous
  • Risk of viruses infecting large numbers of people quickly
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "rebuilding viruses is potentially very dangerous", + "Some viruses can infect large numbers of people very quickly" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "
  • Potentially dangerous
  • Risk of rapid infection spread
" + } + ] + }, + { + "html": "

Balancing Pros and Cons

By identifying both pros and cons, we can see that:

  • The study of extinct viruses offers significant potential benefits for scientific knowledge and public health
  • However, it also carries serious risks that need to be carefully considered
  • This balanced view helps us understand the complexity of the issue and why it might be controversial
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

The Importance of Identifying Pros and Cons

Recognizing pros and cons in a text is valuable because it:

  • Helps us understand complex issues from multiple perspectives
  • Allows us to evaluate the strength of arguments presented
  • Encourages critical thinking about the topic
  • Aids in forming our own informed opinions on the matter
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 110, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use relief.", + "text": "Use relief with: (n.) pain relief, sense of relief; (v.) express relief, feel relief, bring relief, get relief (from), provide relief (for).", + "html": "

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": "

What does the word it refer to in each sentence (1-4) from the reading passage? Use information in the reading to match items a-f with the sentences. Two items are extra.

  • a headache
  • Botox
  • botulinum
  • Fleisher's career
  • Fleisher's hand
  • the feeling
  • '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...'
", + "additional": "

Poison and the Piano Player

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": "

Analyzing the Exercise

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:

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "What does the word it refer to in each sentence (1-4) from the reading passage?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Sentence 1

'It was as if my hand had been taken over by aliens.'

  • Context: Fleisher is describing the loss of control in his hand.
  • Analysis: 'It' refers to the feeling or situation with his hand.
  • Correct answer: f. the feeling
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question", + "additional" + ], + "phrases": [ + "It was as if my hand had been taken over by aliens" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "f" + } + ] + }, + { + "html": "

Sentence 2

'It was not under my control.'

  • Context: This sentence directly follows the previous one, still describing Fleisher's hand.
  • Analysis: Here, 'it' clearly refers to Fleisher's hand itself.
  • Correct answer: e. Fleisher's hand
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question", + "additional" + ], + "phrases": [ + "It was not under my control" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "e" + } + ] + }, + { + "html": "

Sentence 3

'One gram of it could kill 20 million people.'

  • Context: This sentence is discussing the potency of botulinum toxin.
  • Analysis: 'It' refers to the botulinum toxin mentioned in the previous sentence.
  • Correct answer: c. botulinum
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question", + "additional" + ], + "phrases": [ + "One gram of it could kill 20 million people" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "c" + } + ] + }, + { + "html": "

Sentence 4

'It's used to make skin look younger...'

  • Context: This sentence follows the introduction of Botox, the drug created from botulinum toxin.
  • Analysis: 'It' in this case refers to Botox, not the toxin itself.
  • Correct answer: b. Botox
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question", + "additional" + ], + "phrases": [ + "It's used to make skin look younger" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "b" + } + ] + }, + { + "html": "

Understanding the Tip

The tip about using 'as if' in figurative comparisons is particularly relevant to the first sentence:

  • 'It was as if my hand had been taken over by aliens' uses 'as if' to create a vivid comparison.
  • This figurative language helps readers understand the strange feeling Fleisher experienced.
  • The use of 'as if' indicates that 'it' refers to the feeling or situation, not the hand itself.
  • This understanding helps us differentiate between sentences 1 and 2, where 'it' refers to different things despite being about the same topic.
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 115, + "tips": [ + { + "category": "Language for Writing", + "embedding": "Making Concessions\n\nMaking 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.", + "text": "Making Concessions\n\nMaking 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:\nAlthough botulinum toxin can be deadly, it can also cure several serious diseases.\nEven though botulinum toxin can cure several diseases, it can be deadly.\n\nIn each sentence, the idea in the second clause is emphasized - the writer feels it is stronger and more important.\n\nIn 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)", + "html": "

Making Concessions

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": "

Use although, even though, and though to connect the ideas below (1-3).

  1. more important: Arsenic is still used to treat leukemia.
    less important: Just a small amount of arsenic can be deadly.
  2. less important: Snake venom is dangerous to humans.
    more important: Snake venom is used in a lot of important medications.
  3. more important: Studying extinct viruses might bring back deadly diseases.
    less important: Studying extinct viruses can tell us about the human species.
", + "segments": [ + { + "html": "

Let's approach this exercise step by step:

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].

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Use although, even though, and though to connect the ideas below" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

1. Arsenic and Leukemia Treatment

  • More important: Arsenic is still used to treat leukemia.
  • Less important: Just a small amount of arsenic can be deadly.

Connected sentence:

Although just a small amount of arsenic can be deadly, it is still used to treat leukemia.
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "more important: Arsenic is still used to treat leukemia.", + "less important: Just a small amount of arsenic can be deadly." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "Although just a small amount of arsenic can be deadly, it is still used to treat leukemia." + } + ] + }, + { + "html": "

2. Snake Venom in Medicine

  • Less important: Snake venom is dangerous to humans.
  • More important: Snake venom is used in a lot of important medications.

Connected sentence:

Even though snake venom is dangerous to humans, it is used in a lot of important medications.
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "less important: Snake venom is dangerous to humans.", + "more important: Snake venom is used in a lot of important medications." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Even though snake venom is dangerous to humans, it is used in a lot of important medications." + } + ] + }, + { + "html": "

3. Studying Extinct Viruses

  • More important: Studying extinct viruses might bring back deadly diseases.
  • Less important: Studying extinct viruses can tell us about the human species.

Connected sentence:

Though studying extinct viruses can tell us about the human species, it might bring back deadly diseases.
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "more important: Studying extinct viruses might bring back deadly diseases.", + "less important: Studying extinct viruses can tell us about the human species." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "Though studying extinct viruses can tell us about the human species, it might bring back deadly diseases." + } + ] + }, + { + "html": "

Reflecting on the Exercise

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

The Importance of Making Concessions

Making concessions in writing is a valuable skill because it:

  • Shows you've considered multiple perspectives
  • Strengthens your argument by addressing potential counterpoints
  • Demonstrates a nuanced understanding of complex issues
  • Makes your writing more persuasive and balanced
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Making a concession is saying that one idea is true, but another idea is stronger or more important" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

The tip provided at the beginning of this exercise is particularly beneficial because it:

  • Clarifies the purpose of concessions in writing
  • Provides clear examples of how to structure concessions
  • Explains how the order of clauses affects the emphasis of ideas
  • Helps writers create more sophisticated and persuasive arguments
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Use although, though, and even though to make concessions" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 116, + "tips": [ + { + "category": "Writing Skill", + "embedding": "Writing a Persuasive Paragraph\n\nIn 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.", + "text": "Writing a Persuasive Paragraph\n\nIn 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.\n\nMaking 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.", + "html": "

Writing a Persuasive Paragraph

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": "

Read the paragraph about animal testing. Identify the two sentences that make a concession.

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": "

Step 1: Understand the task

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "A concession acknowledges an opposing viewpoint" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 2: Analyze the paragraph

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).

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "acknowledge the opposing view", + "before presenting the main argument" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 3: Identify the concessions

After careful analysis, we can identify two sentences that make concessions:

  1. \"Although people who support animal testing say that animals are not harmed during tests, animals usually have to live in small cages in laboratories.\"
  2. \"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.\"
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Although people who support animal testing say that animals are not harmed during tests", + "Even though drug companies need to make their products safe for people" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 4: Explain the concessions

Both sentences start by acknowledging a point made by those who support animal testing, but then counter with an argument against it:

  • The first concession acknowledges that supporters claim animals aren't harmed, but then argues that they still suffer poor living conditions.
  • The second concession recognizes the need for safety testing, but then points out that animal tests may not accurately predict effects on humans.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "acknowledging a point made by those who support animal testing", + "then counter with an argument against it" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 5: Understand the importance of concessions

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.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "Making concessions in a persuasive paragraph can help strengthen your argument" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Conclusion

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "shows the reader that you have thought about the different arguments" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + } + ] + }, + { + "unit": 7, + "title": "Nature's Fury", + "pages": [ + { + "page": 124, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use occur.", + "text": "Use occur with (n.): accidents occur, changes occur, events occur; (adv.): frequently occur, naturally occur, normally occur, often occur.", + "html": "

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": "

Find the following quote and paraphrase in \"When Tornadoes Strike\". Note the paragraphs where you find each one. Then answer the questions.

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\".

Paragraph:

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\".

Paragraph:

  1. Why did the writer quote Samaras? (What idea does it support?)
    Why did the writer paraphrase Schneider? (What idea does it support?)
  2. How does the writer describe Samaras and Schneider? For which source do you have more specific information?
", + "additional": "

When Tornadoes Strike

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.

The \"Perfect Storm\"

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.\"

Strong, But Not Surprising?

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.

1The pavement is the hard surface of a road.2If something is on record, it is written down and remembered from the past.3If something is at a particular altitude, it is at that height above sea level.4La Niña (Spanish for the girl) is a weather pattern that occurs when cold water in the Pacific comes to the surface of the ocean off the coast of South America.
", + "segments": [ + { + "html": "

Step 1: Locating the Quote and Paraphrase

Let's start by finding the requested quote and paraphrase in the 'When Tornadoes Strike' article:

  • The quote by Tim Samaras is in paragraph 4, under 'The \"Perfect Storm\"' section.
  • The paraphrase about Russell Schneider is in paragraph 5, under 'Strong, But Not Surprising?' section.
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "There were no limitations,\" said tornado expert Tim Samaras. \"It went absolutely crazy. It had nothing but hundreds of miles to grow and develop.", + "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.\"" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "4" + }, + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "5" + } + ] + }, + { + "html": "

Step 2: Analyzing the Quote (Tim Samaras)

The writer quoted Samaras to:

  • Support the idea that the Tuscaloosa tornado was exceptionally large and long-lasting
  • Provide a vivid description of the tornado's unusual behavior
  • Add credibility to the information by including an expert's perspective
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "It went absolutely crazy. It had nothing but hundreds of miles to grow and develop." + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 3: Analyzing the Paraphrase (Russell Schneider)

The writer paraphrased Schneider to:

  • Present a possible explanation for the violent tornadoes in 2011
  • Introduce the concept of La Niña and its potential impact on tornado formation
  • Show that experts have different theories about the cause of these tornadoes
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "think it's because of a weather pattern called \"La Niña.\"" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 4: Comparing Source Descriptions

The writer describes the sources differently:

  • Tim Samaras is introduced as a 'tornado expert'
  • Russell Schneider is described as 'director of the U.S. Storm Prediction Center'

We have more specific information about Schneider's role and affiliation, which may lend more authority to his opinion in this context.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "tornado expert Tim Samaras", + "Russell Schneider, director of the U.S. Storm Prediction Center" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 5: Understanding the Use of Quotes and Paraphrases

The writer employs quotes and paraphrases to:

  • Add credibility to the article by including expert opinions
  • Provide different perspectives on the causes of the tornadoes
  • Make the article more engaging by including direct speech and varied viewpoints
  • Support the main ideas presented in the article with authoritative sources
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "Writers often quote or paraphrase (restate) the ideas of experts to support information in an article" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Conclusion

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.

", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "They may introduce these sources with According to ... or [the expert] thinks/says ..." + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 128, + "tips": [ + { + "category": "Reading Skill", + "embedding": "Identifying Sequence\n\nWhen 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. Transition words that indicate sequence include first, next, then, second, and finally. Time clauses with before, after, when, as soon as, once, and during also show order.", + "text": "Identifying Sequence\n\nWhen 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:\nFirst, warm air and cold air collide and form a tube of rotating air.\nNext, the rotating air turns to become a vertical column.\n\nThe words first and next tell you that warm and cold air collide and form a tube before the rotating air becomes a vertical column.\n\nOther 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.\nBefore you go out, check the weather report.\nAfter the storm passes, it's safe to go outside.\nOnce the storm hits, go inside.\n\nNote: 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.\nKeep windows closed during the storm.\nAs soon as the storm stops, it's safe to go outside.", + "html": "

Identifying Sequence

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.
As soon as the storm stops, it's safe to go outside.
", + "id": "f5b96fbe-b210-4f97-a135-9cb035f4074d", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Answer to these questions:

What should you do before a tornado?

What should you do during a tornado?

What should you do when a tornado is over?

", + "additional": "

What to Do When a Tornado Strikes

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": "

Understanding the Task

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.

  • Identify actions before a tornado
  • Determine steps during a tornado
  • List actions after a tornado has passed
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "before a tornado", + "during a tornado", + "when a tornado is over", + "after a tornado has passed" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Before a Tornado

The text mentions several actions to take before a tornado strikes:

  • Pay attention to weather reports during tornado season
  • Keep an eye on the sky for signs of a tornado
  • Watch for dark, greenish-colored clouds and clouds close to the ground
  • Find shelter immediately if you're outdoors
  • Go to the lowest level possible if you're indoors
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "First, always pay attention to weather reports during tornado season", + "Watch for dark, greenish-colored clouds, and clouds that are close to the ground", + "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" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "Pay attention to weather reports and watch the sky for signs of a tornado" + } + ] + }, + { + "html": "

During a Tornado

The text provides clear instructions for what to do during a tornado:

  • Stay inside for the entire time
  • Stay away from windows to avoid injury from breaking glass
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "Once the tornado hits, stay inside for the entire time", + "During a tornado, stay away from windows, as tornadoes can cause them to break" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "Stay inside and away from windows" + } + ] + }, + { + "html": "

After a Tornado

The text outlines several steps to take after a tornado has passed:

  • Ensure family members are safe
  • Check your home and surrounding area for damage
  • Contact disaster relief organizations for help with cleanup and assistance
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "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" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Check for safety, assess damage, and contact disaster relief organizations" + } + ] + }, + { + "html": "

Recognizing Sequence

The text uses several sequence indicators to show the order of actions:

  • 'First' indicates the initial step of paying attention to weather reports
  • 'As soon as' shows immediacy in finding shelter
  • 'Once' marks the beginning of the tornado
  • 'During' specifies actions while the tornado is active
  • 'When' and 'Finally' indicate steps after the tornado has passed
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional", + "tip" + ], + "phrases": [ + "First", + "As soon as", + "Once", + "During", + "When", + "Finally", + "transition words and phrases to show the order, or sequence" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Importance of Sequence in Instructions

Recognizing sequence in instructions is crucial because:

  • It helps readers understand the correct order of actions
  • It ensures safety by following steps in the proper sequence
  • It makes complex processes easier to follow and remember
  • It allows for better preparation and response in emergency situations

By paying attention to sequence indicators, we can better understand and follow important safety instructions like those for tornado preparedness.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "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" + ] + } + ], + "insertHTML": [] + } + ] + } + }, + { + "category": "CT Focus", + "embedding": "One way to evaluate online sources is to look at the suffix in the Web address.", + "text": "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.", + "html": "

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": "

Answer these questions:

What is the source of the paragraph?

Is this a reliable source of information on tornadoes?

Why, or why not?

", + "additional": "

What to Do When a Tornado Strikes

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": "

Understanding the Task

We need to evaluate the reliability of the given information about tornado safety. To do this, we'll:

  • Identify the source of the information
  • Determine if it's a reliable source for tornado information
  • Explain our reasoning for the reliability assessment
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "What is the source of the paragraph?", + "Is this a reliable source of information on tornadoes?", + "Why, or why not?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 1: Identifying the Source

At the end of the provided text, we can see the source clearly stated:

  • Source: http://www.fema.gov

FEMA stands for the Federal Emergency Management Agency, which is a part of the U.S. government.

", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "Source: http://www.fema.gov" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "http://www.fema.gov (FEMA - Federal Emergency Management Agency)" + } + ] + }, + { + "html": "

Step 2: Evaluating the Reliability

To determine if this is a reliable source, let's consider:

  • The domain suffix (.gov)
  • The nature of the organization (FEMA)
  • The relevance to the topic (emergency management)

Based on these factors, we can conclude that this is indeed a reliable source for information on tornadoes.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + ".gov = government", + "may help you judge a source's reliability" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Yes, it is a reliable source" + } + ] + }, + { + "html": "

Step 3: Explaining the Reliability

This source is reliable for tornado information because:

  • It's a .gov website, indicating it's an official U.S. government source
  • FEMA is specifically responsible for disaster preparedness and response
  • As a government agency, FEMA has access to expert knowledge and resources
  • The information provided aligns with general safety guidelines for tornado situations
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "to evaluate online sources", + "look at the suffix in the Web address" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "It's a .gov website (U.S. government), and FEMA is responsible for disaster preparedness and response" + } + ] + }, + { + "html": "

The Importance of Source Evaluation

Evaluating online sources is crucial because:

  • It helps ensure the information you're reading is accurate and trustworthy
  • It allows you to distinguish between expert advice and potentially misleading information
  • In emergency situations like tornadoes, reliable information can be life-saving
  • It promotes critical thinking and information literacy skills

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + ".com = company", + ".edu = educational institution", + ".gov = government", + "The suffix may help you judge a source's reliability" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 130, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use experience.", + "text": "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.", + "html": "

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.

FactorShape of the land
ExamplesDry grass, plants
", + "additional": "

Wildfires!

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 Fire

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.

  • To control a wildfire, firefighters on the ground first look for something in the area that can block the fire, such as a river or a road. Then they dig a deep trench.3 This is a “fire line,” a line that fire cannot cross.
  • While firefighters on the ground create a fire line, planes and helicopters drop water or chemical fire retardant4 on the fire. Pilots communicate with firefighters on the ground so they know what areas to hit.
  • As soon as the fire line is created, firefighters cut down any dead trees in the area between the fire line and the fire. This helps keep flames from climbing higher into the treetops.
  • At the same time, other firefighters on the ground begin backburning5 in the area between the fire line and the fire.
1 If something is fire-resistant, it does not catch fire easily.2 A military campaign is a planned set of activities for fighting a war.3 A trench is a long, narrow channel.4 Chemical fire retardant is a type of chemical that slows down the burning of fire.5 Backburning is removing fuel, such as plants and trees, from a fire's path, usually by burning it in a controlled way.
", + "segments": [ + { + "html": "

Understanding the Task

We need to analyze the given text to answer questions about:

  • The purpose of Jack Cohen's quote
  • The main factors firefighters consider when fighting wildfires
  • Examples of these factors

Let's break this down step by step.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Why does the writer quote Jack Cohen?", + "What idea does his quote support?", + "what are the main factors that firefighters consider when they are fighting a fire?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Analyzing Jack Cohen's Quote

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:

  • Support the idea that building fire-resistant homes can be an effective strategy against wildfires
  • Provide expert evidence for the effectiveness of this approach
  • Illustrate a practical application of fire prevention strategies
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "Cohen says that in some recent California fires, \"there were significant cases of communities that did not burn . . . because they were fire - resistant.\"" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "To provide expert evidence on fire-resistant homes" + }, + { + "target": "question", + "targetId": "blank-7", + "position": "replace", + "html": "Building fire-resistant homes can protect communities from wildfires" + } + ] + }, + { + "html": "

Main Factors Firefighters Consider

According to the passage, firefighters consider three main factors when fighting a fire:

  1. Shape of the land
  2. Weather
  3. Type of fuel in the fire's path

Let's look at examples for each factor.

", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "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." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Weather" + }, + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "Fuel type" + } + ] + }, + { + "html": "

Examples of Each Factor

1. Shape of the land:

  • Southern sides of mountains (sunnier and drier, more likely to burn)
  • Canyons between mountains (strong winds can change fire direction)

2. Weather:

  • Strong winds (can change fire direction)

3. Fuel type:

  • Dry grass and plants
  • Trees (especially dead trees)
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "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", + "Dry grass, plants" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "Southern mountain sides, canyons" + }, + { + "target": "question", + "targetId": "blank-5", + "position": "replace", + "html": "Strong winds" + } + ] + }, + { + "html": "

The Importance of Expert Quotes

Including expert quotes in an article serves several purposes:

  • Adds credibility to the information presented
  • Provides specific examples or data to support main ideas
  • Offers expert insights that the author may not have
  • Helps readers understand complex topics through an expert's perspective

When reading articles, it's important to consider why certain quotes are included and how they support the main ideas being presented.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "When you see a quote from an expert in an article, think about why the writer included it and the ideas it supports." + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 135, + "tips": [ + { + "category": "Language for Writing", + "embedding": "Verb Forms for Describing a Process\n\nWriters usually use two verb forms when they describe a process - the imperative and the simple present.\n\nIf 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. If you are explaining how something happens, use the simple present. Remember to make subjects and verbs agree when you use the simple present.", + "text": "Verb Forms for Describing a Process\n\nWriters usually use two verb forms when they describe a process - the imperative and the simple present.\n\nIf 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:\nFirst, remove fuel in the fire's path.\n\nThe subject, you, is understood. Remove is the base form of the verb.\n\nIf you are explaining how something happens, use the simple present. For example:\nThen warm air moves upward.\nThen firefighters look for something in the area that can block the fire.\n\nRemember to make subjects and verbs agree when you use the simple present.", + "html": "

Verb Forms for Describing a Process

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": "

Read the information in the box. Complete the sentences (1-3) with the correct form of the verb in parentheses.

  1. __ (move) indoors during a lightning storm, if possible.
  2. Firefighters __ (dig) a trench to block the fire.
  3. First, warm air _ (collide) with cold air at high altitudes.

Write three imperative sentences and three sentences in the simple present. Use the ideas from exercises A and Babove.

Imperative:

Simple Present:

", + "segments": [ + { + "html": "

Understanding the Task

We need to complete two exercises:

  1. Fill in the blanks with the correct verb forms
  2. Write three imperative sentences and three simple present sentences

Let's approach this step-by-step, focusing on the correct use of verb forms in describing processes.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Complete the sentences (1-3) with the correct form of the verb in parentheses", + "Write three imperative sentences and three sentences in the simple present" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Exercise 1: Completing Sentences

Let's analyze each sentence and determine the correct verb form:

  1. \"_______(move) indoors during a lightning storm, if possible.\"
    This is an instruction, so we use the imperative form: \"Move\"
  2. \"Firefighters _______(dig) a trench to block the fire.\"
    This describes what firefighters do, so we use simple present: \"dig\"
  3. \"First, warm air _______(collide) with cold air at high altitudes.\"
    This explains how something happens, so we use simple present: \"collides\"
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "If you are explaining how to do something, use the imperative", + "If you are explaining how something happens, use the simple present" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "Move" + }, + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "dig" + }, + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "collides" + } + ] + }, + { + "html": "

Exercise 2: Writing Sentences

Now, let's create three imperative and three simple present sentences:

Imperative Sentences:

  1. Stay away from windows during a tornado.
  2. Check weather reports regularly in tornado season.
  3. Create a fire-resistant zone around your home.

Simple Present Sentences:

  1. Tornadoes form when warm and cold air masses collide.
  2. Firefighters use various strategies to control wildfires.
  3. Strong winds change the direction of fires quickly.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "The imperative is the base form of a verb", + "You do not use a subject with the imperative", + "Remember to make subjects and verbs agree when you use the simple present" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "Stay away from windows during a tornado." + }, + { + "target": "question", + "targetId": "blank-5", + "position": "replace", + "html": "Check weather reports regularly in tornado season." + }, + { + "target": "question", + "targetId": "blank-6", + "position": "replace", + "html": "Create a fire-resistant zone around your home." + }, + { + "target": "question", + "targetId": "blank-7", + "position": "replace", + "html": "Tornadoes form when warm and cold air masses collide." + }, + { + "target": "question", + "targetId": "blank-8", + "position": "replace", + "html": "Firefighters use various strategies to control wildfires." + }, + { + "target": "question", + "targetId": "blank-9", + "position": "replace", + "html": "Strong winds change the direction of fires quickly." + } + ] + }, + { + "html": "

Understanding Verb Forms in Process Descriptions

Using the correct verb forms is crucial when describing processes because:

  • Imperative verbs give clear, direct instructions
  • Simple present verbs explain how things generally happen
  • Correct usage helps readers distinguish between actions to take and natural occurrences
  • It makes the text more coherent and easier to understand
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "Writers usually use two verb forms when they describe a process - the imperative and the simple present" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Applying the Tip to Real-World Writing

This tip is beneficial because:

  • It helps create clear, effective instructions in various fields (e.g., safety guidelines, cooking recipes, user manuals)
  • It improves the ability to explain scientific processes or natural phenomena accurately
  • It enhances overall writing clarity and precision
  • It's a fundamental skill for technical writing and educational content creation

By mastering these verb forms, you can communicate processes more effectively in both academic and professional contexts.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "First, remove fuel in the fire's path", + "Then warm air moves upward", + "Then firefighters look for something in the area that can block the fire" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 136, + "tips": [ + { + "category": "Writing Skill", + "embedding": "Organizing a Process Paragraph\n\nWhen 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.\n\nTo 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.", + "text": "Organizing a Process Paragraph\n\nWhen 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.\n\nTo 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.\nfirst, second, third; then, next, in addition; finally\nbefore, after, once, when, as soon as, during, while\n\nNote that during and while have similar meanings but are used differently in a sentence.\nDuring the storm, it isn't safe to go outside. (during + noun)\nWhile the storm is happening, stay indoors. (while + noun + be + verb + -ing)\n\nWriters usually use the simple present or the imperative to describe a process. You can also use the present perfect with after and once.\nAfter / Once the storm has passed, it's safe to go outside.\n\nNote: 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.", + "html": "

Organizing a Process Paragraph

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": "

Look at the list of events for a process paragraph. Number them to put them in the best order.

After that, turn off any of your home energy sources that can act as fuel, such as natural gas.

Finally, leave the area as quickly as possible. Do not return home until it is safe.

Then go back inside and close all windows, doors, and other openings. This helps prevent the fire from moving easily through the house.

If a fire is approaching your home, first go outside and move any items that can act as fuel for the fire, such as dead plants.

Then fill large containers such as garbage cans and bathtubs withwater. This will slow down the fire.

Now write the paragraph:

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": "

Understanding the Task

We need to complete two main tasks:

  1. Order the given events in a logical sequence for a process paragraph about wildfire safety.
  2. Write a coherent paragraph using the ordered events, incorporating appropriate transition words.

Let's approach this step-by-step, focusing on creating a clear, chronological process.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Number them to put them in the best order", + "Now write the paragraph" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 1: Ordering the Events

Let's arrange the events in a logical sequence:

  1. If a fire is approaching your home, first go outside and move any items that can act as fuel for the fire, such as dead plants.
  2. Then go back inside and close all windows, doors, and other openings. This helps prevent the fire from moving easily through the house.
  3. After that, turn off any of your home energy sources that can act as fuel, such as natural gas.
  4. Then fill large containers such as garbage cans and bathtubs with water. This will slow down the fire.
  5. Finally, leave the area as quickly as possible. Do not return home until it is safe.
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "When you write a process paragraph, you explain steps or events in a process in chronological order" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "3" + }, + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "5" + }, + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "2" + }, + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "1" + }, + { + "target": "question", + "targetId": "blank-5", + "position": "replace", + "html": "4" + } + ] + }, + { + "html": "

Step 2: Writing the Paragraph

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.

", + "wordDelay": 200, + "holdDelay": 15000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "use transition words and phrases to help the reader follow the order", + "first, second, third; then, next, in addition; finally" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-6", + "position": "replace", + "html": "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." + }, + { + "target": "question", + "targetId": "blank-7", + "position": "replace", + "html": "Then, go back inside and close all windows, doors, and other openings to prevent the fire from moving easily through the house." + }, + { + "target": "question", + "targetId": "blank-8", + "position": "replace", + "html": "After that, turn off any of your home energy sources that can act as fuel, such as natural gas." + }, + { + "target": "question", + "targetId": "blank-9", + "position": "replace", + "html": "Next, fill large containers such as garbage cans and bathtubs with water to slow down the fire." + }, + { + "target": "question", + "targetId": "blank-10", + "position": "replace", + "html": "Finally, leave the area as quickly as possible and do not return home until it is safe." + } + ] + }, + { + "html": "

Understanding Process Paragraphs

Writing an effective process paragraph involves:

  • Arranging events in chronological order
  • Using transition words to show the sequence clearly
  • Providing sufficient details for each step
  • Using simple present or imperative verb forms
  • Ensuring the paragraph flows logically from start to finish
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "Writers usually use the simple present or the imperative to describe a process", + "A process paragraph is more than a list of steps" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Benefits of Organizing Process Paragraphs

Understanding how to organize a process paragraph is beneficial because:

  • It improves clarity in instructional or explanatory writing
  • It helps readers follow complex procedures more easily
  • It's a valuable skill for academic and professional writing
  • It enhances overall communication effectiveness
  • It can be applied to various fields, from technical writing to everyday explanations

By mastering this skill, you can create clear, concise, and easily understandable process descriptions in various contexts.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "To plan a process paragraph, first list each step or event in the correct order", + "It is also important to include details that help the reader understand the steps or events" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + } + ] + }, + { + "unit": 8, + "title": "Buliding Wonders", + "pages": [ + { + "page": 144, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use style.", + "text": "Use style with (n.) leadership style, learning style, style of music, writing style; (adj.) distinctive style, particular style, personal style.", + "html": "

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": "

The Moai of Rapa Nui

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": "

Understanding the Task

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:

  • Distance of Rapa Nui from Chile
  • Probable time of first settlement
  • Origin of Rapa Nui people
  • Height and weight of the statues

We'll use scanning techniques to quickly locate this information in the text.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Scan the paragraph to find the answers to these questions" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Scanning for Answers

Let's go through each question and find the relevant information:

  1. Distance from Chile: 2,300 miles (3,700 kilometers)
  2. First settlement: around AD 800
  3. Origin: Polynesian islands
  4. Statues' dimensions: about 13 feet (4 meters) tall, weighing up to 14 tons

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "2,300 miles (3,700 kilometers) west of Chile", + "around AD 800", + "from Polynesian islands", + "13 feet (4 meters) tall and weigh as much as 14 tons" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "2,300 miles (3,700 kilometers)" + }, + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Around AD 800" + }, + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "Polynesian islands" + }, + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "13 feet (4 meters) tall; up to 14 tons" + } + ] + }, + { + "html": "

Effective Scanning Techniques

To scan effectively:

  • Focus on key words related to the questions
  • Look for numbers when searching for dates, measurements, or distances
  • Pay attention to proper nouns for locations or origins
  • Don't read every word; let your eyes quickly move through the text
  • Be aware of paraphrases or synonyms of the key words you're looking for
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "look for paraphrases of key words, as well as the key words themselves" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Importance of Recognizing Paraphrases

Recognizing paraphrases is crucial in scanning because:

  • Authors often use synonyms or rephrase ideas
  • The exact wording from the question may not appear in the text
  • It helps in understanding the context and nuances of the information
  • It improves overall reading comprehension skills
  • It's a valuable skill for academic and professional reading tasks

For example, in our text, 'first settled' could be paraphrased as 'brave sailors somehow sailed west to Rapa Nui', indicating the first settlement.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip", + "additional" + ], + "phrases": [ + "began building is a paraphrase for started work on", + "Experts guess that a few brave sailors somehow sailed west to Rapa Nui" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Benefits of Effective Scanning

Mastering the skill of scanning, including recognizing paraphrases, is beneficial because:

  • It saves time when searching for specific information in long texts
  • It's essential for quickly reviewing documents or research materials
  • It helps in test-taking strategies, especially for reading comprehension questions
  • It improves overall reading efficiency and speed
  • It's a valuable skill in both academic and professional settings

By practicing scanning and being aware of paraphrases, you can become a more efficient and effective reader across various contexts.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "When you scan, look for paraphrases of key words, as well as the key words themselves" + ] + } + ], + "insertHTML": [] + } + ] + } + }, + { + "category": "Reading Skill", + "embedding": "Scanning for Specific Information\n\nScanning 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.", + "text": "Scanning for Specific Information\n\nScanning 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.\n\nFor 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'.\nAntoní Gaudi began building his church, La Sagrada Família, in 1881.\n\nFirst, your eyes go to 1887. Then your eyes go to began building. You have found the answer to the question - in 1881.", + "html": "

Scanning for Specific Information

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": "

The Moai of Rapa Nui

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": "

Understanding the Task

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:

  • Distance of Rapa Nui from Chile
  • Probable time of first settlement
  • Origin of Rapa Nui people
  • Height and weight of the statues

We'll use scanning techniques to quickly locate this information in the text.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Scan the paragraph to find the answers to these questions" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Scanning for Answers

Let's go through each question and find the relevant information:

  1. Distance from Chile: 2,300 miles (3,700 kilometers)
  2. First settlement: around AD 800
  3. Origin: Polynesian islands
  4. Statues' dimensions: about 13 feet (4 meters) tall, weighing up to 14 tons

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "2,300 miles (3,700 kilometers) west of Chile", + "around AD 800", + "from Polynesian islands", + "13 feet (4 meters) tall and weigh as much as 14 tons" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "2,300 miles (3,700 kilometers)" + }, + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Around AD 800" + }, + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "Polynesian islands" + }, + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "13 feet (4 meters) tall; up to 14 tons" + } + ] + }, + { + "html": "

Effective Scanning Techniques

To scan effectively:

  • Focus on key words related to the questions
  • Look for numbers when searching for dates, measurements, or distances
  • Pay attention to proper nouns for locations or origins
  • Don't read every word; let your eyes quickly move through the text
  • Be aware of paraphrases or synonyms of the key words you're looking for
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "look for paraphrases of key words, as well as the key words themselves" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Importance of Recognizing Paraphrases

Recognizing paraphrases is crucial in scanning because:

  • Authors often use synonyms or rephrase ideas
  • The exact wording from the question may not appear in the text
  • It helps in understanding the context and nuances of the information
  • It improves overall reading comprehension skills
  • It's a valuable skill for academic and professional reading tasks

For example, in our text, 'first settled' could be paraphrased as 'brave sailors somehow sailed west to Rapa Nui', indicating the first settlement.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip", + "additional" + ], + "phrases": [ + "began building is a paraphrase for started work on", + "Experts guess that a few brave sailors somehow sailed west to Rapa Nui" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Benefits of Effective Scanning

Mastering the skill of scanning, including recognizing paraphrases, is beneficial because:

  • It saves time when searching for specific information in long texts
  • It's essential for quickly reviewing documents or research materials
  • It helps in test-taking strategies, especially for reading comprehension questions
  • It improves overall reading efficiency and speed
  • It's a valuable skill in both academic and professional settings

By practicing scanning and being aware of paraphrases, you can become a more efficient and effective reader across various contexts.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "When you scan, look for paraphrases of key words, as well as the key words themselves" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 152, + "tips": [ + { + "category": "Word Link", + "embedding": "trans = across", + "text": "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.", + "html": "

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": "

Scan the reading passage for information to complete the table.

NameWhen was it built?How was it built?
Göbekli Tepe11,500 B.C.
Chichén Itzá

According to the writer, what was the purpose of each structure? What evidence does the writer give? Scan the reading again and write your answers.

Göbekli Tepe

___________________________________________

___________________________________________

Chichén Itzá

___________________________________________

___________________________________________

In what ways are the structures you read about similar? In what ways are they different? Use your ideas from the previous exercises. Complete the table.

Göbekli TepeBothChichén Itzá
", + "additional": "

Amazing Structures

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

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.

How Was It Built?

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.

Why Was It Built?

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á

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.

How Was It Built?

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.

Why Was It Built?

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.

1 Stonehenge is a prehistoric monument in southern England, built around 2600 B.C.2 If a person or group is nomadic, they travel from place to place rather than living in one place all the time.3 The Stone Age was a very early period in human history when people used tools and weapons made of stone, not metal.4 An equinox is a time in the year when day and night are of equal length.5 A sacrifice is a religious ceremony in which people or animals are killed.6 An astronomer is a person who studies stars, planets, and other objects in space.
", + "segments": [ + { + "html": "

Understanding the Task

We need to complete three main tasks:

  1. Fill in a table with information about Göbekli Tepe and Chichén Itzá
  2. Identify the purpose and evidence for each structure
  3. Compare and contrast the two structures

Let's approach this step-by-step, using scanning techniques to find the relevant information quickly.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Scan the reading passage for information to complete the table", + "According to the writer, what was the purpose of each structure?", + "In what ways are the structures you read about similar? In what ways are they different?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Task 1: Completing the Table

Let's scan for the missing information:

  • Göbekli Tepe: Built in 11,500 B.C. (given)
  • How it was built: Stone Age tools were used, hundreds of workers carved and placed 16-ton stones
  • Chichén Itzá: Built date not specified, but it's much later than Göbekli Tepe
  • How it was built: Constructed with carved stone, workers created a base and added smaller levels, took hundreds of years to complete
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "Archaeologists found Stone Age tools such as knives at the site. They think hundreds of workers carved and put the pillars in place.", + "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." + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "Stone Age tools, hundreds of workers carved and placed 16-ton stones" + }, + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Not specified (much later than Göbekli Tepe)" + }, + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "Carved stone, base with smaller levels added, took hundreds of years" + } + ] + }, + { + "html": "

Task 2: Purpose and Evidence

Scanning for purpose and evidence:

Göbekli Tepe:

  • Purpose: Likely the world's oldest temple, a holy meeting place
  • Evidence: T-shaped pillars possibly representing humans, arranged in circles facing the center

Chichén Itzá:

  • Purpose: Advanced city center and religious site
  • Evidence: Human sacrifices to rain god, astronomical observations from pyramid tops
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "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", + "Chichén Itzá was both an advanced city center and a religious site", + "Spanish records show that the Mayans made human sacrifices to a rain god here", + "They used the tops of the pyramids to view Venus and other planets" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "World's oldest temple, holy meeting place" + }, + { + "target": "question", + "targetId": "blank-5", + "position": "replace", + "html": "T-shaped pillars representing humans, arranged in circles" + }, + { + "target": "question", + "targetId": "blank-6", + "position": "replace", + "html": "Advanced city center and religious site" + }, + { + "target": "question", + "targetId": "blank-7", + "position": "replace", + "html": "Human sacrifices, astronomical observations from pyramids" + } + ] + }, + { + "html": "

Task 3: Comparing and Contrasting

Let's identify similarities and differences:

Similarities:

  • Both are ancient structures
  • Both had religious purposes
  • Both were built without metal tools or wheels

Differences:

  • Göbekli Tepe is much older (11,500 B.C. vs. unspecified later date)
  • Göbekli Tepe has stone pillars, Chichén Itzá has pyramids
  • Chichén Itzá was also a city center, while Göbekli Tepe was primarily a religious site
  • Chichén Itzá shows advanced astronomical knowledge
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "To identify comparisons, you need to scan for and select relevant details from different parts of the text" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-8", + "position": "replace", + "html": "Much older (11,500 B.C.)" + }, + { + "target": "question", + "targetId": "blank-9", + "position": "replace", + "html": "Ancient structures" + }, + { + "target": "question", + "targetId": "blank-10", + "position": "replace", + "html": "Built much later" + }, + { + "target": "question", + "targetId": "blank-11", + "position": "replace", + "html": "Stone pillars" + }, + { + "target": "question", + "targetId": "blank-12", + "position": "replace", + "html": "Religious purposes" + }, + { + "target": "question", + "targetId": "blank-13", + "position": "replace", + "html": "Pyramids" + }, + { + "target": "question", + "targetId": "blank-14", + "position": "replace", + "html": "Primarily religious site" + }, + { + "target": "question", + "targetId": "blank-15", + "position": "replace", + "html": "Built without metal tools or wheels" + }, + { + "target": "question", + "targetId": "blank-16", + "position": "replace", + "html": "City center and astronomical site" + } + ] + }, + { + "html": "

The Importance of Scanning for Comparisons

Scanning for comparisons is a crucial skill because:

  • It helps organize information from different parts of a text
  • It allows for quick identification of similarities and differences
  • It enhances critical thinking and analytical skills
  • It's useful for summarizing complex information
  • It's applicable in various academic and professional contexts

By practicing this skill, you can improve your ability to process and understand complex texts efficiently.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "for example, names of people and places, years, dimensions, and other specific details" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 157, + "tips": [ + { + "category": "Language for Writing", + "embedding": "Using Comparative Adjectives\n\nOne way to make comparisons is to use the comparative forms of adjectives.\nadjective + -er + than\nmore / less + adjective + than", + "text": "Using Comparative Adjectives\n\nOne way to make comparisons is to use the comparative forms of adjectives.\nadjective + -er + than\nmore / less + adjective + than (with most adjectives that have two or more syllables)\n\nExamples:\nGöbekli Tepe is older than Stonehenge.\nThe design of La Sagrada Família is more complex than the design of St. Patrick's Cathedral.\n\nUse (not) as + adjective + as to say things are (or are not) the same.\nExample:\nThe Empire State Building is not as tall as the Tokyo Sky Tree.", + "html": "

Using Comparative Adjectives

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": "

Complete the sentences (1-3) using comparative adjectives.

  1. 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)

  2. 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)

  3. 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)

", + "segments": [ + { + "html": "

Understanding the Task

In this exercise, we need to complete three sentences using comparative adjectives. The task requires us to:

  • Analyze the given information about each pair of structures
  • Identify the appropriate comparative form for each adjective
  • Construct grammatically correct comparative sentences

Let's approach each sentence step by step.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Complete the sentences (1-3) using comparative adjectives" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Sentence 1: Tokyo Sky Tree vs. Canton Tower

Given information:

  • Tokyo Sky Tree: 2,080 feet (634 meters) tall
  • Canton Tower: 1,969 feet (600 meters) tall

Analysis:

  • The Tokyo Sky Tree is taller
  • We're comparing heights, so we'll use the adjective 'tall'
  • 'Tall' is a one-syllable adjective, so we add '-er' + 'than'

Correct comparative form: 'taller than'

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "adjective + -er + than" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "taller than" + } + ] + }, + { + "html": "

Sentence 2: St. Mary's Cathedral vs. St. Paul's Cathedral

Given information:

  • St. Paul's Cathedral: traditional design
  • St. Mary's Cathedral: partly traditional and partly modern design

Analysis:

  • St. Mary's Cathedral is less traditional
  • We're comparing traditionality, so we'll use the adjective 'traditional'
  • 'Traditional' has more than two syllables, so we use 'less' + adjective + 'than'

Correct comparative form: 'less traditional than'

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "more / less + adjective + than (with most adjectives that have two or more syllables)" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "less traditional than" + } + ] + }, + { + "html": "

Sentence 3: Hadrian's Wall vs. Great Wall of China

Given information:

  • Great Wall of China: 5,500 miles (8,850 kilometers) long
  • Hadrian's Wall: 73 miles (120 kilometers) long

Analysis:

  • Hadrian's Wall is significantly shorter
  • We're comparing lengths, so we'll use the adjective 'long'
  • The sentence structure uses 'not as... as', which indicates inequality

Correct comparative form: 'as long as'

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "Use (not) as + adjective + as to say things are (or are not) the same" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "as long as" + } + ] + }, + { + "html": "

Understanding Comparative Adjectives

Comparative adjectives are used to compare two things. The rules for forming comparatives are:

  • For one-syllable adjectives, add '-er' (e.g., tall → taller)
  • For two-syllable adjectives ending in '-y', change 'y' to 'i' and add '-er' (e.g., happy → happier)
  • For most adjectives with two or more syllables, use 'more' or 'less' before the adjective
  • Some adjectives have irregular comparative forms (e.g., good → better, bad → worse)

The structure 'not as... as' is used to express inequality between two things.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "One way to make comparisons is to use the comparative forms of adjectives" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Benefits of Using Comparative Adjectives

Understanding and using comparative adjectives is beneficial because:

  • It allows for precise comparisons between two objects or concepts
  • It enhances descriptive writing skills
  • It's essential for academic and professional communication
  • It helps in expressing preferences and making decisions
  • It's useful in various fields like architecture, engineering, and design

By mastering comparative adjectives, you can communicate more effectively and make clearer comparisons in both written and spoken English.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "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", + "The Empire State Building is not as tall as the Tokyo Sky Tree" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 158, + "tips": [ + { + "category": "Writing Skill", + "embedding": "Writing a Comparison Paragraph\n\nWhen 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.", + "text": "Writing a Comparison Paragraph\n\nWhen 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.\n\nTransition words and phrases in your paragraph help the reader understand your ideas:\nSimilarities: similarly, both, also, too Differences: however, on the other hand, but\nBoth Göbekli Tepe and Stonehenge are ancient monuments. However, Göbekli Tepe is much older.\nThe pyramids at Chichén Itzá showed the change in seasons. Similarly, some experts think people used Stonehenge as a kind of calendar.", + "html": "

Writing a Comparison Paragraph

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.
The pyramids at Chichén Itzá showed the change in seasons. Similarly, some experts think people used Stonehenge as a kind of calendar.
", + "id": "204019c1-3832-433f-911d-76ed743293f1", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Write five comparison sentences about places.

", + "segments": [ + { + "html": "

Understanding the Task

In this exercise, we need to write five comparison sentences about places. To do this effectively, we should:

  • Choose different places to compare
  • Identify specific aspects of these places to compare
  • Use appropriate comparative structures and transition words
  • Ensure our sentences are clear and informative

Let's approach this task step by step, creating diverse comparison sentences.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Write five comparison sentences about places" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Sentence 1: Comparing Size

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:

  • Compares the size of two famous cities
  • Uses 'larger than' for comparison
  • Includes a similarity using 'however' and 'both'
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "Similarities: similarly, both, also, too", + "Differences: however, on the other hand, but" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "New York City is significantly larger than Paris in terms of population, however, both cities are renowned for their iconic landmarks." + } + ] + }, + { + "html": "

Sentence 2: Comparing Climate

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:

  • Compares the climate of two countries
  • Uses 'extremely' and 'much milder' for contrast
  • Includes a similarity using 'but' and 'both'
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "When you write a comparison paragraph, first choose a topic - that is, the items you wish to compare" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "While Canada experiences extremely cold winters, Australia has much milder temperatures year-round, but both countries have diverse landscapes that attract nature enthusiasts." + } + ] + }, + { + "html": "

Sentence 3: Comparing Cultural Aspects

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:

  • Compares cultural aspects of two countries
  • Uses 'similarities' to show likeness
  • Uses 'however' to introduce a difference
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "Next, think of two or three points about the items that you want to discuss" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "Japan and South Korea share many cultural similarities, such as a strong emphasis on respect for elders, however, their traditional cuisines are distinctly different." + } + ] + }, + { + "html": "

Sentence 4: Comparing Natural Features

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:

  • Compares two famous natural landmarks
  • Uses 'deeper than' for comparison
  • Uses 'but' to introduce a similarity
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "Then think of one or two details to include about each point" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "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." + } + ] + }, + { + "html": "

Sentence 5: Comparing Historical Significance

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:

  • Compares two ancient structures
  • Uses 'older than' for comparison
  • Uses 'similarly' to introduce a likeness
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "Transition words and phrases in your paragraph help the reader understand your ideas" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-5", + "position": "replace", + "html": "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." + } + ] + }, + { + "html": "

Benefits of Writing Comparison Sentences

Practicing writing comparison sentences is beneficial because it:

  • Enhances critical thinking skills by identifying similarities and differences
  • Improves vocabulary and use of transition words
  • Develops more sophisticated writing structures
  • Helps in organizing thoughts and information effectively
  • Prepares for more complex comparative essays and analyses

By mastering this skill, you can create more engaging and informative writing in various academic and professional contexts.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment" + ], + "phrases": [ + "Both Göbekli Tepe and Stonehenge are ancient monuments. However, Göbekli Tepe is much older", + "The pyramids at Chichén Itzá showed the change in seasons. Similarly, some experts think people used Stonehenge as a kind of calendar" + ] + } + ], + "insertHTML": [] + } + ] + } + }, + { + "category": "CT Focus", + "embedding": "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.", + "text": "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.", + "html": "

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": "

Read the title and the subheads of the reading passage. What is the reading passage mainly about?

  1. three ways in which birds attract the opposite sex
  2. three possible purposes of feathers
  3. three methods birds use to fly
", + "additional": "

What are Feathers For?

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.

Insulation

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.

Attraction

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.

Flight

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.

1 Paleontologists are scientists who study fossils.2 Limbs are arms or legs.3 If something is iridescent, it has many bright colors that seem to be changing.4 A sac is a small part of an animal's body that is shaped like a little bag.
", + "segments": [ + { + "html": "

Understanding the Task

We need to determine the main topic of the reading passage by analyzing its title and subheads. This exercise tests our ability to:

  • Identify the overall theme from structural elements
  • Recognize how subheads organize information
  • Infer the main topic without reading the full text

Let's examine the title and subheads to find the answer.

", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "Read the title and the subheads of the reading passage", + "What is the reading passage mainly about?" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Analyzing the Title and Subheads

Let's look at the structural elements of the passage:

  • Title: 'What are Feathers For?'
  • Subheads:
    1. Insulation
    2. Attraction
    3. Flight

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "additional" + ], + "phrases": [ + "What are Feathers For?", + "Insulation", + "Attraction", + "Flight" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Interpreting the Information

From our analysis, we can conclude:

  • The passage is focused on feathers and their purposes
  • It discusses three main functions of feathers: insulation, attraction, and flight
  • These functions are likely explained in detail under each subhead

This structure suggests that the passage is exploring different purposes or functions of feathers, rather than focusing solely on attraction or flight methods.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "Reading subheads can give you an overall idea of the theme of a passage and how it is organized" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Selecting the Correct Answer

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.

", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "segment", + "question" + ], + "phrases": [ + "three possible purposes of feathers" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

The Importance of Analyzing Subheads

This exercise demonstrates why understanding subheads is crucial:

  • It provides a quick overview of the main points
  • It reveals the organizational structure of the text
  • It helps in predicting the content of each section
  • It aids in efficient reading and comprehension
  • It's particularly useful for academic and professional reading

By mastering this skill, you can quickly grasp the main ideas of a text and improve your reading efficiency across various subjects and contexts.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "segment", + "tip" + ], + "phrases": [ + "A subhead (or section head) indicates the main theme of that section", + "whether or not the information is divided into categories" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 169, + "tips": [ + { + "category": "CT Focus", + "embedding": "When you evaluate evidence, consider whether it is relevant, logical, sufficient, plausible and reliable.", + "text": "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?).", + "html": "

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": "

Scan the reading passage for information to complete the table.

  1. 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.”

  2. What fossil evidence have scientists found relating to each purpose? Note the information under “Evidence.”

PurposeExamplesEvidence
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.

Think about the scientific evidence in thre previous exercise for each theory about feathers.

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?

", + "additional": "

What are Feathers For?

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.

Insulation

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.

Attraction

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.

Flight

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.

1 Paleontologists are scientists who study fossils.2 Limbs are arms or legs.3 If something is iridescent, it has many bright colors that seem to be changing.4 A sac is a small part of an animal's body that is shaped like a little bag.
", + "segments": [ + { + "html": "

Understanding the Exercise

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:

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Scan the reading passage", + "complete the table" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Step 1: Identify the Purposes of Feathers

  • From the reading, we can identify three main purposes of feathers:
  • 1. Insulation
  • 2. Attraction
  • 3. Flight
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Insulation", + "Attraction", + "Flight" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "Insulation" + }, + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "Attraction" + }, + { + "target": "question", + "targetId": "blank-7", + "position": "replace", + "html": "Flight" + } + ] + }, + { + "html": "

Step 2: Find Modern-Day Examples

Now, let's find examples from the reading for each purpose:

  • Insulation: Many young birds are covered in light, soft feathers for warmth.
  • Attraction: Peacocks spread their iridescent tails to attract peahens.
  • Flight: Birds' feathers are thin and hard on one side, long and flexible on the other.
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "young birds are covered in light, soft feathers", + "peacock spreads his iridescent tail", + "thin and hard on one side, and long and flexible on the other" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Young birds" + }, + { + "target": "question", + "targetId": "blank-5", + "position": "replace", + "html": "Peacocks spread their iridescent tails to attract peahens." + }, + { + "target": "question", + "targetId": "blank-8", + "position": "replace", + "html": "thin and hard" + }, + { + "target": "question", + "targetId": "blank-9", + "position": "replace", + "html": "long and flexible" + } + ] + }, + { + "html": "

Step 3: Identify Fossil Evidence

Now, let's find the fossil evidence for each purpose:

  • Insulation: Theropod fossils show front limbs spread over nests, suggesting they used feathers to keep young warm.
  • Attraction: Scientists found melanosomes in theropod feathers, which give feathers their color.
  • Flight: Anchiornis fossils show black-and-white arm feathers and a moveable bone for folding arms.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "theropod fossils", + "front limbs spread over nests", + "melanosomes", + "Anchiornis", + "moveable bone" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "Theropod fossils show front limbs spread over nests, suggesting they used feathers to keep young warm." + }, + { + "target": "question", + "targetId": "blank-6", + "position": "replace", + "html": "Scientists found melanosomes in theropod feathers, which give feathers their color." + }, + { + "target": "question", + "targetId": "blank-10", + "position": "replace", + "html": "moveable bone" + } + ] + }, + { + "html": "

Evaluating the Evidence

Now that we've gathered the information, let's think about how convincing this evidence is:

  • Is it relevant? Yes, all the evidence directly relates to feather purposes.
  • Is it logical? The explanations make sense and follow a logical progression.
  • Is it sufficient? There are multiple pieces of evidence for each purpose.
  • Is it plausible? The evidence aligns with what we observe in modern birds.
  • Is it reliable? The information comes from paleontological discoveries and research.
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "relevant", + "logical", + "sufficient", + "plausible", + "reliable" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "In your opinion, does the evidence help support the theories?", + "Do you think one theory is more convincing than the others?" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-11", + "position": "replace", + "html": "Yes, the evidence supports the theories. It's convincing because it combines fossil evidence with observations of modern birds, providing a logical explanation for feather evolution." + }, + { + "target": "question", + "targetId": "blank-12", + "position": "replace", + "html": "The flight theory seems most convincing due to detailed explanations and clear fossil progression from non-flying to flying creatures." + } + ] + }, + { + "html": "

Tip Application

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "relevant", + "logical", + "sufficient", + "plausible", + "reliable" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 170, + "tips": [ + { + "category": "Reading Skill", + "embedding": "Identifying Theories\n\nScience writers use verbs such as think, speculate, and suggest when they refer to theories. Writers also use words such as probably and perhaps to indicate theories.", + "text": "Identifying Theories\n\nScience 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.\n\nScience writers use verbs such as think, speculate, and suggest when they refer to theories.\nSome paleontologists speculate that feathers started out as insulation.\nEvidence suggests that their special design and bright colors helped both dinosaurs and birds stay warm.\n\nWriters also use words such as probably and perhaps to indicate theories.\nBecause of this, Anchiornis probally wasn't able to fly.", + "html": "

Identifying Theories

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": "

Read the information about a fossil discovery in China. Identify the theories and the words that introduce them.

", + "additional": "

New Discovery Suggests Dinosaurs Were Early Gliders

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.

1 If a bird or insect flaps its wings, the wings go up and down.2 When birds or airplanes glide, they float on air currents.3 A parachute is a device made of cloth that allows a person to jump safely from an airplane.
", + "segments": [ + { + "html": "

Analyzing the Fossil Discovery

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:

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Identify the theories and the words that introduce them" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Theory 1: Traditional View of Flight Evolution

  • Introducing words: 'Many scientists think'
  • Theory: Dinosaurs evolved flight through arm flapping, possibly as a result of running or jumping
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Many scientists think", + "arm flapping possibly led to flying as a result of running or jumping" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "Theory 1: Dinosaurs evolved flight through arm flapping while running or jumping. Introduced by: 'Many scientists think'" + } + ] + }, + { + "html": "

Theory 2: Gliding Theory

  • Introducing words: 'they think'
  • Theory: Microraptor gui possibly flew by gliding from tree to tree
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "they think", + "possibly flew by gliding from tree to tree" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Theory 2: Microraptor gui flew by gliding from tree to tree. Introduced by: 'they think'" + } + ] + }, + { + "html": "

Theory 3: Parachute Theory

  • Introducing words: 'They further speculate'
  • Theory: Feathers formed a sort of 'parachute' to help the animal stay in the air
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "They further speculate", + "feathers formed a sort of \"parachute\"" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "Theory 3: Feathers formed a 'parachute' to help stay airborne. Introduced by: 'They further speculate'" + } + ] + }, + { + "html": "

Theory 4: Non-Flight Purpose of Feathers

  • Introducing words: 'Some researchers suggest'
  • Theory: Feathers weren't useful for flight, but possibly helped in mate attraction or making the dinosaur look bigger
", + "wordDelay": 200, + "holdDelay": 6000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Some researchers suggest", + "weren't useful for flight at all", + "attract a mate", + "make the tiny dinosaur look bigger" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "Theory 4: Feathers weren't for flight, but for attraction or appearance. Introduced by: 'Some researchers suggest'" + } + ] + }, + { + "html": "

Evaluating the Evidence

Now that we've identified the theories, let's consider how to evaluate the evidence presented:

  • Relevance: All theories relate to the purpose of feathers in early dinosaurs.
  • Logic: Each theory presents a logical possibility based on the fossil evidence.
  • Sufficiency: The evidence seems limited, as it's based on a single fossil discovery.
  • Plausibility: All theories align with what we know about evolution and animal adaptations.
  • Reliability: The information comes from paleontologists studying the fossils, which lends credibility.
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Paleontologists discovered", + "Chinese team that studied the fossils" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 172, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use involved.", + "text": "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.", + "html": "

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": "

Find two theories in \"Desing by Nature\"

", + "additional": "

Design by Nature

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 and Car Safety

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.

Beetle Shells and Collecting Water

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.

Shark Scales and Swimsuits

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.

1 Charles Darwin was a 19th-century English naturalist who developed a theory of evolution by natural selection.2 If something is armor-like, it is similar to the metal clothing that soldiers wore in the past to protect themselves in battle.3 A channel is a long, narrow passage for water or other liquids to flow along.4 Drag is a force that opposes the motion of an object moving in water or air.
", + "segments": [ + { + "html": "

Analyzing 'Design by Nature'

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Find two theories" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Theory 1: Toucan Bill Function

  • Key phrases: 'theorized', 'suggest'
  • Theories about the purpose of toucan bills:
    • Charles Darwin: attract mates
    • Others: cutting fruit, fighting, warning predators
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Charles Darwin theorized", + "Others suggest", + "attracted mates", + "cutting open fruit", + "fighting", + "warning predators" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "Theory 1: Toucan bill function - Darwin theorized they attract mates; others suggest they're for cutting fruit, fighting, or warning predators." + } + ] + }, + { + "html": "

Theory 2: Toucan Bill Design Application

  • Key phrase: 'thinks'
  • Theory: Toucan bill design can be used in automotive and aviation industries
  • Proposed application: Create safer cars and planes
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "thinks", + "automotive and aviation industries can use the design of the toucan bill", + "Panels that mimic toucan bills may offer better protection" + ] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "Theory 2: Toucan bill design application - Marc André Meyers thinks the design can be used to make safer cars and planes." + } + ] + }, + { + "html": "

Additional Theories in the Text

While not required for the exercise, it's worth noting other theories present:

  • Beetle shell design for water collection (Parker 'thinks')
  • Shark scale inspiration for reducing drag (Lang 'feels')
", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "Parker thinks", + "Lang feels" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

Applying the Tip

The tip provided is incredibly useful for identifying theories in scientific texts. Let's see how it helped us:

  • We found 'theorized' and 'suggest' for the toucan bill function theories
  • We identified 'thinks' for the toucan bill design application theory
  • We also spotted 'thinks' and 'feels' for the beetle and shark theories

By scanning for these key words, we can quickly pinpoint where scientists are presenting theories rather than established facts.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "additional" + ], + "phrases": [ + "theorized", + "suggest", + "thinks", + "feels" + ] + } + ], + "insertHTML": [] + }, + { + "html": "

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.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": [ + "question" + ], + "phrases": [ + "Find two theories" + ] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 177, + "tips": [ + { + "category": "Language for Writing", + "embedding": "Using Synonyms\n\nWhen 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.", + "text": "Using Synonyms\n\nWhen 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:\nOriginal: Some paleontologists speculate that feathers began as a kind of insulation to keep animals or their young warm.\nParaphrase: Some experts think that feathers started as a way to keep warm.\npaleontologists ➝ experts\nbegan ➝ started\nspeculate ➝ think\ninsulation ➝ a way to keep warm\n(Note: You don't change words that don't have synonyms: feathers ➝ feathers.)\n\nOne 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:\nThe Stenocara beetle collects drinking water from the atmosphere.\nSynonyms in a thesaurus for atmosphere might include: air, sky, feeling, and mood. Only air is correct in this context.", + "html": "

Using Synonyms

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 ➝ started
speculate ➝ 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": "

Read the information in the box. Use the best synonym to complete the sentences (1-3).

  1. This design makes the bill hard but very light.
    • a. difficult
    • b. firm
  2. The bird's feathers are stiff on one side.
    • a. inflexible
    • b. formal
  3. The Stenocara beetle can survive in a very dry environment.
    • a. uninteresting
    • b. arid
", + "segments": [ + { + "html": "

Understanding Synonyms in Context

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["Use the best synonym to complete the sentences"] + } + ], + "insertHTML": [] + }, + { + "html": "

1. 'This design makes the bill hard but very light.'

  • Options: a. difficult, b. firm
  • Analysis: In this context, 'hard' refers to the physical property of the bill, not the level of difficulty.
  • 'Firm' better describes the solid, unyielding nature of the bill's structure.
  • Therefore, the best synonym for 'hard' in this sentence is 'firm'.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["This design makes the bill hard but very light.", "b. firm"] + } + ], + "insertHTML": [] + }, + { + "html": "

2. 'The bird's feathers are stiff on one side.'

  • Options: a. inflexible, b. formal
  • Analysis: 'Stiff' here describes the physical property of the feathers, not a social behavior.
  • 'Inflexible' accurately captures the rigid, unyielding nature of the feathers.
  • 'Formal' is more related to social contexts and doesn't fit the physical description.
  • Therefore, the best synonym for 'stiff' in this sentence is 'inflexible'.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["The bird's feathers are stiff on one side.", "a. inflexible"] + } + ], + "insertHTML": [] + }, + { + "html": "

3. 'The Stenocara beetle can survive in a very dry environment.'

  • Options: a. uninteresting, b. arid
  • Analysis: 'Dry' in this context refers to the lack of moisture in the environment.
  • 'Arid' is a scientific term specifically used to describe extremely dry climates or environments.
  • 'Uninteresting' is unrelated to the environmental conditions being described.
  • Therefore, the best synonym for 'dry' in this sentence is 'arid'.
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["The Stenocara beetle can survive in a very dry environment.", "b. arid"] + } + ], + "insertHTML": [] + }, + { + "html": "

The Importance of Context in Choosing Synonyms

This exercise demonstrates the crucial role of context in selecting appropriate synonyms. Let's review the key points:

  • Words often have multiple meanings or connotations.
  • The correct synonym depends on how the word is used in the sentence.
  • Scientific or technical writing may require specific terminology (e.g., 'arid' for a dry climate).
  • Some synonyms may be more suitable for physical descriptions, while others are better for abstract concepts or social situations.
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [] + }, + { + "html": "

Applying the Tip on Using Synonyms

The tip provided is particularly valuable for this exercise and for improving writing skills in general. Here's how it applies:

  • It encourages restating information in your own words, which deepens understanding.
  • It highlights the importance of context in choosing synonyms (e.g., 'atmosphere' → 'air' in the given example).
  • It suggests using a thesaurus as a tool for finding synonyms, but emphasizes the need for careful selection based on context.
  • The tip demonstrates how paraphrasing can maintain the original meaning while using different words (e.g., 'insulation' → 'a way to keep warm').

By applying this tip, you can enhance your vocabulary, improve your writing clarity, and develop a deeper understanding of language nuances.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["restate information as much as possible in your own words", "replace some of the original words or phrases with synonyms", "understand the context", "use a thesaurus", "Not all synonyms are an exact match for a word"] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 178, + "tips": [ + { + "category": "Strategy", + "embedding": "When you paraphrase, you can combine sentences into a single sentence.", + "text": "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?", + "html": "

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": "

How many sentences from the original paragraph combine to make the last sentence in the summary?

", + "additional": "

Original

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.

Summary

  • Biomimetics involves studying the ways in which plants and animals adapt to their environments in order to develop useful products and technologies for people.
  • An example of biomimetics is Velcro.
  • A Swiss scientist, George de Mestral, observed how well a bur attached to his dog's fur.
  • He created a two-part fastener by mimicking the loops on the bur and the softness of the dog's fur.
", + "segments": [ + { + "html": "

Understanding Sentence Combination in Paraphrasing

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["How many sentences from the original paragraph combine to make the last sentence in the summary?"] + } + ], + "insertHTML": [] + }, + { + "html": "

Analyzing the Original Paragraph

The original paragraph contains 7 sentences:

  1. Scientists are studying the adaptations of living organisms...
  2. This process is called biomimetics.
  3. Velcro is one example of biomimetics.
  4. In 1948, a Swiss scientist, George de Mestral, removed a bur stuck to his dog's fur.
  5. De Mestral studied it under a microscope and noticed how well hooks on the bur stuck to things.
  6. He copied the design to make a two-piece fastening device.
  7. 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.
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["Scientists are studying the adaptations of living organisms", "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"] + } + ], + "insertHTML": [] + }, + { + "html": "

Examining the Summary

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:

  • Sentence 5: De Mestral studied it under a microscope and noticed how well hooks on the bur stuck to things.
  • Sentence 6: He copied the design to make a two-piece fastening device.
  • Sentence 7: 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.
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["He created a two-part fastener by mimicking the loops on the bur and the softness of the 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"] + } + ], + "insertHTML": [] + }, + { + "html": "

Conclusion

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.

", + "wordDelay": 200, + "holdDelay": 7000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["How many sentences from the original paragraph combine to make the last sentence in the summary?"] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "3 sentences" + } + ] + }, + { + "html": "

The Value of Sentence Combination in Paraphrasing

This exercise demonstrates the power of combining sentences when paraphrasing:

  • It allows for more concise summaries
  • It helps in identifying and focusing on key information
  • It encourages critical thinking about how ideas relate to each other
  • It can improve the flow and coherence of the paraphrased text

By mastering this skill, you can create more effective summaries and demonstrate a deeper understanding of the original text.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["When you paraphrase, you can combine sentences into a single sentence"] + } + ], + "insertHTML": [] + } + ] + } + } + ] + } + ] + }, + { + "unit": 10, + "title": "Mobile Revolution", + "pages": [ + { + "page": 186, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use challenge.", + "text": "Use challenge with (adj.) biggest challenge, new challenge; (v.) accept a challenge, face a challenge, present a challenge.", + "html": "

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": "

Read the passage below and then think of situations in your past where you needed to get important information to a large group of people. How did you do it? What kind of technology did you use? Was it successful?

", + "additional": "

Changing the World with a Cell Phone

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.

Simple Solutions for Big Problems

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.

Solving Problems around the World

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.

Making Ideas Reality

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.

1 Software is a computer program.2 An election is a process in which people vote to choose a person or a group of people to hold an official position.3 Crops are plants that are grown in large quantities to be harvested.
", + "segments": [ + { + "html": "

Understanding the Exercise

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["think of situations in your past where you needed to get important information to a large group of people"] + } + ], + "insertHTML": [] + }, + { + "html": "

Key Points from the Passage

  • FrontlineSMS is software that allows mass communication via text messages
  • It works with basic technology (cell phones, inexpensive computers)
  • It's used in areas with limited internet access or unreliable electricity
  • Applications include election monitoring, healthcare updates, and sharing market information
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["FrontlineSMS", "send information from computers without using the Internet", "send important information in more than 50 nations"] + } + ], + "insertHTML": [] + }, + { + "html": "

Reflecting on Personal Experiences

Now, let's think about our own experiences with mass communication:

  • Consider situations where you needed to reach many people quickly (e.g., organizing an event, sharing urgent news)
  • Think about the technology you used (e.g., social media, email, text messages, phone calls)
  • Reflect on the effectiveness of your chosen method
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["How did you do it?", "What kind of technology did you use?", "Was it successful?"] + } + ], + "insertHTML": [] + }, + { + "html": "

Example Response

Here's an example of how you might answer these questions:

  1. Situation: Organizing a school fundraiser
  2. Method: Created a Facebook event and used group text messaging
  3. Technology: Smartphone, social media platforms
  4. Success: Mostly successful, reached many people quickly, but missed some who weren't on social media
  5. Comparison to FrontlineSMS: My method worked well in an area with good internet access, but wouldn't have been as effective in areas FrontlineSMS serves
", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [], + "insertHTML": [ + { + "target": "question", + "targetId": "blank", + "position": "replace", + "html": "

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

" + } + ] + }, + { + "html": "

Analyzing Your Experience

After identifying your experience, consider these questions:

  • How does your method compare to FrontlineSMS in terms of accessibility and reach?
  • What challenges did you face that FrontlineSMS might have solved?
  • Are there situations where FrontlineSMS would be more effective than your method?
  • How might your approach need to change in areas with limited technology?
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["works with an inexpensive laptop", "can work almost anywhere in the world", "even in places where electricity is not very dependable"] + } + ], + "insertHTML": [] + }, + { + "html": "

The Value of Relating to Personal Experience

By connecting the passage to your own experiences, you can:

  • Better understand the challenges FrontlineSMS addresses
  • Appreciate the importance of adapting communication methods to different contexts
  • Recognize the impact of technology on global communication
  • Develop empathy for those facing communication challenges in resource-limited areas

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.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["Relating information to personal experience", "What would I do in that situation?", "Have I experienced something like that?", "How might this idea apply to my own life?"] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 190, + "tips": [ + { + "category": "Strategy", + "embedding": "When you take notes, remember to only note the key points.", + "text": "When you take notes, remember to only note the key points. Don't write complete sentences. Try to use your own words as much as possible.", + "html": "When you take notes, remember to only note the key points. Don't write complete sentences. Try to use your own words as much as possible.", + "id": "fc18e82a-22d1-437a-8452-f7c7e68a84f8", + "verified": true, + "standalone": false, + "exercise": { + "question": "

Complete the following table with notes on “Changing the World With a Cell Phone.”

Paragraph NumberMain IdeaSupporting Details
2How 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
", + "additional": "

Changing the World with a Cell Phone

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.

Simple Solutions for Big Problems

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.

Solving Problems around the World

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.

Making Ideas Reality

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.

1 Software is a computer program.2 An election is a process in which people vote to choose a person or a group of people to hold an official position.3 Crops are plants that are grown in large quantities to be harvested.
", + "segments": [ + { + "html": "

Analyzing 'Changing the World with a Cell Phone'

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["Complete the following table with notes"] + } + ], + "insertHTML": [] + }, + { + "html": "

Paragraph 3: How FrontlineSMS Works

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
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["He created some computer software called FrontlineSMS", "I wrote the software in five weeks at a kitchen table", "send information from computers without using the Internet", "can work with any kind of computer", "connect a cell phone to the computer", "cell phone sends the information as a text message"] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "Description of FrontlineSMS software" + }, + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "

Created in 5 weeks

Sends info without internet

Works with any computer

Connects cell phone to computer

Sends info as text message

" + } + ] + }, + { + "html": "

Paragraph 4: FrontlineSMS Accessibility

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
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["FrontlineSMS software is free", "work with an inexpensive laptop", "works with old cell phones", "work almost anywhere in the world", "even in places where electricity is not very dependable", "send important information in more than 50 nations"] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "FrontlineSMS is widely accessible" + }, + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "

Free software

Works with cheap laptops and old phones

Functions in areas with unreliable electricity

Used in over 50 countries

" + } + ] + }, + { + "html": "

Paragraph 5: Real-world Applications

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
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["Nigerians used it to monitor their 2007 election", "Malawi, a rural health care program uses FrontlineSMS to contact patients", "In other parts of the world, such as Indonesia, Cambodia, Niger, and El Salvador, farmers now receive the most current prices for their crops"] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-5", + "position": "replace", + "html": "Examples of FrontlineSMS usage worldwide" + }, + { + "target": "question", + "targetId": "blank-6", + "position": "replace", + "html": "

Nigeria: Election monitoring (10,000 texts)

Malawi: Rural healthcare (saves time and money)

Various countries: Farmers get crop prices

" + } + ] + }, + { + "html": "

Paragraph 6: Advice for Innovators

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
", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["Banks advises first researching your idea thoroughly", "find out if your idea offers something that people really need", "go into the community and talk to people", "take advantage of social media tools such as blogs"] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-7", + "position": "replace", + "html": "Banks' advice for turning ideas into reality" + }, + { + "target": "question", + "targetId": "blank-8", + "position": "replace", + "html": "

Research thoroughly

Ensure idea meets real needs

Talk to community members

Use social media to connect and share

" + } + ] + }, + { + "html": "

The Value of Effective Note-taking

This exercise demonstrates the importance of concise, focused note-taking:

  • Captures main ideas and key supporting details
  • Uses brief phrases instead of full sentences
  • Organizes information logically
  • Facilitates quick review and understanding
  • Encourages active engagement with the text

By practicing this skill, you can improve your ability to extract and retain essential information from any text you read.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["When you take notes, remember to only note the key points", "Don't write complete sentences", "Try to use your own words as much as possible"] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 193, + "tips": [ + { + "category": "Word Partners", + "embedding": "Use imagine.", + "text": "Use imagine with (v.) can / can't imagine something, try to imagine; (adj.) difficult / easy / hard to imagine; possible / impossible to imagine.", + "html": "

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": "

Using Modals to Discuss Abilities and Possibilities

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": "

Read the information in the box. Use the verbs in parentheses and the cues to complete the sentences (1-4).

  1. This solution ____________________ (save) people a lot of money. (future possibility; less certain)
  2. Technicians ____________________ (make) fewer mistakes with Ozcan's cell-phone microscope. (future possibility; least certain)
  3. FrontlineSMS ____________________ (help) farmers get better prices for their crops. (present ability)
  4. BBC Janala ____________________ (help) students who do not have the time or the money to attend classes. (future possibility; most certain)
", + "segments": [ + { + "html": "

Understanding Modal Verbs for Abilities and Possibilities

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.

", + "wordDelay": 200, + "holdDelay": 5000, + "highlight": [ + { + "targets": ["question"], + "phrases": ["Use the verbs in parentheses and the cues to complete the sentences"] + } + ], + "insertHTML": [] + }, + { + "html": "

Sentence 1: Future Possibility (Less Certain)

  • Verb: save
  • Cue: future possibility; less certain
  • Appropriate modal: could
  • Correct answer: This solution could save people a lot of money.

We use 'could' here because it expresses a future possibility with less certainty than 'will' but more certainty than 'might' or 'may'.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["could is less certain"] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-1", + "position": "replace", + "html": "could save" + } + ] + }, + { + "html": "

Sentence 2: Future Possibility (Least Certain)

  • Verb: make
  • Cue: future possibility; least certain
  • Appropriate modal: might or may
  • Correct answer: Technicians might make (or may make) fewer mistakes with Ozcan's cell-phone microscope.

We use 'might' or 'may' here because the cue specifies the least certain possibility.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["may and might are the least certain"] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-2", + "position": "replace", + "html": "might make" + } + ] + }, + { + "html": "

Sentence 3: Present Ability

  • Verb: help
  • Cue: present ability
  • Appropriate modal: can
  • Correct answer: FrontlineSMS can help farmers get better prices for their crops.

'Can' is used here because it expresses a present ability or capability.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["Can shows present ability"] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-3", + "position": "replace", + "html": "can help" + } + ] + }, + { + "html": "

Sentence 4: Future Possibility (Most Certain)

  • Verb: help
  • Cue: future possibility; most certain
  • Appropriate modal: will
  • Correct answer: BBC Janala will help students who do not have the time or the money to attend classes.

'Will' is used here because it expresses the highest level of certainty about a future possibility.

", + "wordDelay": 200, + "holdDelay": 8000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["Will is most certain"] + } + ], + "insertHTML": [ + { + "target": "question", + "targetId": "blank-4", + "position": "replace", + "html": "will help" + } + ] + }, + { + "html": "

The Importance of Modal Verbs

Understanding and correctly using modal verbs is crucial for effective communication:

  • They allow you to express different levels of certainty about future events
  • They help in discussing possibilities and abilities clearly
  • They add nuance to your statements, making your language more precise
  • In scientific or technical writing, they're essential for discussing hypotheses and potential outcomes

By mastering the use of modal verbs, you can communicate ideas about abilities and possibilities with greater accuracy and sophistication.

", + "wordDelay": 200, + "holdDelay": 10000, + "highlight": [ + { + "targets": ["additional"], + "phrases": ["Some modals express abilities and possibilities", "These modals are useful for describing solutions", "Remember to use the base form of the verb after a modal"] + } + ], + "insertHTML": [] + } + ] + } + } + ] + }, + { + "page": 198, + "tips": [ + { + "category": "Strategy", + "embedding": "Remember to use transition words and phrases when you describe a solution that involves a sequence of steps.", + "text": "Remember to use transition words and phrases when you describe a solution that involves a sequence of steps.", + "html": "

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)