From 64776617f297b3c94c918fd901ba1cb8f29cf5bf Mon Sep 17 00:00:00 2001 From: Cristiano Ferreira Date: Sun, 3 Sep 2023 18:05:13 +0100 Subject: [PATCH] Add script to create videos for speaking questions. --- .env | 3 +- download-video/placeholder.txt | 1 + testing.py => generate_base_questions.py | 0 generate_speaking_questions.py | 71 + helper/file_helper.py | 3 +- helper/firebase_helper.py | 19 + helper/heygen_api.py | 87 + heygen/avatars.json | 8572 +++++++++++++ heygen/english_voices.json | 3313 +++++ heygen/filter_json.py | 18 + heygen/free_english_voices.json | 1749 +++ heygen/voices.json | 13777 +++++++++++++++++++++ run.py | 5 - 13 files changed, 27611 insertions(+), 7 deletions(-) create mode 100644 download-video/placeholder.txt rename testing.py => generate_base_questions.py (100%) create mode 100644 generate_speaking_questions.py create mode 100644 helper/heygen_api.py create mode 100644 heygen/avatars.json create mode 100644 heygen/english_voices.json create mode 100644 heygen/filter_json.py create mode 100644 heygen/free_english_voices.json create mode 100644 heygen/voices.json delete mode 100644 run.py diff --git a/.env b/.env index b9243a1..406decf 100644 --- a/.env +++ b/.env @@ -1,4 +1,5 @@ OPENAI_API_KEY=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 JWT_SECRET_KEY=6e9c124ba92e8814719dcb0f21200c8aa4d0f119a994ac5e06eb90a366c83ab2 JWT_TEST_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ0ZXN0In0.Emrs2D3BmMP4b3zMjw0fJTPeyMwWEBDbxx2vvaWguO0 -GOOGLE_APPLICATION_CREDENTIALS=firebase-configs/mti-ielts-626a2dcf6091.json \ No newline at end of file +GOOGLE_APPLICATION_CREDENTIALS=firebase-configs/mti-ielts-626a2dcf6091.json +HEY_GEN_TOKEN=NTY0Y2JlY2Q4NWE4NDdhY2E4NTNhMDMwNjQ5ZDcxOGUtMTY5MzUxMjIxMw== \ No newline at end of file diff --git a/download-video/placeholder.txt b/download-video/placeholder.txt new file mode 100644 index 0000000..f89d219 --- /dev/null +++ b/download-video/placeholder.txt @@ -0,0 +1 @@ +THIS FILE ONLY EXISTS TO KEEP THIS FOLDER IN THE REPO \ No newline at end of file diff --git a/testing.py b/generate_base_questions.py similarity index 100% rename from testing.py rename to generate_base_questions.py diff --git a/generate_speaking_questions.py b/generate_speaking_questions.py new file mode 100644 index 0000000..73a0efa --- /dev/null +++ b/generate_speaking_questions.py @@ -0,0 +1,71 @@ +from helper.firebase_helper import upload_file_firebase_get_url +from helper.heygen_api import create_video +import os +import uuid + +import firebase_admin +from firebase_admin import credentials, firestore + +from dotenv import load_dotenv + +load_dotenv() + +# Initialize Firebase Admin SDK +cred = credentials.Certificate(os.getenv("GOOGLE_APPLICATION_CREDENTIALS")) + +firebase_admin.initialize_app(cred) + +FIREBASE_BUCKET = 'mti-ielts.appspot.com' +VIDEO_FILES_PATH = 'download-video/' +FIREBASE_SPEAKING_VIDEO_FILES_PATH = 'speaking_videos/' + +questions_json = { + "topic": "Technology and Society", + "questions": [ + "How do you think technology has affected the way people communicate with each other in today's society?", + "In what ways has the use of smartphones and social media platforms changed the dynamics of personal relationships?", + "Some argue that technology has made communication more convenient, while others worry that it has led to a decline in face-to-face interactions. What's your perspective on this matter, and how do you think it might impact future generations?" + ] +} +questions = [] +for question in questions_json["questions"]: + result = create_video(question) + 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 + } + questions.append(video) + else: + print("Failed to create video for question: " + question) + +if len(questions) == len(questions_json["questions"]): + speaking_pt3_to_insert = { + "exercises": [ + { + "id": str(uuid.uuid4()), + "prompts": questions, + "text": "Listen carefully and respond.", + "title": questions_json["topic"], + "type": "speakingPart3" + } + ], + "isDiagnostic": True, + "minTimer": 5, + "module": "speaking" + } + + db = firestore.client() + + # JSON data to insert + + # Add the JSON data to Firestore + collection_ref = db.collection('speaking') + document_ref = collection_ref.add(speaking_pt3_to_insert) + print(f"Document added with ID: {document_ref}") +else: + print("Array sizes do not match. Video uploading failing is probably the cause.") diff --git a/helper/file_helper.py b/helper/file_helper.py index 2e9ba7a..4da54a9 100644 --- a/helper/file_helper.py +++ b/helper/file_helper.py @@ -9,8 +9,9 @@ def delete_files_older_than_one_day(directory): for entry in os.scandir(directory): if entry.is_file(): file_path = Path(entry) + file_name = file_path.name file_modified_time = datetime.datetime.fromtimestamp(file_path.stat().st_mtime) time_difference = current_time - file_modified_time - if time_difference.days > 1: + if time_difference.days > 1 and "placeholder" not in file_name: file_path.unlink() print(f"Deleted file: {file_path}") \ No newline at end of file diff --git a/helper/firebase_helper.py b/helper/firebase_helper.py index fff422e..0b60382 100644 --- a/helper/firebase_helper.py +++ b/helper/firebase_helper.py @@ -22,5 +22,24 @@ def upload_file_firebase(bucket_name, destination_blob_name, source_file_name): print("Error uploading file to Google Cloud Storage:", e) return False +def upload_file_firebase_get_url(bucket_name, destination_blob_name, source_file_name): + # Uploads a file to Firebase Storage. + storage_client = storage.Client() + bucket = storage_client.bucket(bucket_name) + try: + blob = bucket.blob(destination_blob_name) + blob.upload_from_filename(source_file_name) + print(f"File uploaded to {destination_blob_name}") + + # Make the file public + blob.make_public() + + # Get the public URL + url = blob.public_url + return url + except Exception as e: + print("Error uploading file to Google Cloud Storage:", e) + return None + diff --git a/helper/heygen_api.py b/helper/heygen_api.py new file mode 100644 index 0000000..3601a6a --- /dev/null +++ b/helper/heygen_api.py @@ -0,0 +1,87 @@ +import os +import requests +import time + +from dotenv import load_dotenv + +load_dotenv() + +# Get HeyGen token +TOKEN = os.getenv("HEY_GEN_TOKEN") + +# POST TO CREATE VIDEO +CREATE_VIDEO_URL = 'https://api.heygen.com/v1/video.generate' +GET_VIDEO_URL = 'https://api.heygen.com/v1/video_status.get' +POST_HEADER = { + 'X-Api-Key': TOKEN, + 'Content-Type': 'application/json' +} +GET_HEADER = { + 'X-Api-Key': TOKEN +} + +def create_video(text): + # POST TO CREATE VIDEO + data = { + "background": "#ffffff", + "clips": [ + { + "avatar_id": "Mido-lite-20221128", + "avatar_style": "normal", + "input_text": text, + "offset": { + "x": 0, + "y": 0 + }, + "scale": 1, + "voice_id": "ccb30e87c6b34ca8941f88352c71612d" + } + ], + "ratio": "16:9", + "test": True, + "version": "v1alpha" + } + response = requests.post(CREATE_VIDEO_URL, headers=POST_HEADER, json=data) + print(response.status_code) + print(response.json()) + + # GET TO CHECK STATUS AND GET VIDEO WHEN READY + video_id = response.json()["data"]["video_id"] + params = { + 'video_id': response.json()["data"]["video_id"] + } + response = {} + status = "processing" + error = None + + while status != "completed" and error is None: + response = requests.get(GET_VIDEO_URL, headers=GET_HEADER, params=params) + response_data = response.json() + + status = response_data["data"]["status"] + error = response_data["data"]["error"] + + if status != "completed" and error is None: + print(f"Status: {status}") + time.sleep(5) # Wait for 5 second before the next request + + print(response.status_code) + print(response.json()) + + # DOWNLOAD VIDEO + download_url = response.json()['data']['video_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) + print(f"File '{output_filename}' downloaded successfully.") + return output_filename + else: + print(f"Failed to download file. Status code: {response.status_code}") + return None \ No newline at end of file diff --git a/heygen/avatars.json b/heygen/avatars.json new file mode 100644 index 0000000..08e09f0 --- /dev/null +++ b/heygen/avatars.json @@ -0,0 +1,8572 @@ +{ + "code": 100, + "data": { + "avatars": [ + { + "avatar_id": 1686756027, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Andrew", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.21157407760620117, + 0.025462962687015533, + 0.8060185313224792, + 0.6199073791503906 + ], + "close_up_box": [ + 0.017592592164874077, + 0.025462962687015533, + 1, + 0.6199073791503906 + ], + "close_up_view_crop_x": 0.2022603452205658, + "created_at": 1686756027, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/1ea493e901024034900422df18dbee1a.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/2143307c9bf840ad9408ed94116d4eaa.wav", + "tts_duration": 5.042, + "voice_gender": "male", + "voice_id": "b3150d405d374dd99e569282ee68fa21", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Andrew_public_pro1_20230614", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Alex", + "normal_preview": "https://files.movio.la/avatar/v3/ed0577c3046545018aade5e35fc6e491_2750/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/ed0577c3046545018aade5e35fc6e491_2750/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/ed0577c3046545018aade5e35fc6e491_2750/preview_target_small.webp", + "normal_view_crop_x": 0.17499999701976776, + "pose_name": "Alex in Black Suit", + "sort_index": 126, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/ed0577c3046545018aade5e35fc6e491_2750/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Andrew", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.21157407760620117, + 0.01805555634200573, + 0.8125, + 0.6194444298744202 + ], + "close_up_box": [ + 0.024074073880910873, + 0.01805555634200573, + 1, + 0.6194444298744202 + ], + "close_up_view_crop_x": 0.19384829699993134, + "created_at": 1686756064, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/1ea493e901024034900422df18dbee1a.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/2143307c9bf840ad9408ed94116d4eaa.wav", + "tts_duration": 5.042, + "voice_gender": "male", + "voice_id": "b3150d405d374dd99e569282ee68fa21", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Andrew_public_pro3_20230614", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Alex", + "normal_preview": "https://files.movio.la/avatar/v3/ed0577c3046545018aade5e35fc6e491_2750/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/ed0577c3046545018aade5e35fc6e491_2750/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/ed0577c3046545018aade5e35fc6e491_2750/preview_talk_2_small.webp", + "normal_view_crop_x": 0.15694443881511688, + "pose_name": "Alex in Jacket", + "sort_index": 124, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/ed0577c3046545018aade5e35fc6e491_2750/preview_video_talk_2.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Andrew", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.19722221791744232, + 0, + 0.8074073791503906, + 0.6106481552124023 + ], + "close_up_box": [ + 0.004629629664123058, + 0, + 1, + 0.6106481552124023 + ], + "close_up_view_crop_x": 0.1704169064760208, + "created_at": 1686756112, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/1ea493e901024034900422df18dbee1a.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/2143307c9bf840ad9408ed94116d4eaa.wav", + "tts_duration": 5.042, + "voice_gender": "male", + "voice_id": "b3150d405d374dd99e569282ee68fa21", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Andrew_public_pro2_20230614", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Alex", + "normal_preview": "https://files.movio.la/avatar/v3/f5f78b56b91d4117b3902fe168257530_2724/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f5f78b56b91d4117b3902fe168257530_2724/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f5f78b56b91d4117b3902fe168257530_2724/preview_target_small.webp", + "normal_view_crop_x": 0.14027777314186096, + "pose_name": "Alex in White Coat", + "sort_index": 125, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f5f78b56b91d4117b3902fe168257530_2724/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Andrew", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.20509259402751923, + 0.021759258583188057, + 0.793055534362793, + 0.6101852059364319 + ], + "close_up_box": [ + 0, + 0.021759258583188057, + 0.9981481432914734, + 0.6101852059364319 + ], + "close_up_view_crop_x": 0.17984651029109955, + "created_at": 1686756148, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/1ea493e901024034900422df18dbee1a.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/2143307c9bf840ad9408ed94116d4eaa.wav", + "tts_duration": 5.042, + "voice_gender": "male", + "voice_id": "b3150d405d374dd99e569282ee68fa21", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Andrew_public_pro4_20230614", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Alex", + "normal_preview": "https://files.movio.la/avatar/v3/7cd8a8ebd400418a97274f159f27b531_2745/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/7cd8a8ebd400418a97274f159f27b531_2745/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/7cd8a8ebd400418a97274f159f27b531_2745/preview_talk_1_small.webp", + "normal_view_crop_x": 0.16249999403953552, + "pose_name": "Alex in Yellow Sweater", + "sort_index": 123, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/7cd8a8ebd400418a97274f159f27b531_2745/preview_video_talk_1.mp4" + } + } + ], + "created_at": 1686756027, + "gender": "male", + "name": "Alex" + }, + { + "avatar_id": 1685681199, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Brian", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.009259259328246117, + 0.14427083730697632, + 0.9037036895751953, + 0.6473958492279053 + ], + "close_up_box": [ + 0, + 0.14427083730697632, + 0.9129629731178284, + 0.6473958492279053 + ], + "close_up_view_crop_x": 0, + "created_at": 1685681199, + "custom_avatar_type": "lite", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/da4e501e123e40838ba09046e32603d0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d414cbc712b54fc2bc5e4d6d01e915bb.wav", + "tts_duration": 5.146, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Brian_public_lite1_20230601", + "is_customer": true, + "is_demo": false, + "is_favorite": false, + "is_finetune": true, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Blake", + "normal_preview": "https://files.movio.la/avatar/v3/8cf8ec8d3ca84bd489150779b16a6861_2624/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 405, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/8cf8ec8d3ca84bd489150779b16a6861_2624/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/8cf8ec8d3ca84bd489150779b16a6861_2624/preview_target_small.webp", + "normal_view_crop_x": 0, + "pose_name": "Blake", + "sort_index": 11, + "start_speech_offset": 0.5, + "support_4k": false, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/8cf8ec8d3ca84bd489150779b16a6861_2624/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Brian", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.10989583283662796, + 0, + 0.551562488079071, + 0.7851851582527161 + ], + "close_up_box": [ + 0, + 0, + 0.6614583134651184, + 0.7851851582527161 + ], + "close_up_view_crop_x": 0, + "created_at": 1685681235, + "custom_avatar_type": "lite", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/da4e501e123e40838ba09046e32603d0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d414cbc712b54fc2bc5e4d6d01e915bb.wav", + "tts_duration": 5.146, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Brian_public_lite2_20230601", + "is_customer": true, + "is_demo": false, + "is_favorite": false, + "is_finetune": true, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Blake", + "normal_preview": "https://files.movio.la/avatar/v3/3be86de8adfc430baa5902f77eb9e5b3_2625/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 1280, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/3be86de8adfc430baa5902f77eb9e5b3_2625/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/3be86de8adfc430baa5902f77eb9e5b3_2625/preview_target_small.webp", + "normal_view_crop_x": 0, + "pose_name": "Blake", + "sort_index": 12, + "start_speech_offset": 0.5, + "support_4k": false, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/3be86de8adfc430baa5902f77eb9e5b3_2625/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Brian", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.19675925374031067, + 0, + 0.7958333492279053, + 0.5995370149612427 + ], + "close_up_box": [ + 0, + 0, + 0.9925925731658936, + 0.5995370149612427 + ], + "close_up_view_crop_x": 0.20734526216983795, + "created_at": 1686371768, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/da4e501e123e40838ba09046e32603d0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d414cbc712b54fc2bc5e4d6d01e915bb.wav", + "tts_duration": 5.146, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Brain_public_pro1_20230609", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Blake", + "normal_preview": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_talk_1_small.webp", + "normal_view_crop_x": 0.17638888955116272, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Blake in Blue Suit", + "sort_index": 136, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Brian", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.2143518477678299, + 0, + 0.7902777791023254, + 0.5763888955116272 + ], + "close_up_box": [ + 0.004629629664123058, + 0, + 1, + 0.5763888955116272 + ], + "close_up_view_crop_x": 0.19378891587257385, + "created_at": 1686371795, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/da4e501e123e40838ba09046e32603d0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d414cbc712b54fc2bc5e4d6d01e915bb.wav", + "tts_duration": 5.146, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Brain_public_pro2_20230609", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Blake", + "normal_preview": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_talk_4.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_talk_4_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_talk_4_small.webp", + "normal_view_crop_x": 0.1736111044883728, + "pose_name": "Blake in Brown Coat", + "sort_index": 135, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_video_talk_4.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Brian", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.2004629671573639, + 0, + 0.792129635810852, + 0.592129647731781 + ], + "close_up_box": [ + 0, + 0, + 0.9925925731658936, + 0.592129647731781 + ], + "close_up_view_crop_x": 0.19983430206775665, + "created_at": 1686371817, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/da4e501e123e40838ba09046e32603d0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d414cbc712b54fc2bc5e4d6d01e915bb.wav", + "tts_duration": 5.146, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Brain_public_pro3_20230609", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Blake", + "normal_preview": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_talk_3.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_talk_3_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_talk_3_small.webp", + "normal_view_crop_x": 0.18472221493721008, + "pose_name": "Blake in White T-shirt", + "sort_index": 133, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/48f7053c462f4701ad65d69f248bf46d_2660/preview_video_talk_3.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Brian", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.18009258806705475, + 0.011111111380159855, + 0.782870352268219, + 0.6143518686294556 + ], + "close_up_box": [ + 0, + 0.011111111380159855, + 0.9629629850387573, + 0.6143518686294556 + ], + "close_up_view_crop_x": 0.17599844932556152, + "created_at": 1686657698, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/da4e501e123e40838ba09046e32603d0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d414cbc712b54fc2bc5e4d6d01e915bb.wav", + "tts_duration": 5.146, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Brain_public_pro4_20230613", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Blake", + "normal_preview": "https://files.movio.la/avatar/v3/a8a8e72d9e1840cd97c9bb9429eb6b80_2688/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/a8a8e72d9e1840cd97c9bb9429eb6b80_2688/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/a8a8e72d9e1840cd97c9bb9429eb6b80_2688/preview_target_small.webp", + "normal_view_crop_x": 0.1805555522441864, + "pose_name": "Blake in Sweatshirt", + "sort_index": 134, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/a8a8e72d9e1840cd97c9bb9429eb6b80_2688/preview_video_target.mp4" + } + } + ], + "created_at": 1685681199, + "gender": "male", + "name": "Blake" + }, + { + "avatar_id": 1685680932, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Eric", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.25462964177131653, + 0.010648148134350777, + 0.7620370388031006, + 0.5180555582046509 + ], + "close_up_box": [ + 0.05740740895271301, + 0.010648148134350777, + 0.9592592716217041, + 0.5180555582046509 + ], + "close_up_view_crop_x": 0.19939380884170532, + "created_at": 1685680932, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/636527f370a148348f787b45df35a585.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8bc1b057827e47329ef5c93e7e237f67.wav", + "tts_duration": 5.564, + "voice_gender": "male", + "voice_id": "52b62505407d4f369b9924c2afcdfe72", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Eric_public_pro1_20230601", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Edward", + "normal_preview": "https://files.movio.la/avatar/v3/15e5253e9ae94a08a720b3ba45522eb5_2606/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/15e5253e9ae94a08a720b3ba45522eb5_2606/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/15e5253e9ae94a08a720b3ba45522eb5_2606/preview_talk_1_small.webp", + "normal_view_crop_x": 0.2222222238779068, + "pose_name": "Edward in Black Suit", + "sort_index": 131, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/15e5253e9ae94a08a720b3ba45522eb5_2606/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Eric", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.3294270932674408, + 0.11574073880910873, + 0.6924479007720947, + 0.7615740895271301 + ], + "close_up_box": [ + 0.18802084028720856, + 0.11574073880910873, + 0.8338541388511658, + 0.7615740895271301 + ], + "close_up_view_crop_x": 0, + "created_at": 1685681149, + "custom_avatar_type": "lite", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/636527f370a148348f787b45df35a585.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8bc1b057827e47329ef5c93e7e237f67.wav", + "tts_duration": 5.564, + "voice_gender": "male", + "voice_id": "52b62505407d4f369b9924c2afcdfe72", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Eric_public_lite1_20230601", + "is_customer": true, + "is_demo": false, + "is_favorite": false, + "is_finetune": true, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Edward", + "normal_preview": "https://files.movio.la/avatar/v3/e259aabd01a24e958299ce130b6f4928_2623/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 1280, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/e259aabd01a24e958299ce130b6f4928_2623/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/e259aabd01a24e958299ce130b6f4928_2623/preview_target_small.webp", + "normal_view_crop_x": 0, + "pose_name": "Edward", + "sort_index": 9, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/e259aabd01a24e958299ce130b6f4928_2623/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Eric", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.23379629850387573, + 0.01944444514811039, + 0.782870352268219, + 0.5685185194015503 + ], + "close_up_box": [ + 0.020370369777083397, + 0.01944444514811039, + 0.9962962865829468, + 0.5685185194015503 + ], + "close_up_view_crop_x": 0.19747251272201538, + "created_at": 1686232764, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/636527f370a148348f787b45df35a585.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8bc1b057827e47329ef5c93e7e237f67.wav", + "tts_duration": 5.564, + "voice_gender": "male", + "voice_id": "52b62505407d4f369b9924c2afcdfe72", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Eric_public_pro2_20230608", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Edward", + "normal_preview": "https://files.movio.la/avatar/v3/bab998cb82fb4423b521341a9e962017_2662/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/bab998cb82fb4423b521341a9e962017_2662/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/bab998cb82fb4423b521341a9e962017_2662/preview_target_small.webp", + "normal_view_crop_x": 0.1805555522441864, + "pose_name": "Edward in Blue Shirt", + "sort_index": 130, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/bab998cb82fb4423b521341a9e962017_2662/preview_video_target.mp4" + } + } + ], + "created_at": 1685680932, + "gender": "male", + "name": "Edward" + }, + { + "avatar_id": 1685681264, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Lily", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.3072916567325592, + 0.03333333507180214, + 0.6760416626930237, + 0.6888889074325562 + ], + "close_up_box": [ + 0.1640625, + 0.03333333507180214, + 0.8192708492279053, + 0.6888889074325562 + ], + "close_up_view_crop_x": 0, + "created_at": 1685964859, + "custom_avatar_type": "lite", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/c4b35a0a22c14fc5abea338d4e8617d9.wav", + "tts_duration": 6.841, + "voice_gender": "female", + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/71456a37e30c48e9a83f4b34562a9902.wav", + "tts_duration": 5.146, + "voice_gender": "female", + "voice_id": "232e3bb29f3b45d695f873503af7068c", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Lily_public_lite1_20230601", + "is_customer": true, + "is_demo": false, + "is_favorite": false, + "is_finetune": true, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Leah", + "normal_preview": "https://files.movio.la/avatar/v3/b596c0849b7942778ad27f63c5995e33_2626/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 1280, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/b596c0849b7942778ad27f63c5995e33_2626/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/b596c0849b7942778ad27f63c5995e33_2626/preview_talk_1_small.webp", + "normal_view_crop_x": 0, + "pose_name": "Leah", + "sort_index": 7, + "start_speech_offset": 0.5, + "support_4k": false, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/b596c0849b7942778ad27f63c5995e33_2626/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "Lily", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.21583011746406555, + 0, + 0.7888031005859375, + 0.6870370507240295 + ], + "close_up_box": [ + 0.00463320454582572, + 0, + 1, + 0.6870370507240295 + ], + "close_up_view_crop_x": 0.2124404013156891, + "created_at": 1686755727, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/c4b35a0a22c14fc5abea338d4e8617d9.wav", + "tts_duration": 6.841, + "voice_gender": "female", + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/71456a37e30c48e9a83f4b34562a9902.wav", + "tts_duration": 5.146, + "voice_gender": "female", + "voice_id": "232e3bb29f3b45d695f873503af7068c", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Lily_public_pro1_20230614", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Leah", + "normal_preview": "https://files.movio.la/avatar/v3/51267c0f0f2045518a8c66bb1709bf2a_2654/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 863, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/51267c0f0f2045518a8c66bb1709bf2a_2654/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/51267c0f0f2045518a8c66bb1709bf2a_2654/preview_target_small.webp", + "normal_view_crop_x": 0.205098494887352, + "pose_name": "Leah in Black Suit", + "sort_index": 128, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/51267c0f0f2045518a8c66bb1709bf2a_2654/preview_video_target.mp4" + } + } + ], + "created_at": 1685681264, + "gender": "female", + "name": "Leah" + }, + { + "avatar_id": 1661166377, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "angela", + "avatar_race": "Asian", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.1893518567085266, + 0.019907407462596893, + 0.8171296119689941, + 0.647685170173645 + ], + "close_up_box": [ + 0, + 0.019907407462596893, + 1, + 0.647685170173645 + ], + "close_up_view_crop_x": 0.24237141013145447, + "created_at": 1665319122, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/7dd0a767d6a747e3a73a64a5a504eecc.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/69366e1207ee4197adca8fa5523c447c.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Angela-inblackskirt-20220820", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Angela", + "normal_preview": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_2_small.webp", + "normal_view_crop_x": 0.2222222238779068, + "pose_name": "Angela in Black Dress", + "sort_index": 48, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_video_talk_2.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "angela", + "avatar_race": "Asian", + "avatar_style": "Business Casual", + "circle_box": [ + 0.1814814805984497, + 0.029629629105329514, + 0.8277778029441833, + 0.6759259104728699 + ], + "close_up_box": [ + 0, + 0.029629629105329514, + 1, + 0.6759259104728699 + ], + "close_up_view_crop_x": 0.24147216975688934, + "created_at": 1665319207, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/7dd0a767d6a747e3a73a64a5a504eecc.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/69366e1207ee4197adca8fa5523c447c.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Angela-insuit-20220820", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Angela", + "normal_preview": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_4.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_4_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_4_small.webp", + "normal_view_crop_x": 0.19861111044883728, + "pose_name": "Angela in Suit", + "sort_index": 46, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_video_talk_4.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "angela", + "avatar_race": "Asian", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.16435185074806213, + 0.025925925001502037, + 0.8217592835426331, + 0.6837962865829468 + ], + "close_up_box": [ + 0, + 0.025925925001502037, + 1, + 0.6837962865829468 + ], + "close_up_view_crop_x": 0.2404021918773651, + "created_at": 1665319236, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/7dd0a767d6a747e3a73a64a5a504eecc.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/69366e1207ee4197adca8fa5523c447c.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Angela-inwhiteskirt-20220820", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Angela", + "normal_preview": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_6.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_6_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_6_small.webp", + "normal_view_crop_x": 0.2013888955116272, + "pose_name": "Angela in White Dress", + "sort_index": 45, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_video_talk_6.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "angela", + "avatar_race": "Asian", + "avatar_style": "Casual", + "circle_box": [ + 0.1953703761100769, + 0.032870370894670486, + 0.8416666388511658, + 0.6796296238899231 + ], + "close_up_box": [ + 0, + 0.032870370894670486, + 1, + 0.6796296238899231 + ], + "close_up_view_crop_x": 0.216531902551651, + "created_at": 1665322197, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/7dd0a767d6a747e3a73a64a5a504eecc.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/69366e1207ee4197adca8fa5523c447c.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Angela-inTshirt-20220820", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Angela", + "normal_preview": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_10.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_10_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_talk_10_small.webp", + "normal_view_crop_x": 0.20694445073604584, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Angela in T-shirt", + "sort_index": 44, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/dc4c9111fa61481c9c09aad80d697fb2_1053/preview_video_talk_10.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "angela", + "avatar_race": "Asian", + "avatar_style": "Business Casual", + "circle_box": [ + 0.22268518805503845, + 0.05092592537403107, + 0.8254629373550415, + 0.6541666388511658 + ], + "close_up_box": [ + 0, + 0.05092592537403107, + 1, + 0.6541666388511658 + ], + "close_up_view_crop_x": 0.23283082246780396, + "created_at": 1665319286, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/7dd0a767d6a747e3a73a64a5a504eecc.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/69366e1207ee4197adca8fa5523c447c.wav", + "tts_duration": 6.863, + "voice_gender": "female", + "voice_id": "131a436c47064f708210df6628ef8f32", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Angela-incasualsuit-20220820", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Angela", + "normal_preview": "https://files.movio.la/avatar/v3/ea88b771cefb402881e009b8fb597e91_1046/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/ea88b771cefb402881e009b8fb597e91_1046/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/ea88b771cefb402881e009b8fb597e91_1046/preview_target_small.webp", + "normal_view_crop_x": 0.20972222089767456, + "pose_name": "Angela in Casual Suit", + "sort_index": 47, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/ea88b771cefb402881e009b8fb597e91_1046/preview_video_target.mp4" + } + } + ], + "created_at": 1661166377, + "gender": "female", + "name": "Angela" + }, + { + "avatar_id": 1683546801, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "aurelien", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.009259259328246117, + 0, + 0.9888888597488403, + 0.9800925850868225 + ], + "close_up_box": [ + 0, + 0, + 0.9981481432914734, + 0.9800925850868225 + ], + "close_up_view_crop_x": 0.03676671162247658, + "created_at": 1685696736, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/06290b62fb7246fe8a18cd8ab41deba0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/45b8ef7b970745dd894ad75be7a46b9a.wav", + "tts_duration": 5.016, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Aurelien_public_pro4_20230601", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Austin", + "normal_preview": "https://files.movio.la/avatar/v3/49b25ad2cbfe4f8ea1259998f77cd54b_2633/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/49b25ad2cbfe4f8ea1259998f77cd54b_2633/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/49b25ad2cbfe4f8ea1259998f77cd54b_2633/preview_target_small.webp", + "normal_view_crop_x": 0.03333333507180214, + "pose_name": "Austin in Suit", + "sort_index": 25, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/49b25ad2cbfe4f8ea1259998f77cd54b_2633/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "aurelien", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.035185184329748154, + 0, + 0.9638888835906982, + 0.9291666746139526 + ], + "close_up_box": [ + 0, + 0, + 0.9990741014480591, + 0.9291666746139526 + ], + "close_up_view_crop_x": 0.07099363207817078, + "created_at": 1685696863, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/06290b62fb7246fe8a18cd8ab41deba0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/45b8ef7b970745dd894ad75be7a46b9a.wav", + "tts_duration": 5.016, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Aurelien_public_pro1_20230601", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Austin", + "normal_preview": "https://files.movio.la/avatar/v3/0fb2f9ff60114f71a9ea7be31da84a19_2573/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/0fb2f9ff60114f71a9ea7be31da84a19_2573/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/0fb2f9ff60114f71a9ea7be31da84a19_2573/preview_target_small.webp", + "normal_view_crop_x": 0.05833333358168602, + "pose_name": "Austin in Blue Casual Suit", + "sort_index": 26, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/0fb2f9ff60114f71a9ea7be31da84a19_2573/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "aurelien", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + -0.008333333767950535, + 0, + 0.9916666746139526, + 1 + ], + "close_up_box": [ + 0, + 0, + 0.9833333492279053, + 1 + ], + "close_up_view_crop_x": 0.04305555671453476, + "created_at": 1685697548, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/06290b62fb7246fe8a18cd8ab41deba0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/45b8ef7b970745dd894ad75be7a46b9a.wav", + "tts_duration": 5.016, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Aurelien_public_pro2_20230601", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Austin", + "normal_preview": "https://files.movio.la/avatar/v3/4e21df8179ad46b4a81281c5575690af_2634/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/4e21df8179ad46b4a81281c5575690af_2634/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/4e21df8179ad46b4a81281c5575690af_2634/preview_talk_1_small.webp", + "normal_view_crop_x": 0.04305555671453476, + "pose_name": "Austin in Black Jacket", + "sort_index": 23, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/4e21df8179ad46b4a81281c5575690af_2634/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "aurelien", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + -0.014351852238178253, + 0, + 0.9856481552124023, + 1 + ], + "close_up_box": [ + 0, + 0, + 0.9712963104248047, + 1 + ], + "close_up_view_crop_x": 0.03195967897772789, + "created_at": 1685686854, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/06290b62fb7246fe8a18cd8ab41deba0.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/45b8ef7b970745dd894ad75be7a46b9a.wav", + "tts_duration": 5.016, + "voice_gender": "male", + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Aurelien_public_pro3_20230601", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Austin", + "normal_preview": "https://files.movio.la/avatar/v3/d618bfca0bd74fdeaa3c7bf1cd3916d5_2634/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/d618bfca0bd74fdeaa3c7bf1cd3916d5_2634/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/d618bfca0bd74fdeaa3c7bf1cd3916d5_2634/preview_talk_2_small.webp", + "normal_view_crop_x": 0.05416666716337204, + "pose_name": "Austin in Blue Suit", + "sort_index": 24, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/d618bfca0bd74fdeaa3c7bf1cd3916d5_2634/preview_video_talk_2.mp4" + } + } + ], + "created_at": 1683546801, + "gender": "male", + "name": "Austin" + }, + { + "avatar_id": 1669694954, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "bill", + "avatar_race": "White", + "avatar_style": "Business Attire", + "circle_box": [ + 0.1726851910352707, + 0.024537036195397377, + 0.7773148417472839, + 0.6291666626930237 + ], + "close_up_box": [ + 0, + 0.024537036195397377, + 1, + 0.6291666626930237 + ], + "close_up_view_crop_x": 0.18136020004749298, + "created_at": 1670484041, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/cc57d9cb0c034d118999e813f7089402.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/f8da0a52258d491f912d736dc2a4e33c.wav", + "tts_duration": 5.669, + "voice_gender": "male", + "voice_id": "086b225655694cd9ae60e712469ce474", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Ben-pro-insuit-20221207", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Bill", + "normal_preview": "https://files.movio.la/avatar/v3/4ac4f5fc2d134073b090005f3331752c_1413/preview_talk_4.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/4ac4f5fc2d134073b090005f3331752c_1413/preview_talk_4_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/4ac4f5fc2d134073b090005f3331752c_1413/preview_talk_4_small.webp", + "normal_view_crop_x": 0.14305555820465088, + "pose_name": "Bill in Suit", + "sort_index": 109, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/4ac4f5fc2d134073b090005f3331752c_1413/preview_video_talk_4.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "bill", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.1527777761220932, + 0, + 0.8472222089767456, + 0.6944444179534912 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6944444179534912 + ], + "close_up_view_crop_x": 0.1465766578912735, + "created_at": 1671098683, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/cc57d9cb0c034d118999e813f7089402.wav", + "tts_duration": 6.551, + "voice_gender": "male", + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/f8da0a52258d491f912d736dc2a4e33c.wav", + "tts_duration": 5.669, + "voice_gender": "male", + "voice_id": "086b225655694cd9ae60e712469ce474", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Ben-pro-jacket-20221215", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Bill", + "normal_preview": "https://files.movio.la/avatar/v3/b7745c72a90b4c46af0fc54321d7debd_1462/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/b7745c72a90b4c46af0fc54321d7debd_1462/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/b7745c72a90b4c46af0fc54321d7debd_1462/preview_talk_2_small.webp", + "normal_view_crop_x": 0.1041666641831398, + "pose_name": "Bill in Jacket", + "sort_index": 108, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/b7745c72a90b4c46af0fc54321d7debd_1462/preview_video_talk_2.mp4" + } + } + ], + "created_at": 1669694954, + "gender": "male", + "name": "Bill" + }, + { + "avatar_id": 1660815129, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "daisy", + "avatar_race": "White", + "avatar_style": "Business Attire", + "circle_box": [ + 0.2074074000120163, + 0.01666666753590107, + 0.7861111164093018, + 0.595370352268219 + ], + "close_up_box": [ + 0, + 0.01666666753590107, + 1, + 0.595370352268219 + ], + "close_up_view_crop_x": 0.23151125013828278, + "created_at": 1664551094, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/80db026894874c2cb262ad9e42e86ac3.wav", + "tts_duration": 6.625, + "voice_gender": "female", + "voice_id": "2f72ee82b83d4b00af16c4771d611752", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/5fdd0d97f54a45339d770cfbbd86ed8a.wav", + "tts_duration": 5.329, + "voice_gender": "female", + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Daisy-insuit-20220818", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Daisy", + "normal_preview": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_target_small.webp", + "normal_view_crop_x": 0.20972222089767456, + "pose_name": "Daisy in Suit", + "sort_index": 78, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "daisy", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.19583334028720856, + 0.007870370522141457, + 0.7865740656852722, + 0.5990740656852722 + ], + "close_up_box": [ + 0, + 0.007870370522141457, + 1, + 0.5990740656852722 + ], + "close_up_view_crop_x": 0.22824302315711975, + "created_at": 1664551123, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/80db026894874c2cb262ad9e42e86ac3.wav", + "tts_duration": 6.625, + "voice_gender": "female", + "voice_id": "2f72ee82b83d4b00af16c4771d611752", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/5fdd0d97f54a45339d770cfbbd86ed8a.wav", + "tts_duration": 5.329, + "voice_gender": "female", + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Daisy-inshirt-20220818", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Daisy", + "normal_preview": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_talk_4.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_talk_4_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_talk_4_small.webp", + "normal_view_crop_x": 0.1875, + "pose_name": "Daisy in Shirt", + "sort_index": 77, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_video_talk_4.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "daisy", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.21296297013759613, + 0, + 0.7675926089286804, + 0.5546296238899231 + ], + "close_up_box": [ + 0, + 0, + 0.9833333492279053, + 0.5546296238899231 + ], + "close_up_view_crop_x": 0.20020882785320282, + "created_at": 1664551149, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/80db026894874c2cb262ad9e42e86ac3.wav", + "tts_duration": 6.625, + "voice_gender": "female", + "voice_id": "2f72ee82b83d4b00af16c4771d611752", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/5fdd0d97f54a45339d770cfbbd86ed8a.wav", + "tts_duration": 5.329, + "voice_gender": "female", + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Daisy-inskirt-20220818", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Daisy", + "normal_preview": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_talk_7.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_talk_7_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_talk_7_small.webp", + "normal_view_crop_x": 0.1736111044883728, + "pose_name": "Daisy in Dress", + "sort_index": 76, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/d99ba541a2c9413b941fa7efe90a1130_1059/preview_video_talk_7.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "daisy", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.22499999403953552, + 0.010185184888541698, + 0.8055555820465088, + 0.5912036895751953 + ], + "close_up_box": [ + 0, + 0.010185184888541698, + 1, + 0.5912036895751953 + ], + "close_up_view_crop_x": 0.2074253410100937, + "created_at": 1664551173, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/80db026894874c2cb262ad9e42e86ac3.wav", + "tts_duration": 6.625, + "voice_gender": "female", + "voice_id": "2f72ee82b83d4b00af16c4771d611752", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/5fdd0d97f54a45339d770cfbbd86ed8a.wav", + "tts_duration": 5.329, + "voice_gender": "female", + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Daisy-inTshirt-20220819", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Daisy", + "normal_preview": "https://files.movio.la/avatar/v3/942859e6a10243d5816dd9b941c0a5d3_1041/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/942859e6a10243d5816dd9b941c0a5d3_1041/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/942859e6a10243d5816dd9b941c0a5d3_1041/preview_talk_1_small.webp", + "normal_view_crop_x": 0.19861111044883728, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Daisy in T-shirt", + "sort_index": 75, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/942859e6a10243d5816dd9b941c0a5d3_1041/preview_video_talk_1.mp4" + } + } + ], + "created_at": 1660815129, + "gender": "female", + "name": "Daisy" + }, + { + "avatar_id": 1660811777, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "derek", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.17037037014961243, + 0, + 0.8231481313705444, + 0.6532407402992249 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6532407402992249 + ], + "close_up_view_crop_x": 0.15335753560066223, + "created_at": 1667789408, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d4babc923a94030a42485ef1564389c.wav", + "tts_duration": 7.438, + "voice_gender": "male", + "voice_id": "f7658a75545d4b70b04d8784c07bd038", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9b4a2a6a785d4fa2953f92d690f52a27.wav", + "tts_duration": 5.329, + "voice_gender": "male", + "voice_id": "0ebe70d83b2349529e56492c002c9572", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Derek-inshirt-200220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Derek", + "normal_preview": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_talk_1_small.webp", + "normal_view_crop_x": 0.12361110746860504, + "pose_name": "Derek in Shirt", + "sort_index": 106, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "derek", + "avatar_race": "White", + "avatar_style": "Business Attire", + "circle_box": [ + 0.18888889253139496, + 0, + 0.8148148059844971, + 0.6263889074325562 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6263889074325562 + ], + "close_up_view_crop_x": 0.18537859618663788, + "created_at": 1667789581, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d4babc923a94030a42485ef1564389c.wav", + "tts_duration": 7.438, + "voice_gender": "male", + "voice_id": "f7658a75545d4b70b04d8784c07bd038", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9b4a2a6a785d4fa2953f92d690f52a27.wav", + "tts_duration": 5.329, + "voice_gender": "male", + "voice_id": "0ebe70d83b2349529e56492c002c9572", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Derek-insuit-200220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Derek", + "normal_preview": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_talk_2_small.webp", + "normal_view_crop_x": 0.15555556118488312, + "pose_name": "Derek in Suit", + "sort_index": 105, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_video_talk_2.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "derek", + "avatar_race": "White", + "avatar_style": "Business Casual", + "circle_box": [ + 0.21250000596046448, + 0.004629629664123058, + 0.8291666507720947, + 0.6212962865829468 + ], + "close_up_box": [ + 0, + 0.004629629664123058, + 1, + 0.6212962865829468 + ], + "close_up_view_crop_x": 0.1686643809080124, + "created_at": 1667789687, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d4babc923a94030a42485ef1564389c.wav", + "tts_duration": 7.438, + "voice_gender": "male", + "voice_id": "f7658a75545d4b70b04d8784c07bd038", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9b4a2a6a785d4fa2953f92d690f52a27.wav", + "tts_duration": 5.329, + "voice_gender": "male", + "voice_id": "0ebe70d83b2349529e56492c002c9572", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Derek-incasualsuit-200220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Derek", + "normal_preview": "https://files.movio.la/avatar/v3/bc51820f5ff94ce5bde7becc9f325313_1171/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/bc51820f5ff94ce5bde7becc9f325313_1171/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/bc51820f5ff94ce5bde7becc9f325313_1171/preview_target_small.webp", + "normal_view_crop_x": 0.13750000298023224, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Derek in Casual Suit", + "sort_index": 104, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/bc51820f5ff94ce5bde7becc9f325313_1171/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "derek", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.20555555820465088, + 0.033796295523643494, + 0.8259259462356567, + 0.654629647731781 + ], + "close_up_box": [ + 0, + 0.033796295523643494, + 1, + 0.654629647731781 + ], + "close_up_view_crop_x": 0.15775862336158752, + "created_at": 1665319965, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d4babc923a94030a42485ef1564389c.wav", + "tts_duration": 7.438, + "voice_gender": "male", + "voice_id": "f7658a75545d4b70b04d8784c07bd038", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9b4a2a6a785d4fa2953f92d690f52a27.wav", + "tts_duration": 5.329, + "voice_gender": "male", + "voice_id": "0ebe70d83b2349529e56492c002c9572", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Derek-inTshirt-200220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Derek", + "normal_preview": "https://files.movio.la/avatar/v3/f9fb7f884fcf41c396291d54920201d9_1075/preview_talk_7.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f9fb7f884fcf41c396291d54920201d9_1075/preview_talk_7_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f9fb7f884fcf41c396291d54920201d9_1075/preview_talk_7_small.webp", + "normal_view_crop_x": 0.14722222089767456, + "pose_name": "Derek in T-shirt", + "sort_index": 103, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f9fb7f884fcf41c396291d54920201d9_1075/preview_video_talk_7.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "derek", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.18009258806705475, + 0.004166666883975267, + 0.8467592597007751, + 0.6708333492279053 + ], + "close_up_box": [ + 0, + 0.004166666883975267, + 1, + 0.6708333492279053 + ], + "close_up_view_crop_x": 0.14259259402751923, + "created_at": 1667789645, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d4babc923a94030a42485ef1564389c.wav", + "tts_duration": 7.438, + "voice_gender": "male", + "voice_id": "f7658a75545d4b70b04d8784c07bd038", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9b4a2a6a785d4fa2953f92d690f52a27.wav", + "tts_duration": 5.329, + "voice_gender": "male", + "voice_id": "0ebe70d83b2349529e56492c002c9572", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Derek-infloweryshirt-200220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Derek", + "normal_preview": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_talk_8.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_talk_8_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_talk_8_small.webp", + "normal_view_crop_x": 0.13611111044883728, + "pose_name": "Derek in Flowery Shirt", + "sort_index": 102, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/44f9a21dcbba41dfa5eec508f7682da3_1075/preview_video_talk_8.mp4" + } + } + ], + "created_at": 1660811777, + "gender": "male", + "name": "Derek" + }, + { + "avatar_id": 1658380510, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jake", + "avatar_race": "African American", + "avatar_style": "Casual", + "circle_box": [ + 0.20000000298023224, + 0, + 0.824999988079071, + 0.6254629492759705 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6254629492759705 + ], + "close_up_view_crop_x": 0.16594265401363373, + "created_at": 1664550567, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/123d3a7177b64727b3d7a982441a2633.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/634e66f0edd942fc8f4d3ecbf1f502c5.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jake-inshirt-20220721", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jake", + "normal_preview": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_target_small.webp", + "normal_view_crop_x": 0.12361110746860504, + "pose_name": "Jake in Shirt", + "sort_index": 82, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jake", + "avatar_race": "African American", + "avatar_style": "Business Attire", + "circle_box": [ + 0.19907407462596893, + 0, + 0.824999988079071, + 0.6263889074325562 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6263889074325562 + ], + "close_up_view_crop_x": 0.19582244753837585, + "created_at": 1664550634, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/123d3a7177b64727b3d7a982441a2633.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/634e66f0edd942fc8f4d3ecbf1f502c5.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jake-insuit-20220721", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jake", + "normal_preview": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_3.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_3_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_3_small.webp", + "normal_view_crop_x": 0.16249999403953552, + "pose_name": "Jake in Suit", + "sort_index": 84, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_video_talk_3.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jake", + "avatar_race": "African American", + "avatar_style": "Business Casual", + "circle_box": [ + 0.20324073731899261, + 0, + 0.8254629373550415, + 0.6226851940155029 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6226851940155029 + ], + "close_up_view_crop_x": 0.193771630525589, + "created_at": 1664550681, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/123d3a7177b64727b3d7a982441a2633.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/634e66f0edd942fc8f4d3ecbf1f502c5.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jake-incasualsuit-20220721", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jake", + "normal_preview": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_5.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_5_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_5_small.webp", + "normal_view_crop_x": 0.1666666716337204, + "pose_name": "Jake in Casual Suit", + "sort_index": 83, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_video_talk_5.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jake", + "avatar_race": "African American", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.18472221493721008, + 0, + 0.8208333253860474, + 0.6361111402511597 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6361111402511597 + ], + "close_up_view_crop_x": 0.19169610738754272, + "created_at": 1664550977, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/123d3a7177b64727b3d7a982441a2633.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/634e66f0edd942fc8f4d3ecbf1f502c5.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jake-infloweryshirt-20220721", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jake", + "normal_preview": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_6.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_6_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_6_small.webp", + "normal_view_crop_x": 0.16388888657093048, + "outfit_circle_box": [ + 0.10277777910232544, + 0, + 0.8972222208976746, + 0.7944444417953491 + ], + "outfit_close_up_box": [ + 0.09814814478158951, + 0, + 0.9018518328666687, + 0.7944444417953491 + ], + "pose_name": "Jake in Flowery Shirt", + "sort_index": 81, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_video_talk_6.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jake", + "avatar_race": "African American", + "avatar_style": "Casual", + "circle_box": [ + 0.19675925374031067, + 0, + 0.8282407522201538, + 0.6314814686775208 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6314814686775208 + ], + "close_up_view_crop_x": 0.16140350699424744, + "created_at": 1664551038, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/123d3a7177b64727b3d7a982441a2633.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/634e66f0edd942fc8f4d3ecbf1f502c5.wav", + "tts_duration": 6.488, + "voice_gender": "male", + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jake-inT-shirt-20220721", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jake", + "normal_preview": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_8.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_8_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_talk_8_small.webp", + "normal_view_crop_x": 0.02222222276031971, + "pose_name": "Jake in T-shirt", + "sort_index": 80, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/2fe505d2f4f546b7addd4fa083149284_1060/preview_video_talk_8.mp4" + } + } + ], + "created_at": 1658380510, + "gender": "male", + "name": "Jake" + }, + { + "avatar_id": 1658828334, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jeff", + "avatar_race": "White", + "avatar_style": "Business Casual", + "circle_box": [ + 0.20694445073604584, + 0, + 0.8180555701255798, + 0.6115740537643433 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6115740537643433 + ], + "close_up_view_crop_x": 0.2030586302280426, + "created_at": 1666257896, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8016f816e719414781f495dbd18cf872.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/55b3c12a9874421c90273e8dbdd229e4.wav", + "tts_duration": 5.277, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jeff-incasualsuit-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jeff", + "normal_preview": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_talk_6.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_talk_6_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_talk_6_small.webp", + "normal_view_crop_x": 0.18194444477558136, + "pose_name": "Jeff in Casual Suit", + "sort_index": 72, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_video_talk_6.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jeff", + "avatar_race": "White", + "avatar_style": "Business Attire", + "circle_box": [ + 0.16435185074806213, + 0, + 0.8356481194496155, + 0.6717592477798462 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6717592477798462 + ], + "close_up_view_crop_x": 0.1893656700849533, + "created_at": 1666257855, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8016f816e719414781f495dbd18cf872.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/55b3c12a9874421c90273e8dbdd229e4.wav", + "tts_duration": 5.277, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jeff-insuit-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jeff", + "normal_preview": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_talk_1_small.webp", + "normal_view_crop_x": 0.1736111044883728, + "pose_name": "Jeff in Suit", + "sort_index": 73, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jeff", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.20509259402751923, + 0.010185184888541698, + 0.8282407522201538, + 0.6333333253860474 + ], + "close_up_box": [ + 0, + 0.010185184888541698, + 1, + 0.6333333253860474 + ], + "close_up_view_crop_x": 0.1766233742237091, + "created_at": 1666257940, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8016f816e719414781f495dbd18cf872.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/55b3c12a9874421c90273e8dbdd229e4.wav", + "tts_duration": 5.277, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jeff-inTshirt-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jeff", + "normal_preview": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_talk_10.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_talk_10_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_talk_10_small.webp", + "normal_view_crop_x": 0.1527777761220932, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Jeff in T-shirt", + "sort_index": 71, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/a43b84ae994d4776a64aba7dc40ad9c9_1126/preview_video_talk_10.mp4" + } + } + ], + "created_at": 1658828334, + "gender": "male", + "name": "Jeff" + }, + { + "avatar_id": 1658826953, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jerome", + "avatar_race": "African American", + "avatar_style": "Casual", + "circle_box": [ + 0.20972222089767456, + 0, + 0.8291666507720947, + 0.6199073791503906 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6199073791503906 + ], + "close_up_view_crop_x": 0.17743325233459473, + "created_at": 1664551346, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/6d58ceca4e9848509a4a6c70ee663707.wav", + "tts_duration": 6.651, + "voice_gender": "male", + "voice_id": "3fbd2cac3ddd4c109e17296e324845ec", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/b478d4a628d249c1ba53637ec5451c10.wav", + "tts_duration": 4.728, + "voice_gender": "male", + "voice_id": "23e526605d744f66b85a7eb5116db028", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jerome-inwhiteTshirt-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jerome", + "normal_preview": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_target_small.webp", + "normal_view_crop_x": 0.15694443881511688, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Jerome in White T-shirt", + "sort_index": 63, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jerome", + "avatar_race": "African American", + "avatar_style": "Business Attire", + "circle_box": [ + 0.19583334028720856, + 0, + 0.8050925731658936, + 0.6092592477798462 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6092592477798462 + ], + "close_up_view_crop_x": 0.18612521886825562, + "created_at": 1664551379, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/6d58ceca4e9848509a4a6c70ee663707.wav", + "tts_duration": 6.651, + "voice_gender": "male", + "voice_id": "3fbd2cac3ddd4c109e17296e324845ec", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/b478d4a628d249c1ba53637ec5451c10.wav", + "tts_duration": 4.728, + "voice_gender": "male", + "voice_id": "23e526605d744f66b85a7eb5116db028", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jerome-insuit-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jerome", + "normal_preview": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_talk_3.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_talk_3_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_talk_3_small.webp", + "normal_view_crop_x": 0.1597222238779068, + "pose_name": "Jerome in Suit", + "sort_index": 65, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_video_talk_3.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jerome", + "avatar_race": "African American", + "avatar_style": "Business Casual", + "circle_box": [ + 0.21157407760620117, + 0, + 0.8060185313224792, + 0.5949074029922485 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.5949074029922485 + ], + "close_up_view_crop_x": 0.20909090340137482, + "created_at": 1664551399, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/6d58ceca4e9848509a4a6c70ee663707.wav", + "tts_duration": 6.651, + "voice_gender": "male", + "voice_id": "3fbd2cac3ddd4c109e17296e324845ec", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/b478d4a628d249c1ba53637ec5451c10.wav", + "tts_duration": 4.728, + "voice_gender": "male", + "voice_id": "23e526605d744f66b85a7eb5116db028", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jerome-inshirt-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jerome", + "normal_preview": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_talk_6.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_talk_6_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_talk_6_small.webp", + "normal_view_crop_x": 0.18472221493721008, + "pose_name": "Jerome in Shirt", + "sort_index": 64, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_video_talk_6.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "jerome", + "avatar_race": "African American", + "avatar_style": "Casual", + "circle_box": [ + 0.1805555522441864, + 0.0027777778450399637, + 0.7907407283782959, + 0.6134259104728699 + ], + "close_up_box": [ + 0, + 0.0027777778450399637, + 1, + 0.6134259104728699 + ], + "close_up_view_crop_x": 0.19168786704540253, + "created_at": 1664551417, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/6d58ceca4e9848509a4a6c70ee663707.wav", + "tts_duration": 6.651, + "voice_gender": "male", + "voice_id": "3fbd2cac3ddd4c109e17296e324845ec", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/b478d4a628d249c1ba53637ec5451c10.wav", + "tts_duration": 4.728, + "voice_gender": "male", + "voice_id": "23e526605d744f66b85a7eb5116db028", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Jerome-inpinkTshirt-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Jerome", + "normal_preview": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_talk_9.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_talk_9_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_talk_9_small.webp", + "normal_view_crop_x": 0.1805555522441864, + "pose_name": "Jerome in Pink T-shirt", + "sort_index": 62, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/05c935f6bd9b48d696f75cfa7efb2714_1065/preview_video_talk_9.mp4" + } + } + ], + "created_at": 1658826953, + "gender": "male", + "name": "Jerome" + }, + { + "avatar_id": 1661171563, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "joon", + "avatar_race": "Asian", + "avatar_style": "Casual", + "circle_box": [ + 0.17638888955116272, + 0, + 0.8578703999519348, + 0.6814814805984497 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6814814805984497 + ], + "close_up_view_crop_x": 0.14664143323898315, + "created_at": 1664550276, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/6a6e5c5bfec243ac989d900f8404f5cc.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/dadce47caf584e9695b48df3193bf609.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Joon-inblackshirt-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Joon", + "normal_preview": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_2_small.webp", + "normal_view_crop_x": 0.13333334028720856, + "outfit_circle_box": [ + 0.11666666716337204, + 0, + 0.8833333253860474, + 0.7666666507720947 + ], + "outfit_close_up_box": [ + 0.09814814478158951, + 0, + 0.9018518328666687, + 0.7666666507720947 + ], + "pose_name": "Joon in Black Shirt", + "sort_index": 40, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_video_talk_2.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "joon", + "avatar_race": "Asian", + "avatar_style": "Business Attire", + "circle_box": [ + 0.17731481790542603, + 0, + 0.8300926089286804, + 0.6532407402992249 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6532407402992249 + ], + "close_up_view_crop_x": 0.1851179599761963, + "created_at": 1664550369, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/6a6e5c5bfec243ac989d900f8404f5cc.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/dadce47caf584e9695b48df3193bf609.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Joon-insuit-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Joon", + "normal_preview": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_4.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_4_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_4_small.webp", + "normal_view_crop_x": 0.14722222089767456, + "pose_name": "Joon in Suit", + "sort_index": 42, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_video_talk_4.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "joon", + "avatar_race": "Asian", + "avatar_style": "Business Casual", + "circle_box": [ + 0.18425926566123962, + 0, + 0.8268518447875977, + 0.6430555582046509 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6430555582046509 + ], + "close_up_view_crop_x": 0.17678570747375488, + "created_at": 1664550415, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/6a6e5c5bfec243ac989d900f8404f5cc.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/dadce47caf584e9695b48df3193bf609.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Joon-incasualsuit-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Joon", + "normal_preview": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_6.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_6_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_6_small.webp", + "normal_view_crop_x": 0.14027777314186096, + "pose_name": "Joon in Casual Suit", + "sort_index": 41, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_video_talk_6.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "joon", + "avatar_race": "Asian", + "avatar_style": "Casual", + "circle_box": [ + 0.1796296238899231, + 0, + 0.8361111283302307, + 0.6564815044403076 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6564815044403076 + ], + "close_up_view_crop_x": 0.17775751650333405, + "created_at": 1664550499, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/6a6e5c5bfec243ac989d900f8404f5cc.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/dadce47caf584e9695b48df3193bf609.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Joon-inwhiteshirt-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Joon", + "normal_preview": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_8.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_8_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_8_small.webp", + "normal_view_crop_x": 0.14166666567325592, + "pose_name": "Joon in White Shirt", + "sort_index": 39, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_video_talk_8.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "joon", + "avatar_race": "Asian", + "avatar_style": "Casual", + "circle_box": [ + 0.17037037014961243, + 0, + 0.8259259462356567, + 0.6560184955596924 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6560184955596924 + ], + "close_up_view_crop_x": 0.1803278625011444, + "created_at": 1664550525, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/6a6e5c5bfec243ac989d900f8404f5cc.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/dadce47caf584e9695b48df3193bf609.wav", + "tts_duration": 6.43, + "voice_gender": "male", + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Joon-inyellowshirt-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Joon", + "normal_preview": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_10.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_10_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_talk_10_small.webp", + "normal_view_crop_x": 0.14722222089767456, + "pose_name": "Joon in Yellow Shirt", + "sort_index": 38, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f4712d6634514500b2cbcacd3aaef64b_1058/preview_video_talk_10.mp4" + } + } + ], + "created_at": 1661171563, + "gender": "male", + "name": "Joon" + }, + { + "avatar_id": 1691584618, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "joshua_public", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.2619791626930237, + 0, + 0.7203124761581421, + 0.8157407641410828 + ], + "close_up_box": [ + 0.0833333358168602, + 0, + 0.8989583253860474, + 0.8157407641410828 + ], + "close_up_view_crop_x": 0, + "created_at": 1691584618, + "custom_avatar_type": "lite", + "end_speech_offset": 0.5, + "gender": "male", + "id": "josh_lite_public_20230714", + "is_customer": true, + "is_demo": false, + "is_favorite": false, + "is_finetune": true, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Josh", + "normal_preview": "https://files.movio.la/avatar/v3/2072d60780d042b0908b09ea4fc1c6b7_3011/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 1280, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/2072d60780d042b0908b09ea4fc1c6b7_3011/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/2072d60780d042b0908b09ea4fc1c6b7_3011/preview_target_small.webp", + "normal_view_crop_x": 0, + "pose_name": "Josh HeyGen CEO", + "sort_index": 15, + "start_speech_offset": 0.5, + "support_4k": false, + "support_eye_contact": false, + "support_matting": true, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/2072d60780d042b0908b09ea4fc1c6b7_3011/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "joshua_public", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.2802083194255829, + 0, + 0.8427083492279053, + 1 + ], + "close_up_box": [ + 0.12291666865348816, + 0, + 1, + 1 + ], + "close_up_view_crop_x": 0, + "created_at": 1691584688, + "custom_avatar_type": "lite", + "end_speech_offset": 0.5, + "gender": "male", + "id": "josh_lite3_public_20230714", + "is_customer": true, + "is_demo": false, + "is_favorite": false, + "is_finetune": true, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Josh", + "normal_preview": "https://files.movio.la/avatar/v3/10063c743f114722ab6538b35905c51c_3013/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 1280, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/10063c743f114722ab6538b35905c51c_3013/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/10063c743f114722ab6538b35905c51c_3013/preview_target_small.webp", + "normal_view_crop_x": 0, + "pose_name": "Josh HeyGen CEO", + "sort_index": 14, + "start_speech_offset": 0.5, + "support_4k": false, + "support_eye_contact": false, + "support_matting": true, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/10063c743f114722ab6538b35905c51c_3013/preview_video_target.mp4" + } + } + ], + "created_at": 1691584618, + "gender": "male", + "name": "Josh" + }, + { + "avatar_id": 1660829487, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kayla", + "avatar_race": "White", + "avatar_style": "Business Casual", + "circle_box": [ + 0.19583334028720856, + 0, + 0.8273147940635681, + 0.6319444179534912 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6319444179534912 + ], + "close_up_view_crop_x": 0.20017559826374054, + "created_at": 1665320076, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/39beb20432a741b5a35340bb8d57d0d3.wav", + "tts_duration": 6.455, + "voice_gender": "female", + "voice_id": "2d5b0e6cf36f460aa7fc47e3eee4ba54", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/5bbe5a2cf159454fb4a4d0ed1e788344.wav", + "tts_duration": 5.564, + "voice_gender": "female", + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Kayla-incasualsuit-20220818", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kayla", + "normal_preview": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_2_small.webp", + "normal_view_crop_x": 0.16527777910232544, + "pose_name": "Kayla in Casual Suit", + "sort_index": 59, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_video_talk_2.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kayla", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.19120369851589203, + 0, + 0.822685182094574, + 0.6314814686775208 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6314814686775208 + ], + "close_up_view_crop_x": 0.20964911580085754, + "created_at": 1665320104, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/39beb20432a741b5a35340bb8d57d0d3.wav", + "tts_duration": 6.455, + "voice_gender": "female", + "voice_id": "2d5b0e6cf36f460aa7fc47e3eee4ba54", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/5bbe5a2cf159454fb4a4d0ed1e788344.wav", + "tts_duration": 5.564, + "voice_gender": "female", + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Kayla-insweater-20220818", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kayla", + "normal_preview": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_5.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_5_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_5_small.webp", + "normal_view_crop_x": 0.18472221493721008, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Kayla in Shirt", + "sort_index": 57, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_video_talk_5.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kayla", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.17407406866550446, + 0.0032407406251877546, + 0.8111110925674438, + 0.6402778029441833 + ], + "close_up_box": [ + 0, + 0.0032407406251877546, + 1, + 0.6402778029441833 + ], + "close_up_view_crop_x": 0.21681416034698486, + "created_at": 1665320198, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/39beb20432a741b5a35340bb8d57d0d3.wav", + "tts_duration": 6.455, + "voice_gender": "female", + "voice_id": "2d5b0e6cf36f460aa7fc47e3eee4ba54", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/5bbe5a2cf159454fb4a4d0ed1e788344.wav", + "tts_duration": 5.564, + "voice_gender": "female", + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Kayla-inchiffon-20220818", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kayla", + "normal_preview": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_6.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_6_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_6_small.webp", + "normal_view_crop_x": 0.1736111044883728, + "pose_name": "Kayla in Chiffon", + "sort_index": 58, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_video_talk_6.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kayla", + "avatar_race": "White", + "avatar_style": "Business Casual", + "circle_box": [ + 0.21064814925193787, + 0.0069444444961845875, + 0.8282407522201538, + 0.625 + ], + "close_up_box": [ + 0, + 0.0069444444961845875, + 1, + 0.625 + ], + "close_up_view_crop_x": 0.20858369767665863, + "created_at": 1665320025, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/39beb20432a741b5a35340bb8d57d0d3.wav", + "tts_duration": 6.455, + "voice_gender": "female", + "voice_id": "2d5b0e6cf36f460aa7fc47e3eee4ba54", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/5bbe5a2cf159454fb4a4d0ed1e788344.wav", + "tts_duration": 5.564, + "voice_gender": "female", + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Kayla-insuit-20220819", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kayla", + "normal_preview": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_target_small.webp", + "normal_view_crop_x": 0.17222222685813904, + "pose_name": "Kayla in Suit", + "sort_index": 60, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kayla", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.19861111044883728, + 0, + 0.8263888955116272, + 0.6282407641410828 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6282407641410828 + ], + "close_up_view_crop_x": 0.2181500941514969, + "created_at": 1665320303, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/39beb20432a741b5a35340bb8d57d0d3.wav", + "tts_duration": 6.455, + "voice_gender": "female", + "voice_id": "2d5b0e6cf36f460aa7fc47e3eee4ba54", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/5bbe5a2cf159454fb4a4d0ed1e788344.wav", + "tts_duration": 5.564, + "voice_gender": "female", + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Kayla-inturtleneck-20220818", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kayla", + "normal_preview": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_9.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_9_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_talk_9_small.webp", + "normal_view_crop_x": 0.18888889253139496, + "pose_name": "Kayla in Turtleneck", + "sort_index": 56, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/bf83f0f830794d90b509ba6524962e05_1079/preview_video_talk_9.mp4" + } + } + ], + "created_at": 1660829487, + "gender": "female", + "name": "Kayla" + }, + { + "avatar_id": 1659495234, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kent", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.18611110746860504, + 0, + 0.7564814686775208, + 0.5703703761100769 + ], + "close_up_box": [ + 0, + 0, + 0.9782407283782959, + 0.5703703761100769 + ], + "close_up_view_crop_x": 0.20356912910938263, + "created_at": 1664551226, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9a5d2b9182324fe09c755af3fb7e258d.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/b51e2fdb1dbe40aa827ce2f566835939.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Kent-inpolo-20220728", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kent", + "normal_preview": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_target_small.webp", + "normal_view_crop_x": 0.17916665971279144, + "pose_name": "Kent in Polo", + "sort_index": 53, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kent", + "avatar_race": "White", + "avatar_style": "Business Attire", + "circle_box": [ + 0.1814814805984497, + 0, + 0.7638888955116272, + 0.582870364189148 + ], + "close_up_box": [ + 0, + 0, + 0.9907407164573669, + 0.582870364189148 + ], + "close_up_view_crop_x": 0.20883260667324066, + "created_at": 1664551254, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9a5d2b9182324fe09c755af3fb7e258d.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/b51e2fdb1dbe40aa827ce2f566835939.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Kent-insuit-20220728", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kent", + "normal_preview": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_3.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_3_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_3_small.webp", + "normal_view_crop_x": 0.1597222238779068, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Kent in Suit", + "sort_index": 54, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_video_talk_3.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kent", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.2152777761220932, + 0, + 0.8041666746139526, + 0.5888888835906982 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.5888888835906982 + ], + "close_up_view_crop_x": 0.200327068567276, + "created_at": 1664551277, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9a5d2b9182324fe09c755af3fb7e258d.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/b51e2fdb1dbe40aa827ce2f566835939.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Kent-inTshirt-20220728", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kent", + "normal_preview": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_4.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_4_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_4_small.webp", + "normal_view_crop_x": 0.16388888657093048, + "pose_name": "Kent in T-shirt", + "sort_index": 51, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_video_talk_4.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kent", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.18703703582286835, + 0, + 0.8046296238899231, + 0.6180555820465088 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6180555820465088 + ], + "close_up_view_crop_x": 0.19313304126262665, + "created_at": 1664551296, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9a5d2b9182324fe09c755af3fb7e258d.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/b51e2fdb1dbe40aa827ce2f566835939.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Kent-inshirt-20220728", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kent", + "normal_preview": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_7.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_7_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_7_small.webp", + "normal_view_crop_x": 0.16111111640930176, + "pose_name": "Kent in Button Down", + "sort_index": 52, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_video_talk_7.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "kent", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.19074073433876038, + 0.007870370522141457, + 0.8046296238899231, + 0.6217592358589172 + ], + "close_up_box": [ + 0, + 0.007870370522141457, + 1, + 0.6217592358589172 + ], + "close_up_view_crop_x": 0.20716112852096558, + "created_at": 1664551315, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/9a5d2b9182324fe09c755af3fb7e258d.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/b51e2fdb1dbe40aa827ce2f566835939.wav", + "tts_duration": 6.526, + "voice_gender": "male", + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Kent-inhoodie-20220728", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Kent", + "normal_preview": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_9.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_9_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_talk_9_small.webp", + "normal_view_crop_x": 0.17499999701976776, + "pose_name": "Kent in Hoodie", + "sort_index": 50, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f539d51cc23d462f84c68354064dc76d_1057/preview_video_talk_9.mp4" + } + } + ], + "created_at": 1659495234, + "gender": "male", + "name": "Kent" + }, + { + "avatar_id": 1669694956, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "matthew", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.2513020932674408, + 0, + 0.6856771111488342, + 0.772685170173645 + ], + "close_up_box": [ + 0.08203125, + 0, + 0.854687511920929, + 0.772685170173645 + ], + "close_up_view_crop_x": 0, + "created_at": 1669694956, + "custom_avatar_type": "lite", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/251413a389714f299555e1838be754db.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/f40a7fc17f6b41638b37344ed137666b.wav", + "tts_duration": 5.016, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Mido-lite-20221128", + "is_customer": true, + "is_demo": false, + "is_favorite": false, + "is_finetune": true, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Matthew", + "normal_preview": "https://files.movio.la/avatar/v3/5c304ab1e7534e2c887e2f795fbe6568_1354/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 1280, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/5c304ab1e7534e2c887e2f795fbe6568_1354/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/5c304ab1e7534e2c887e2f795fbe6568_1354/preview_talk_1_small.webp", + "normal_view_crop_x": 0, + "pose_name": "Matthew", + "sort_index": 5, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/5c304ab1e7534e2c887e2f795fbe6568_1354/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "matthew", + "avatar_race": "White", + "avatar_style": "Business Attire", + "circle_box": [ + 0.20694445073604584, + 0, + 0.8467592597007751, + 0.6398147940635681 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6398147940635681 + ], + "close_up_view_crop_x": 0.15962837636470795, + "created_at": 1670550247, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/251413a389714f299555e1838be754db.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/f40a7fc17f6b41638b37344ed137666b.wav", + "tts_duration": 5.016, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Mido-pro-insuit-20221208", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Matthew", + "normal_preview": "https://files.movio.la/avatar/v3/b2464b1b3d6d4e8d8b3695a4cbc3bba5_1434/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/b2464b1b3d6d4e8d8b3695a4cbc3bba5_1434/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/b2464b1b3d6d4e8d8b3695a4cbc3bba5_1434/preview_target_small.webp", + "normal_view_crop_x": 0.13472221791744232, + "pose_name": "Matthew in Suit", + "sort_index": 117, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/b2464b1b3d6d4e8d8b3695a4cbc3bba5_1434/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "matthew", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.14074073731899261, + 0.03703703731298447, + 0.730555534362793, + 0.6273148059844971 + ], + "close_up_box": [ + 0, + 0.03703703731298447, + 0.9606481194496155, + 0.6273148059844971 + ], + "close_up_view_crop_x": 0.21229340136051178, + "created_at": 1670550344, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/251413a389714f299555e1838be754db.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/f40a7fc17f6b41638b37344ed137666b.wav", + "tts_duration": 5.016, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Mido-pro-flowershirt-20221208", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Matthew", + "normal_preview": "https://files.movio.la/avatar/v3/448086197fe64997b29c44a479db5853_1435/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/448086197fe64997b29c44a479db5853_1435/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/448086197fe64997b29c44a479db5853_1435/preview_target_small.webp", + "normal_view_crop_x": 0.20000000298023224, + "pose_name": "Matthew in Flowery Shirt", + "sort_index": 115, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/448086197fe64997b29c44a479db5853_1435/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "matthew", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.17083333432674408, + 0, + 0.7995370626449585, + 0.6291666626930237 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6291666626930237 + ], + "close_up_view_crop_x": 0.19055944681167603, + "created_at": 1670652942, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/251413a389714f299555e1838be754db.wav", + "tts_duration": 6.466, + "voice_gender": "male", + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/f40a7fc17f6b41638b37344ed137666b.wav", + "tts_duration": 5.016, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Mido-pro-greysweater-20221209", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Matthew", + "normal_preview": "https://files.movio.la/avatar/v3/a0620cb143784340af00d5c9c36605c1_1430/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/a0620cb143784340af00d5c9c36605c1_1430/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/a0620cb143784340af00d5c9c36605c1_1430/preview_talk_2_small.webp", + "normal_view_crop_x": 0.17638888955116272, + "pose_name": "Matthew in Grey Sweater", + "sort_index": 116, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/a0620cb143784340af00d5c9c36605c1_1430/preview_video_talk_2.mp4" + } + } + ], + "created_at": 1669694956, + "gender": "male", + "name": "Matthew" + }, + { + "avatar_id": 1660891566, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "monica", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.19907407462596893, + 0.017129629850387573, + 0.7675926089286804, + 0.5856481194496155 + ], + "close_up_box": [ + 0, + 0.017129629850387573, + 0.9884259104728699, + 0.5856481194496155 + ], + "close_up_view_crop_x": 0.19342200458049774, + "created_at": 1666702656, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/4ef99fdefec3406cafe7eb8182db8ac2.wav", + "tts_duration": 6.841, + "voice_gender": "female", + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d3a558e15d59477593cb3d36212cf732.wav", + "tts_duration": 5.512, + "voice_gender": "female", + "voice_id": "6d9be61f6e0646f4b6750d3eb03b118f", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Monica_inskirt_20220819", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Monica", + "normal_preview": "https://files.movio.la/avatar/v3/6250f18607cc49939541e189b2764248_1157/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/6250f18607cc49939541e189b2764248_1157/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/6250f18607cc49939541e189b2764248_1157/preview_target_small.webp", + "normal_view_crop_x": 0.20416666567325592, + "pose_name": "Monica in Dress", + "sort_index": 98, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/6250f18607cc49939541e189b2764248_1157/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "monica", + "avatar_race": "White", + "avatar_style": "Business Attire", + "circle_box": [ + 0.21990740299224854, + 0.03888889029622078, + 0.7745370268821716, + 0.5939815044403076 + ], + "close_up_box": [ + 0.003703703638166189, + 0.03888889029622078, + 0.9907407164573669, + 0.5939815044403076 + ], + "close_up_view_crop_x": 0.23287904262542725, + "created_at": 1665319763, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/4ef99fdefec3406cafe7eb8182db8ac2.wav", + "tts_duration": 6.841, + "voice_gender": "female", + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d3a558e15d59477593cb3d36212cf732.wav", + "tts_duration": 5.512, + "voice_gender": "female", + "voice_id": "6d9be61f6e0646f4b6750d3eb03b118f", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Monica_insuit_20220819", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Monica", + "normal_preview": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_3.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_3_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_3_small.webp", + "normal_view_crop_x": 0.20555555820465088, + "pose_name": "Monica in Suit", + "sort_index": 100, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_video_talk_3.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "monica", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.23657406866550446, + 0.046296294778585434, + 0.782870352268219, + 0.5925925970077515 + ], + "close_up_box": [ + 0.024074073880910873, + 0.046296294778585434, + 0.9953703880310059, + 0.5925925970077515 + ], + "close_up_view_crop_x": 0.2299240529537201, + "created_at": 1665319789, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/4ef99fdefec3406cafe7eb8182db8ac2.wav", + "tts_duration": 6.841, + "voice_gender": "female", + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d3a558e15d59477593cb3d36212cf732.wav", + "tts_duration": 5.512, + "voice_gender": "female", + "voice_id": "6d9be61f6e0646f4b6750d3eb03b118f", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Monica_inSleeveless _20220819", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Monica", + "normal_preview": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_5.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_5_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_5_small.webp", + "normal_view_crop_x": 0.20416666567325592, + "pose_name": "Monica in Sleeveless", + "sort_index": 99, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_video_talk_5.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "monica", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.21574074029922485, + 0.046296294778585434, + 0.7666666507720947, + 0.5976851582527161 + ], + "close_up_box": [ + 0.0009259259095415473, + 0.046296294778585434, + 0.9810185432434082, + 0.5976851582527161 + ], + "close_up_view_crop_x": 0.23124060034751892, + "created_at": 1665319813, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/4ef99fdefec3406cafe7eb8182db8ac2.wav", + "tts_duration": 6.841, + "voice_gender": "female", + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d3a558e15d59477593cb3d36212cf732.wav", + "tts_duration": 5.512, + "voice_gender": "female", + "voice_id": "6d9be61f6e0646f4b6750d3eb03b118f", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Monica_inshirt_20220819", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Monica", + "normal_preview": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_8.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_8_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_8_small.webp", + "normal_view_crop_x": 0.18888889253139496, + "outfit_circle_box": [ + 0.1537037044763565, + 0, + 0.8462963104248047, + 0.6925926208496094 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.6925926208496094 + ], + "pose_name": "Monica in Shirt", + "sort_index": 97, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_video_talk_8.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "monica", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.23194444179534912, + 0.02638888917863369, + 0.7986111044883728, + 0.5930555462837219 + ], + "close_up_box": [ + 0.011574073694646358, + 0.02638888917863369, + 1, + 0.5930555462837219 + ], + "close_up_view_crop_x": 0.22349758446216583, + "created_at": 1665319835, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/4ef99fdefec3406cafe7eb8182db8ac2.wav", + "tts_duration": 6.841, + "voice_gender": "female", + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d3a558e15d59477593cb3d36212cf732.wav", + "tts_duration": 5.512, + "voice_gender": "female", + "voice_id": "6d9be61f6e0646f4b6750d3eb03b118f", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Monica_inTskirt_20220819", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Monica", + "normal_preview": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_10.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_10_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_talk_10_small.webp", + "normal_view_crop_x": 0.18333333730697632, + "pose_name": "Monica in Pink Shirt", + "sort_index": 96, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/1c4fa9e9940848748af2cb79f577166d_1085/preview_video_talk_10.mp4" + } + } + ], + "created_at": 1660891566, + "gender": "female", + "name": "Monica" + }, + { + "avatar_id": 1670934013, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tanya", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.2083333283662796, + 0.025462962687015533, + 0.8324074149131775, + 0.6495370268821716 + ], + "close_up_box": [ + 0, + 0.025462962687015533, + 1, + 0.6495370268821716 + ], + "close_up_view_crop_x": 0.20710572600364685, + "created_at": 1670934013, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/63540b7dab534a008b1b5c80de47342c.wav", + "tts_duration": 7.238, + "voice_gender": "female", + "voice_id": "fd6bf3b9c3254137aefbe36972c39349", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/c7754eab598546c48821e2f2816734e2.wav", + "tts_duration": 5.198, + "voice_gender": "female", + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Tatiana-pro-Vskirt-20221213", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tanya", + "normal_preview": "https://files.movio.la/avatar/v3/2f2769e0040f4037a6a16f59ad3cc1a2_1456/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/2f2769e0040f4037a6a16f59ad3cc1a2_1456/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/2f2769e0040f4037a6a16f59ad3cc1a2_1456/preview_target_small.webp", + "normal_view_crop_x": 0.1736111044883728, + "pose_name": "Tanya in Flowery Shirt", + "sort_index": 111, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/2f2769e0040f4037a6a16f59ad3cc1a2_1456/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tanya", + "avatar_race": "White", + "avatar_style": "Business Casual", + "circle_box": [ + 0.19953703880310059, + 0, + 0.8717592358589172, + 0.6722221970558167 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6722221970558167 + ], + "close_up_view_crop_x": 0.188608780503273, + "created_at": 1670934110, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/63540b7dab534a008b1b5c80de47342c.wav", + "tts_duration": 7.238, + "voice_gender": "female", + "voice_id": "fd6bf3b9c3254137aefbe36972c39349", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/c7754eab598546c48821e2f2816734e2.wav", + "tts_duration": 5.198, + "voice_gender": "female", + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Tatiana-pro-greysuit-20221213", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tanya", + "normal_preview": "https://files.movio.la/avatar/v3/2f2769e0040f4037a6a16f59ad3cc1a2_1456/preview_talk_5.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/2f2769e0040f4037a6a16f59ad3cc1a2_1456/preview_talk_5_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/2f2769e0040f4037a6a16f59ad3cc1a2_1456/preview_talk_5_small.webp", + "normal_view_crop_x": 0.15833333134651184, + "pose_name": "Tanya in Grey Shirt", + "sort_index": 112, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/2f2769e0040f4037a6a16f59ad3cc1a2_1456/preview_video_talk_5.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tanya", + "avatar_race": "White", + "avatar_style": "Business Attire", + "circle_box": [ + 0.19027778506278992, + 0.011111111380159855, + 0.8097222447395325, + 0.6310185194015503 + ], + "close_up_box": [ + 0, + 0.011111111380159855, + 1, + 0.6310185194015503 + ], + "close_up_view_crop_x": 0.1946597695350647, + "created_at": 1670934163, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/63540b7dab534a008b1b5c80de47342c.wav", + "tts_duration": 7.238, + "voice_gender": "female", + "voice_id": "fd6bf3b9c3254137aefbe36972c39349", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/c7754eab598546c48821e2f2816734e2.wav", + "tts_duration": 5.198, + "voice_gender": "female", + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Tatiana-pro-blacksuit-20221213", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tanya", + "normal_preview": "https://files.movio.la/avatar/v3/4397e548e4f44dd99848aadcd03c4b3c_1438/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/4397e548e4f44dd99848aadcd03c4b3c_1438/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/4397e548e4f44dd99848aadcd03c4b3c_1438/preview_talk_1_small.webp", + "normal_view_crop_x": 0.15833333134651184, + "pose_name": "Tanya in Black Suit", + "sort_index": 113, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/4397e548e4f44dd99848aadcd03c4b3c_1438/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tanya", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.1197916641831398, + 0, + 0.5614583492279053, + 0.7861111164093018 + ], + "close_up_box": [ + 0, + 0, + 0.6812499761581421, + 0.7861111164093018 + ], + "close_up_view_crop_x": 0, + "created_at": 1678796478, + "custom_avatar_type": "lite", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/63540b7dab534a008b1b5c80de47342c.wav", + "tts_duration": 7.238, + "voice_gender": "female", + "voice_id": "fd6bf3b9c3254137aefbe36972c39349", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/c7754eab598546c48821e2f2816734e2.wav", + "tts_duration": 5.198, + "voice_gender": "female", + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Tatiana-lite-20221219", + "is_customer": true, + "is_demo": false, + "is_favorite": false, + "is_finetune": true, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Tanya", + "normal_preview": "https://files.movio.la/avatar/v3/681b12a19307430dbf1c233b1e018db8_1996/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 1280, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/681b12a19307430dbf1c233b1e018db8_1996/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/681b12a19307430dbf1c233b1e018db8_1996/preview_target_small.webp", + "normal_view_crop_x": 0, + "pose_name": "", + "sort_index": 3, + "start_speech_offset": 0.5, + "support_4k": false, + "support_eye_contact": false, + "support_matting": true, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/681b12a19307430dbf1c233b1e018db8_1996/preview_video_target.mp4" + } + } + ], + "created_at": 1670934013, + "gender": "female", + "name": "Tanya" + }, + { + "avatar_id": 1661166695, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tina", + "avatar_race": "Asian", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.1805555522441864, + 0, + 0.8009259104728699, + 0.6203703880310059 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6203703880310059 + ], + "close_up_view_crop_x": 0.21274763345718384, + "created_at": 1662980186, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d730a9efaed04b989c4e943b01a18d7e.wav", + "tts_duration": 6.963, + "voice_gender": "female", + "voice_id": "c2958d67f1e74403a0038e3445d93d50", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/1fd87adda2dc499792a934307b7b7699.wav", + "tts_duration": 5.146, + "voice_gender": "female", + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Tina-inStripedshirt-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tina", + "normal_preview": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_target_small.webp", + "normal_view_crop_x": 0.15555556118488312, + "pose_name": "Tina in Striped Shirt", + "sort_index": 34, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tina", + "avatar_race": "Asian", + "avatar_style": "Casual", + "circle_box": [ + 0.18425926566123962, + 0.003703703638166189, + 0.7925925850868225, + 0.6120370626449585 + ], + "close_up_box": [ + 0, + 0.003703703638166189, + 1, + 0.6120370626449585 + ], + "close_up_view_crop_x": 0.23986487090587616, + "created_at": 1662980223, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d730a9efaed04b989c4e943b01a18d7e.wav", + "tts_duration": 6.963, + "voice_gender": "female", + "voice_id": "c2958d67f1e74403a0038e3445d93d50", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/1fd87adda2dc499792a934307b7b7699.wav", + "tts_duration": 5.146, + "voice_gender": "female", + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Tina-inblack-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tina", + "normal_preview": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_talk_4.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_talk_4_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_talk_4_small.webp", + "normal_view_crop_x": 0.19027778506278992, + "pose_name": "Tina in Black", + "sort_index": 33, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_video_talk_4.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tina", + "avatar_race": "Asian", + "avatar_style": "Casual", + "circle_box": [ + 0.18518517911434174, + 0, + 0.8074073791503906, + 0.6226851940155029 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6226851940155029 + ], + "close_up_view_crop_x": 0.21712802350521088, + "created_at": 1662980313, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d730a9efaed04b989c4e943b01a18d7e.wav", + "tts_duration": 6.963, + "voice_gender": "female", + "voice_id": "c2958d67f1e74403a0038e3445d93d50", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/1fd87adda2dc499792a934307b7b7699.wav", + "tts_duration": 5.146, + "voice_gender": "female", + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Tina-inwhite-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tina", + "normal_preview": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_talk_5.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_talk_5_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_talk_5_small.webp", + "normal_view_crop_x": 0.19305555522441864, + "pose_name": "Tina in White", + "sort_index": 32, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/129be09bde4d46799b935cd982fa28e5_1002/preview_video_talk_5.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tina", + "avatar_race": "Asian", + "avatar_style": "Business Attire", + "circle_box": [ + 0.19629628956317902, + 0.0018518518190830946, + 0.7990740537643433, + 0.6050925850868225 + ], + "close_up_box": [ + 0, + 0.0018518518190830946, + 1, + 0.6050925850868225 + ], + "close_up_view_crop_x": 0.22278057038784027, + "created_at": 1665570707, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d730a9efaed04b989c4e943b01a18d7e.wav", + "tts_duration": 6.963, + "voice_gender": "female", + "voice_id": "c2958d67f1e74403a0038e3445d93d50", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/1fd87adda2dc499792a934307b7b7699.wav", + "tts_duration": 5.146, + "voice_gender": "female", + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Tina-insuit-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tina", + "normal_preview": "https://files.movio.la/avatar/v3/16fbaaae1c96473da8f5ec14df551994_1055/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/16fbaaae1c96473da8f5ec14df551994_1055/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/16fbaaae1c96473da8f5ec14df551994_1055/preview_talk_1_small.webp", + "normal_view_crop_x": 0.18888889253139496, + "pose_name": "Tina in Suit", + "sort_index": 36, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/16fbaaae1c96473da8f5ec14df551994_1055/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tina", + "avatar_race": "Asian", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.20000000298023224, + 0, + 0.8277778029441833, + 0.6282407641410828 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6282407641410828 + ], + "close_up_view_crop_x": 0.20244328677654266, + "created_at": 1665570797, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d730a9efaed04b989c4e943b01a18d7e.wav", + "tts_duration": 6.963, + "voice_gender": "female", + "voice_id": "c2958d67f1e74403a0038e3445d93d50", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/1fd87adda2dc499792a934307b7b7699.wav", + "tts_duration": 5.146, + "voice_gender": "female", + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Tina-inskirt-20220821", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tina", + "normal_preview": "https://files.movio.la/avatar/v3/16fbaaae1c96473da8f5ec14df551994_1055/preview_talk_3.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/16fbaaae1c96473da8f5ec14df551994_1055/preview_talk_3_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/16fbaaae1c96473da8f5ec14df551994_1055/preview_talk_3_small.webp", + "normal_view_crop_x": 0.15000000596046448, + "pose_name": "Tina in Dress", + "sort_index": 35, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/16fbaaae1c96473da8f5ec14df551994_1055/preview_video_talk_3.mp4" + } + } + ], + "created_at": 1661166695, + "gender": "female", + "name": "Tina" + }, + { + "avatar_id": 1658476115, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tyler", + "avatar_race": "Asian", + "avatar_style": "Business Casual", + "circle_box": [ + 0.20277777314186096, + 0, + 0.8435184955596924, + 0.6412037014961243 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6412037014961243 + ], + "close_up_view_crop_x": 0.17008014023303986, + "created_at": 1664551509, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/fc853e0b67aa4ab3af85cf299292e2ca.wav", + "tts_duration": 7.001, + "voice_gender": "male", + "voice_id": "d7bbcdd6964c47bdaae26decade4a933", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/40c599c274c7414ebb32d09628a060f3.wav", + "tts_duration": 5.669, + "voice_gender": "male", + "voice_id": "ccf05082198240f18053e57ac1dc2b5c", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Tyler-incasualsuit-20220721", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tyler", + "normal_preview": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_talk_11.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_talk_11_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_talk_11_small.webp", + "normal_view_crop_x": 0.13611111044883728, + "pose_name": "Tyler in Casual Suit", + "sort_index": 93, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_video_talk_11.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tyler", + "avatar_race": "Asian", + "avatar_style": "Casual", + "circle_box": [ + 0.1578703671693802, + 0, + 0.8217592835426331, + 0.6638888716697693 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6638888716697693 + ], + "close_up_view_crop_x": 0.14930875599384308, + "created_at": 1664551443, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/fc853e0b67aa4ab3af85cf299292e2ca.wav", + "tts_duration": 7.001, + "voice_gender": "male", + "voice_id": "d7bbcdd6964c47bdaae26decade4a933", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/40c599c274c7414ebb32d09628a060f3.wav", + "tts_duration": 5.669, + "voice_gender": "male", + "voice_id": "ccf05082198240f18053e57ac1dc2b5c", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Tyler-inshirt-20220721", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tyler", + "normal_preview": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_talk_2_small.webp", + "normal_view_crop_x": 0.12916666269302368, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Tyler in Shirt", + "sort_index": 92, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_video_talk_2.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "tyler", + "avatar_race": "Asian", + "avatar_style": "Business Attire", + "circle_box": [ + 0.1606481522321701, + 0, + 0.8282407522201538, + 0.668055534362793 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.668055534362793 + ], + "close_up_view_crop_x": 0.17068645358085632, + "created_at": 1664551488, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/fc853e0b67aa4ab3af85cf299292e2ca.wav", + "tts_duration": 7.001, + "voice_gender": "male", + "voice_id": "d7bbcdd6964c47bdaae26decade4a933", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/40c599c274c7414ebb32d09628a060f3.wav", + "tts_duration": 5.669, + "voice_gender": "male", + "voice_id": "ccf05082198240f18053e57ac1dc2b5c", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Tyler-insuit-20220721", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Tyler", + "normal_preview": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_talk_5.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_talk_5_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_talk_5_small.webp", + "normal_view_crop_x": 0.14444445073604584, + "pose_name": "Tyler in Suit", + "sort_index": 94, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/d577f7fc2ed24ac8802b265688b867ae_1054/preview_video_talk_5.mp4" + } + } + ], + "created_at": 1658476115, + "gender": "male", + "name": "Tyler" + }, + { + "avatar_id": 55, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "vanessa", + "avatar_race": "African American", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.15138888359069824, + 0, + 0.8282407522201538, + 0.6768518686294556 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6768518686294556 + ], + "close_up_view_crop_x": 0.18890976905822754, + "created_at": 1666257703, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/e5f9ad565b1d4980b85d8813ad568e59.wav", + "tts_duration": 6.58, + "voice_gender": "female", + "voice_id": "c15a2314cbc446b7b6637f44234d6836", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/ea4524ce773344af8f063018cb7109d1.wav", + "tts_duration": 5.381, + "voice_gender": "female", + "voice_id": "c028be6858d04ee79c12a2209ab47bf8", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Vanessa-inskirt-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Vanessa", + "normal_preview": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_talk_9.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_talk_9_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_talk_9_small.webp", + "normal_view_crop_x": 0.16527777910232544, + "pose_name": "Vanessa in Dress", + "sort_index": 68, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_video_talk_9.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "vanessa", + "avatar_race": "African American", + "avatar_style": "Business Attire", + "circle_box": [ + 0.16296295821666718, + 0.009722222574055195, + 0.8342592716217041, + 0.6814814805984497 + ], + "close_up_box": [ + 0, + 0.009722222574055195, + 1, + 0.6814814805984497 + ], + "close_up_view_crop_x": 0.19309701025485992, + "created_at": 1666257482, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/e5f9ad565b1d4980b85d8813ad568e59.wav", + "tts_duration": 6.58, + "voice_gender": "female", + "voice_id": "c15a2314cbc446b7b6637f44234d6836", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/ea4524ce773344af8f063018cb7109d1.wav", + "tts_duration": 5.381, + "voice_gender": "female", + "voice_id": "c028be6858d04ee79c12a2209ab47bf8", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Vanessa-insuit-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Vanessa", + "normal_preview": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_talk_2.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_talk_2_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_talk_2_small.webp", + "normal_view_crop_x": 0.16805554926395416, + "pose_name": "Vanessa in Suit", + "sort_index": 69, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_video_talk_2.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "vanessa", + "avatar_race": "African American", + "avatar_style": "Casual", + "circle_box": [ + 0.17129629850387573, + 0, + 0.8398148417472839, + 0.6689814925193787 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6689814925193787 + ], + "close_up_view_crop_x": 0.18308550119400024, + "created_at": 1666257797, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1.100000023841858, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/e5f9ad565b1d4980b85d8813ad568e59.wav", + "tts_duration": 6.58, + "voice_gender": "female", + "voice_id": "c15a2314cbc446b7b6637f44234d6836", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/ea4524ce773344af8f063018cb7109d1.wav", + "tts_duration": 5.381, + "voice_gender": "female", + "voice_id": "c028be6858d04ee79c12a2209ab47bf8", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Vanessa-invest-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Vanessa", + "normal_preview": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_talk_14.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_talk_14_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_talk_14_small.webp", + "normal_view_crop_x": 0.15555556118488312, + "outfit_circle_box": [ + 0.10277777910232544, + 0, + 0.8972222208976746, + 0.7944444417953491 + ], + "outfit_close_up_box": [ + 0.09814814478158951, + 0, + 0.9018518328666687, + 0.7944444417953491 + ], + "pose_name": "Vanessa in Tank Top", + "sort_index": 67, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/93649b8ef2764e1da827dbd1d34967e3_1115/preview_video_talk_14.mp4" + } + } + ], + "created_at": 1658928954, + "gender": "female", + "name": "Vanessa" + }, + { + "avatar_id": 1670166774, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "vera", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.2874999940395355, + 0.16223958134651184, + 0.8634259104728699, + 0.48619791865348816 + ], + "close_up_box": [ + 0.0634259283542633, + 0.16223958134651184, + 1, + 0.48619791865348816 + ], + "close_up_view_crop_x": 0, + "created_at": 1670296207, + "custom_avatar_type": "lite", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/a2a4ee52cb604615bb9ffe3b0ad0c78c.wav", + "tts_duration": 6.988, + "voice_gender": "female", + "voice_id": "932643d355ed4a3d837370a3068bbd1b", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8c797953df8b4696ba7b13cca67e0888.wav", + "tts_duration": 5.198, + "voice_gender": "female", + "voice_id": "232e3bb29f3b45d695f873503af7068c", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Vlada-lite-20221129", + "is_customer": true, + "is_demo": false, + "is_favorite": false, + "is_finetune": true, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": true, + "name": "Vera", + "normal_preview": "https://files.movio.la/avatar/v3/7e22ce3be20042a5baa33d83997cb305_1366/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 405, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/7e22ce3be20042a5baa33d83997cb305_1366/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/7e22ce3be20042a5baa33d83997cb305_1366/preview_target_small.webp", + "normal_view_crop_x": 0, + "pose_name": "", + "sort_index": 1, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/7e22ce3be20042a5baa33d83997cb305_1366/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "vera", + "avatar_race": "White", + "avatar_style": "Business Casual", + "circle_box": [ + 0.18009258806705475, + 0.050462961196899414, + 0.7680555582046509, + 0.6384259462356567 + ], + "close_up_box": [ + 0, + 0.050462961196899414, + 0.9967592358589172, + 0.6384259462356567 + ], + "close_up_view_crop_x": 0.21551550924777985, + "created_at": 1671098797, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/a2a4ee52cb604615bb9ffe3b0ad0c78c.wav", + "tts_duration": 6.988, + "voice_gender": "female", + "voice_id": "932643d355ed4a3d837370a3068bbd1b", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8c797953df8b4696ba7b13cca67e0888.wav", + "tts_duration": 5.198, + "voice_gender": "female", + "voice_id": "232e3bb29f3b45d695f873503af7068c", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Vlada-pro-insuit-20221215", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Vera", + "normal_preview": "https://files.movio.la/avatar/v3/a0cef940444143f98a7b9c1c3c0485e7_1468/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/a0cef940444143f98a7b9c1c3c0485e7_1468/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/a0cef940444143f98a7b9c1c3c0485e7_1468/preview_target_small.webp", + "normal_view_crop_x": 0.18888889253139496, + "pose_name": "Vera in Suit", + "sort_index": 121, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/a0cef940444143f98a7b9c1c3c0485e7_1468/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "vera", + "avatar_race": "White", + "avatar_style": "Casual", + "circle_box": [ + 0.21250000596046448, + 0.019907407462596893, + 0.8245370388031006, + 0.6324074268341064 + ], + "close_up_box": [ + 0, + 0.019907407462596893, + 1, + 0.6324074268341064 + ], + "close_up_view_crop_x": 0.18367347121238708, + "created_at": 1671445758, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/a2a4ee52cb604615bb9ffe3b0ad0c78c.wav", + "tts_duration": 6.988, + "voice_gender": "female", + "voice_id": "932643d355ed4a3d837370a3068bbd1b", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8c797953df8b4696ba7b13cca67e0888.wav", + "tts_duration": 5.198, + "voice_gender": "female", + "voice_id": "232e3bb29f3b45d695f873503af7068c", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Vlada-pro-whiteshirt-20221219", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Vera", + "normal_preview": "https://files.movio.la/avatar/v3/33b592cf54114521a5424ea37dc0e55b_1486/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/33b592cf54114521a5424ea37dc0e55b_1486/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/33b592cf54114521a5424ea37dc0e55b_1486/preview_target_small.webp", + "normal_view_crop_x": 0.1666666716337204, + "pose_name": "Vera in T-shirt", + "sort_index": 120, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/33b592cf54114521a5424ea37dc0e55b_1486/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "vera", + "avatar_race": "White", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.18472221493721008, + 0.02361111156642437, + 0.793055534362793, + 0.6319444179534912 + ], + "close_up_box": [ + 0, + 0.02361111156642437, + 1, + 0.6319444179534912 + ], + "close_up_view_crop_x": 0.22719594836235046, + "created_at": 1671711370, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/a2a4ee52cb604615bb9ffe3b0ad0c78c.wav", + "tts_duration": 6.988, + "voice_gender": "female", + "voice_id": "932643d355ed4a3d837370a3068bbd1b", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8c797953df8b4696ba7b13cca67e0888.wav", + "tts_duration": 5.198, + "voice_gender": "female", + "voice_id": "232e3bb29f3b45d695f873503af7068c", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Vlada-pro-jacket-20221222", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Vera", + "normal_preview": "https://files.movio.la/avatar/v3/2506c85b3d97497d8390a17467d30190_1518/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/2506c85b3d97497d8390a17467d30190_1518/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/2506c85b3d97497d8390a17467d30190_1518/preview_target_small.webp", + "normal_view_crop_x": 0.20694445073604584, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Vera in Jacket", + "sort_index": 119, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/2506c85b3d97497d8390a17467d30190_1518/preview_video_target.mp4" + } + } + ], + "created_at": 1670166774, + "gender": "female", + "name": "Vera" + }, + { + "avatar_id": 1658827891, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "wilson", + "avatar_race": "Asian", + "avatar_style": "Business Casual", + "circle_box": [ + 0.17175926268100739, + 0.006018518470227718, + 0.8069444298744202, + 0.6412037014961243 + ], + "close_up_box": [ + 0, + 0.006018518470227718, + 1, + 0.6412037014961243 + ], + "close_up_view_crop_x": 0.20282186567783356, + "created_at": 1669348384, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d98bac59ade6402bbeb3f201ee7ca1e9.wav", + "tts_duration": 7.001, + "voice_gender": "male", + "voice_id": "d7bbcdd6964c47bdaae26decade4a933", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/a464e4ced7f44c06820a853c32b9e937.wav", + "tts_duration": 4.963, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Wilson-insuit-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Wilson", + "normal_preview": "https://files.movio.la/avatar/v3/56218cddfa2d4681bf95f98eb4658675_1280/preview_talk_1.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/56218cddfa2d4681bf95f98eb4658675_1280/preview_talk_1_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/56218cddfa2d4681bf95f98eb4658675_1280/preview_talk_1_small.webp", + "normal_view_crop_x": 0.1736111044883728, + "outfit_circle_box": [ + 0.14907407760620117, + 0, + 0.8509259223937988, + 0.7018518447875977 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.7018518447875977 + ], + "pose_name": "Wilson in Suit", + "sort_index": 30, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/56218cddfa2d4681bf95f98eb4658675_1280/preview_video_talk_1.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "wilson", + "avatar_race": "Asian", + "avatar_style": "Business Casual", + "circle_box": [ + 0.19398148357868195, + 0, + 0.8439815044403076, + 0.6499999761581421 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6499999761581421 + ], + "close_up_view_crop_x": 0.2166064977645874, + "created_at": 1669348447, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d98bac59ade6402bbeb3f201ee7ca1e9.wav", + "tts_duration": 7.001, + "voice_gender": "male", + "voice_id": "d7bbcdd6964c47bdaae26decade4a933", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/a464e4ced7f44c06820a853c32b9e937.wav", + "tts_duration": 4.963, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Wilson-inshirt-20220722", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Wilson", + "normal_preview": "https://files.movio.la/avatar/v3/56218cddfa2d4681bf95f98eb4658675_1280/preview_talk_5.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/56218cddfa2d4681bf95f98eb4658675_1280/preview_talk_5_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/56218cddfa2d4681bf95f98eb4658675_1280/preview_talk_5_small.webp", + "normal_view_crop_x": 0.19722221791744232, + "pose_name": "Wilson in Shirt", + "sort_index": 29, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/56218cddfa2d4681bf95f98eb4658675_1280/preview_video_talk_5.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "wilson", + "avatar_race": "", + "avatar_style": "", + "circle_box": [ + 0.19398148357868195, + 0.007407407276332378, + 0.8152777552604675, + 0.6291666626930237 + ], + "close_up_box": [ + 0, + 0.007407407276332378, + 1, + 0.6291666626930237 + ], + "close_up_view_crop_x": 0.22193436324596405, + "created_at": 1669368871, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/d98bac59ade6402bbeb3f201ee7ca1e9.wav", + "tts_duration": 7.001, + "voice_gender": "male", + "voice_id": "d7bbcdd6964c47bdaae26decade4a933", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/a464e4ced7f44c06820a853c32b9e937.wav", + "tts_duration": 4.963, + "voice_gender": "male", + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "male", + "id": "Wilson-inTshirt-20221124", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Wilson", + "normal_preview": "https://files.movio.la/avatar/v3/61d53a2a1325467296f77ce7f510f1f4_1280/preview_talk_7.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/61d53a2a1325467296f77ce7f510f1f4_1280/preview_talk_7_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/61d53a2a1325467296f77ce7f510f1f4_1280/preview_talk_7_small.webp", + "normal_view_crop_x": 0.2083333283662796, + "pose_name": "Wilson in T-shirt", + "sort_index": 28, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/61d53a2a1325467296f77ce7f510f1f4_1280/preview_video_talk_7.mp4" + } + } + ], + "created_at": 1658827891, + "gender": "male", + "name": "Wilson" + }, + { + "avatar_id": 1660839373, + "avatar_states": [ + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "zoey", + "avatar_race": "African American", + "avatar_style": "Smart Casual", + "circle_box": [ + 0.1726851910352707, + 0.016203703358769417, + 0.8189814686775208, + 0.6629629731178284 + ], + "close_up_box": [ + 0, + 0.016203703358769417, + 1, + 0.6629629731178284 + ], + "close_up_view_crop_x": 0.22461815178394318, + "created_at": 1665319348, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/2aab28968dc146a3bb49538055105c97.wav", + "tts_duration": 7.138, + "voice_gender": "female", + "voice_id": "456e13f3ff1345d3b7ab0435ce024dc7", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d1dfad3b920419a83c845c5fa8fda46.wav", + "tts_duration": 5.46, + "voice_gender": "female", + "voice_id": "26b1ed2a6dd8439abb8e788b762f0d77", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Zoey-inlongsleeves-20220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Zoey", + "normal_preview": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_target.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_target_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_target_small.webp", + "normal_view_crop_x": 0.19722221791744232, + "pose_name": "Zoey in Long Sleeves", + "sort_index": 87, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_video_target.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "zoey", + "avatar_race": "African American", + "avatar_style": "Business Attire", + "circle_box": [ + 0.15324074029922485, + 0, + 0.8273147940635681, + 0.6740740537643433 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6740740537643433 + ], + "close_up_view_crop_x": 0.1910112351179123, + "created_at": 1665319377, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/2aab28968dc146a3bb49538055105c97.wav", + "tts_duration": 7.138, + "voice_gender": "female", + "voice_id": "456e13f3ff1345d3b7ab0435ce024dc7", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d1dfad3b920419a83c845c5fa8fda46.wav", + "tts_duration": 5.46, + "voice_gender": "female", + "voice_id": "26b1ed2a6dd8439abb8e788b762f0d77", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Zoey-insuit-20220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Zoey", + "normal_preview": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_3.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_3_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_3_small.webp", + "normal_view_crop_x": 0.16111111640930176, + "pose_name": "Zoey in Suit", + "sort_index": 90, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_video_talk_3.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "zoey", + "avatar_race": "African American", + "avatar_style": "Casual", + "circle_box": [ + 0.1666666716337204, + 0, + 0.824999988079071, + 0.6583333611488342 + ], + "close_up_box": [ + 0, + 0, + 1, + 0.6583333611488342 + ], + "close_up_view_crop_x": 0.19378428161144257, + "created_at": 1665319401, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/2aab28968dc146a3bb49538055105c97.wav", + "tts_duration": 7.138, + "voice_gender": "female", + "voice_id": "456e13f3ff1345d3b7ab0435ce024dc7", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d1dfad3b920419a83c845c5fa8fda46.wav", + "tts_duration": 5.46, + "voice_gender": "female", + "voice_id": "26b1ed2a6dd8439abb8e788b762f0d77", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Zoey-inhoodie-20220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Zoey", + "normal_preview": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_8.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_8_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_8_small.webp", + "normal_view_crop_x": 0.18194444477558136, + "pose_name": "Zoey in Hoodie", + "sort_index": 88, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_video_talk_8.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "zoey", + "avatar_race": "African American", + "avatar_style": "Casual", + "circle_box": [ + 0.18379630148410797, + 0.007870370522141457, + 0.8467592597007751, + 0.6708333492279053 + ], + "close_up_box": [ + 0, + 0.007870370522141457, + 1, + 0.6708333492279053 + ], + "close_up_view_crop_x": 0.22744014859199524, + "created_at": 1665319422, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/2aab28968dc146a3bb49538055105c97.wav", + "tts_duration": 7.138, + "voice_gender": "female", + "voice_id": "456e13f3ff1345d3b7ab0435ce024dc7", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d1dfad3b920419a83c845c5fa8fda46.wav", + "tts_duration": 5.46, + "voice_gender": "female", + "voice_id": "26b1ed2a6dd8439abb8e788b762f0d77", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Zoey-inTshirt-20220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Zoey", + "normal_preview": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_9.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_9_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_9_small.webp", + "normal_view_crop_x": 0.2083333283662796, + "outfit_circle_box": [ + 0.16296295821666718, + 0, + 0.8370370268821716, + 0.6740740537643433 + ], + "outfit_close_up_box": [ + 0.14444445073604584, + 0, + 0.855555534362793, + 0.6740740537643433 + ], + "pose_name": "Zoey in T-shirt", + "sort_index": 86, + "start_speech_offset": 0.5, + "support_4k": true, + "support_ai_outfit": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_video_talk_9.mp4" + } + }, + { + "acl": [ + { + "access_type": 7, + "username": "f3f153405ac94355965b2102a1e36e9b" + } + ], + "available_style": { + "circle": true, + "close_up": true, + "normal": true + }, + "avatar_name": "zoey", + "avatar_race": "African American", + "avatar_style": "Casual", + "circle_box": [ + 0.16342592239379883, + 0.0032407406251877546, + 0.8217592835426331, + 0.6620370149612427 + ], + "close_up_box": [ + 0, + 0.0032407406251877546, + 1, + 0.6620370149612427 + ], + "close_up_view_crop_x": 0.21591949462890625, + "created_at": 1665319442, + "custom_avatar_type": "none", + "default_voice": { + "free": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/2aab28968dc146a3bb49538055105c97.wav", + "tts_duration": 7.138, + "voice_gender": "female", + "voice_id": "456e13f3ff1345d3b7ab0435ce024dc7", + "voice_language": "English" + }, + "premium": { + "pitch": 0, + "speed": 1, + "text": "Welcome to the new era of video creation with HeyGen! Simply type your script to get started!", + "tts_audio_url": "https://files.movio.la/avatar/default_voice/8d1dfad3b920419a83c845c5fa8fda46.wav", + "tts_duration": 5.46, + "voice_gender": "female", + "voice_id": "26b1ed2a6dd8439abb8e788b762f0d77", + "voice_language": "English" + } + }, + "end_speech_offset": 0.5, + "gender": "female", + "id": "Zoey-inshirt-20220816", + "is_customer": false, + "is_demo": false, + "is_favorite": false, + "is_finetune": false, + "is_finetune_demo": false, + "is_instant_avatar": false, + "is_paid": true, + "is_preset": false, + "name": "Zoey", + "normal_preview": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_13.webp", + "normal_preview_height": 720, + "normal_preview_width": 720, + "normal_thumbnail_medium": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_13_medium.webp", + "normal_thumbnail_small": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_talk_13_small.webp", + "normal_view_crop_x": 0.18611110746860504, + "pose_name": "Zoey in Shirt", + "sort_index": 89, + "start_speech_offset": 0.5, + "support_4k": true, + "support_eye_contact": false, + "support_matting": false, + "supported_templates": [], + "unboxed": true, + "video_url": { + "grey": "https://files.movio.la/avatar/v3/f1ac9458a4cb49bea6d80a8e54eea24a_1113/preview_video_talk_13.mp4" + } + } + ], + "created_at": 1660839373, + "gender": "female", + "name": "Zoey" + } + ] + }, + "message": "Success" +} \ No newline at end of file diff --git a/heygen/english_voices.json b/heygen/english_voices.json new file mode 100644 index 0000000..f183a2a --- /dev/null +++ b/heygen/english_voices.json @@ -0,0 +1,3313 @@ +{ + "code": 100, + "data": { + "list": [ + { + "voice_id": "077ab11b14f04ce0b49b5f6e5cc20979", + "labels": [ + "Middle-Aged", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 29, + "gender": "Male", + "tags": "", + "display_name": "Paul - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/k6dKrFe85PisZ3FMLeppUM.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "086b225655694cd9ae60e712469ce474", + "labels": [ + "Older", + "Narration", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Arthur - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/au9cu3oknHoCTr3YtVjKAf.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "0ebe70d83b2349529e56492c002c9572", + "labels": [ + "Middle-Aged", + "Natural", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 19, + "gender": "Male", + "tags": "", + "display_name": "Antoni - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/TwupgZ2az5RiTnmAifPmmS.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "131a436c47064f708210df6628ef8f32", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 36, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Amber - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/5HHGT48B6g6aSg2buYcBvw.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1840d6dd209541d18ce8fdafbdbf8ed8", + "labels": [ + "Audiobooks", + "Ads", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 23, + "gender": "Male", + "tags": "", + "display_name": "Sam - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/cGGnM8FCWYJBqCEgbEfM59.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "labels": [ + "Middle-Aged", + "E-learning", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 1, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Tony - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/LQUcrBcVHDMCSP5cX93CVd.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "labels": [ + "Youth", + "E-learning", + "Ads", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, Customer Service, Explainer Videos, Cheerful", + "display_name": "Sara - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/func8CFnfVLKF2VzGDCDCR.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1fe966a9dfa14b16ab4d146fabe868b5", + "labels": [ + "Child", + "Audiobooks", + "Ads", + "Games" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 21, + "gender": "Female", + "tags": "Child, Audiobooks", + "display_name": "Ana - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/T4MYTkhp7F5SA9HRXHzL9A.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "232e3bb29f3b45d695f873503af7068c", + "labels": [ + "Narration", + "Professional", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 3, + "gender": "Female", + "tags": "", + "display_name": "Scarlett - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/gp5RLjAtsywQ3XdU4khisX.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "23e526605d744f66b85a7eb5116db028", + "labels": [ + "Youth", + "Natural", + "Professional" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "male", + "tags": "", + "display_name": "Ethan - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/bFtUTV3c3Hiew3NbXnmQYN.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "25ecd686af554bfd8007b6a95210f776", + "labels": [ + "Natural", + "Middle-Aged", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 23, + "gender": "Male", + "tags": "", + "display_name": "Adam - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/nXc2bvzC9srTpkvCtyATPn.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "26b1ed2a6dd8439abb8e788b762f0d77", + "labels": [ + "Middle-Aged", + "Explainer", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 31, + "gender": "Female", + "tags": "", + "display_name": "Jodi - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/MVjZYiF7jZFwN2EZG96HqM.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "285900cdfd1641e0b163e97a96973212", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 16, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Monica - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/A28mKDAgwgmKD8KdG68rkZ.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2d5b0e6cf36f460aa7fc47e3eee4ba54", + "labels": [ + "Youth", + "Audiobooks", + "Narration", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 26, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Sonia - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/nZzCSavZkP37XSyc5CrzS7.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2f72ee82b83d4b00af16c4771d611752", + "labels": [ + "Youth", + "Explainer", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Customer Service", + "display_name": "Jenny - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/XTyya7QKzhwvwDrVQLTvoQ.wav" + }, + "settings": { + "style": "customerservice", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3a50a58bf6ac4707a34d1f51dbe9fb36", + "labels": [ + "Youth", + "Natural", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 7, + "gender": "male", + "tags": "", + "display_name": "Lester-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Sk3qbPC75xTKTbha8RtFTA.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "3a87612e2cd14705a3b419f959e8120b", + "labels": [ + "Professional", + "News", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "male", + "tags": "", + "display_name": "Douglas-Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/gHt2VDM4GPdkqWnG2jzzsY.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "3df9f559da8d4f888bc497f62a7078d2", + "labels": [ + "Ads", + "Natural", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 8, + "gender": "Female", + "tags": "", + "display_name": "Claire - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/ENvqqe6JcDXUHWPZvE8E4.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "3f224b0cb92d45328e5ccd93d3c2314e", + "labels": [ + "Youth", + "Ads", + "Explainer", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ie.png", + "locale": "en-IE", + "sort": 42, + "gender": "Female", + "tags": "", + "display_name": "Emily - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZA54eZdstL8XeZssreg9XT.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3fbd2cac3ddd4c109e17296e324845ec", + "labels": [ + "Older", + "Audiobooks", + "Narration", + "E-learning", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 20, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Delbert - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/CMr49SZRNaARsvmJ3tGDsN.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4398ced268aa4707a5b6222819f05a6f", + "labels": [ + "E-learning", + "Games", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 9, + "gender": "male", + "tags": "", + "display_name": "Caleb-Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/vxLRnPCPixRPaNQz8vB2qd.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "445a8c7de9e74ed2a0dd02d5885ac589", + "labels": [ + "Older", + "Narration", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 100, + "gender": "female", + "tags": "", + "display_name": "Nancy - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/QTdrd669nuRE3cQEY56iZF.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "456e13f3ff1345d3b7ab0435ce024dc7", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 22, + "gender": "Female", + "tags": "Young Adult, Cheerful, Youtube, Customer Service", + "display_name": "Isabella - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/KhiBp6E75AmiqR2F9Ssmj7.wav" + }, + "settings": { + "style": "Cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "488e985a7bd249968612390c4e89f06c", + "labels": [ + "Narration", + "Natural", + "Middle-Aged" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 34, + "gender": "Male", + "tags": "", + "display_name": "Bruce - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/8VvvHAfbLyDP3ZhYix4wVW.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "4e36239454b2414d85c9dbaa18bcf228", + "labels": [ + "Youth", + "Narration", + "Explainer", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/nz.png", + "locale": "en-NZ", + "sort": 25, + "gender": "Male", + "tags": "", + "display_name": "Mitchell - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/cYt7FDjZng3rszpVXewS9U.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "52b62505407d4f369b9924c2afcdfe72", + "labels": [ + "Older", + "Natural", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Roy - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZRFWnrcaQkhbxDp3svykbE.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "575a8643634944a28761fcd34331d3fa", + "labels": [ + "Youth", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Dennis - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/YpfMSycEaGKLyWZffnKsc7.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5dddee02307b4f49a17c123c120a60ca", + "labels": [ + "Youth", + "Explainer", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/za.png", + "locale": "en-ZA", + "sort": 28, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, Product demos, E-learning & Presentations", + "display_name": "Luke - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZSJ6hYck7uD4RFDbTqbtvE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "628161fd1c79432d853b610e84dbc7a4", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 7, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Bella - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/C9zRUcRZ4R56R4pGjytysb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "labels": [ + "Narration", + "Audiobooks", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 14, + "gender": "male", + "tags": "", + "display_name": "Harry - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/Q8bBCXxNPuwnZKixnNHawf.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "66a21dedf2c842b8a516cdb264360e0e", + "labels": [ + "Youth", + "News", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "en-IN", + "sort": 40, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Ads, Product demos, E-learning & Presentations", + "display_name": "Neerja - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/RcDW6eTi2rGrVyFJZYdr2G.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6b5c5f11e7b24daca9c0d2371ecd8bc9", + "labels": [ + "Narration", + "Professional", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "male", + "tags": "", + "display_name": "Raymond-Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/DToLuPLsgsCcodNThceGUa.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "6cd01cfff3354e16a6f4247cf30123ff", + "labels": [ + "Youth", + "Narration", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/sg.png", + "locale": "en-SG", + "sort": 38, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Luna - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/F3smMjYU6mWaa3tXLkUHpE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6d091fbb994c439eb9d249ba8b0e62da", + "labels": [ + "Middle-Aged", + "Explainer", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Jahmai - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/Jw83S9aTUdzR2XdBvzLGYc.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6d9be61f6e0646f4b6750d3eb03b118f", + "labels": [ + "Audiobooks", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 35, + "gender": "Female", + "tags": "", + "display_name": "Belle - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/wbXoiYJ2e6xwKC5i2EUSCY.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "6e51a203c3e74398ae8046f3c320abf6", + "labels": [ + "Middle-Aged", + "Narration", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "male", + "tags": "", + "display_name": "Samuel-Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/TuVCqyvCGvbEGA9JkFkaFY.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "6e7404e25c4b4385b04b0e2704c861c8", + "labels": [ + "Middle-Aged", + "Ads", + "Audiobooks", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "Female", + "tags": "", + "display_name": "Michelle - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/djxEBTVHKLgXsJpb6ZrBVn.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "707375bffbb6443ca99ec8f81459738f", + "labels": [ + "Explainer", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 24, + "gender": "Female", + "tags": "", + "display_name": "Grace - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/jGVaobvjJGySAFFFF6BS6Z.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "71c663964e82485eabca1f4aedd7bfc1", + "labels": [ + "Youth", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 13, + "gender": "male", + "tags": "", + "display_name": "Troy-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Qs6kFXo4t3TetRQS5AYb6F.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "727e9d6d492e456b9f27708fa8018744", + "labels": [ + "Youth", + "News", + "Explainer", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ca.png", + "locale": "en-CA", + "sort": 30, + "gender": "Female", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Clara - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/DzWM42iH66Jr8bBVNJDmJx.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "73c0b6a2e29d4d38aca41454bf58c955", + "labels": [ + "Youth", + "Ads", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 28, + "gender": "Female", + "tags": "", + "display_name": "Cerise - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/KotgDpZPtr63SDnTfgdYxb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "76955c80188a4c149df169b5dc9e1a3a", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "Female", + "tags": "Young Adult, Assistant", + "display_name": "Emma - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/c3NuQJ7QnFRXFq8Kn4quwk.wav" + }, + "settings": { + "style": "assistant", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7c6a15c7caf8415fb2102faafd7e2259", + "labels": [ + "Middle-Aged", + "E-learning", + "Narration", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "en-IN", + "sort": 26, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, Ads, Product demos, E-learning & Presentations", + "display_name": "Prabhat - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/hJHsYuEL5nVUtoLMgyTuMH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "814e0b1c99e9474896b17ec7c2b2a371", + "labels": [ + "Youth", + "Explainer", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/sg.png", + "locale": "en-SG", + "sort": 32, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Wayne - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/9abCuQ4Zf2MyUoYbjTQx3r.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "886d5b163da4436daa5fae885e175636", + "labels": [ + "Narration", + "Youth", + "Natural", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 3, + "gender": "male", + "tags": "", + "display_name": "Charles - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/sj5stM39YqYcmjn7629wmT.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "8aa99a72f5094b2c8270a6fdadfe71b0", + "labels": [ + "Youth", + "E-learning", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/au.png", + "locale": "en-AU", + "sort": 7, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Wille - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/GAfaMVfT8xRTB7EaiZLvXg.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9169e484eb0740b286ef8a679d78fa3f", + "labels": [ + "Youth", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 6, + "gender": "male", + "tags": "", + "display_name": "Glenn-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/AqYCGxK5CxXfGWjBDLyjch.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "932643d355ed4a3d837370a3068bbd1b", + "labels": [ + "Youth", + "Ads", + "News", + "Narration", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 18, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Josie - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/9SGYr6Xk7SUB8CMzR9rkHF.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9cfe3785136147ea967c7632f52c8788", + "labels": [ + "Middle-Aged", + "Natural", + "Professional" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 31, + "gender": "Male", + "tags": "", + "display_name": "Benjamin - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/THfjKiRjWcaDxtDgPbyrLc.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "a04d81d19afd436db611060682276331", + "labels": [ + "Youth", + "Ads", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 30, + "gender": "Male", + "tags": "", + "display_name": "Rudi - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/4TV6LHHA5q6MArEWJN2etH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a12d857b0424427ea109213dc373c618", + "labels": [ + "Youth", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "male", + "tags": "", + "display_name": "Kenneth - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/TMMLHLXFCCX3d9wv7pfHQJ.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "a22a7a8cd45042ad83e9bb9203e1a84b", + "labels": [ + "Professional", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 39, + "gender": "Female", + "tags": "", + "display_name": "Lily - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/9kuXwV9GzDFmNRe629mLR4.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "a56a4fa01bc94c79be13f9803dfb5721", + "labels": [ + "Ads", + "Natural", + "Middle-Aged" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 13, + "gender": "Female", + "tags": "", + "display_name": "Audrey - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/FmbRdxCQTcBFnrczYfJFmD.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "a6f3eea9f3764d36a279ae810d1353c6", + "labels": [ + "Middle-Aged", + "Explainer", + "Audiobooks", + "Ads", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 18, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Tracy - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/VRz9yRAwKEaeafHP6Vfzu7.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "labels": [ + "Narration", + "Audiobooks", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 19, + "gender": "Female", + "tags": "", + "display_name": "Sophia - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/9rsAYURnjDUWN3HsnKv3i3.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "afab75da785b4a42b6fcc5ad282d8fa9", + "labels": [ + "Narration", + "News", + "Middle-Aged" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "male", + "tags": "", + "display_name": "Warren-Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/X8AszKmeDFDaCA9Gkr4tqL.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "b2ddcef2b1594794aa7f3a436d8cf8f2", + "labels": [ + "Middle-Aged", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 33, + "gender": "Male", + "tags": "", + "display_name": "Keanan - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5hFXAVXkxRNHBdhvJTJJKe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b3150d405d374dd99e569282ee68fa21", + "labels": [ + "Natural", + "Middle-Aged", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 11, + "gender": "male", + "tags": "", + "display_name": "Mason - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/8ybzJogfVPFiZL9kfUN4g3.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "b4d04a4ca86b42c895844c786c9043d3", + "labels": [ + "Natural", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 9, + "gender": "male", + "tags": "", + "display_name": "Craig-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/aTXHGEV8e3iTccph2SZ4DG.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "b8b6f5b6e57c40df91811e385b2725b3", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ie.png", + "locale": "en-IE", + "sort": 8, + "gender": "Male", + "tags": "", + "display_name": "Connor - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/faRVtvJziRGQEJd5PK6fiK.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "labels": [ + "Youth", + "Audiobooks", + "E-learning", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 16, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Johan - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/fkxNCfdkoKfopBpTtvQqAp.wav" + }, + "settings": { + "style": "hopeful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c028be6858d04ee79c12a2209ab47bf8", + "labels": [ + "Narration", + "Youth", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 11, + "gender": "Female", + "tags": "", + "display_name": "Hailey - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/M4XBjtiH4yaz9GQhXHtSnV.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "c089f9832fd04922b34b3d2f3661d113", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Brandon - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/maqA9fw7siQAcv2WafDz4F.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c15a2314cbc446b7b6637f44234d6836", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/za.png", + "locale": "en-ZA", + "sort": 34, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Product demos, E-learning & Presentations", + "display_name": "Leah - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/i5bRcieHP5gHNkcQkDSzpE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c218750e46864dba9c45b9e40fe91aef", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/au.png", + "locale": "en-AU", + "sort": 32, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Natasha - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/WXnjbGWv8ApsQncudqKfW7.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "labels": [ + "Middle-Aged", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 33, + "gender": "Female", + "tags": "", + "display_name": "Alison - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZQLzm4o75YDvt8uS33Lqbd.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "c2958d67f1e74403a0038e3445d93d50", + "labels": [ + "Youth", + "E-learning", + "Audiobooks", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 14, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Sherry - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/RGqs3H9eLfHkc3HduJXxTY.wav" + }, + "settings": { + "style": "friendly", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c29c6fdb6abe4146be2daa7929f03e41", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "Ads", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 27, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Abbi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/UcamNKnVKBJiTKVSuCGuTp.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c2ace75f65fd433f987337950e812335", + "labels": [ + "Middle-Aged", + "Narration", + "News", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/nz.png", + "locale": "en-NZ", + "sort": 6, + "gender": "Female", + "tags": "", + "display_name": " Molly - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/jEKUAyUKmX8iG4NXrCmQRC.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c8f228e9ead44542829eb87d51420fbf", + "labels": [ + "Narration", + "Audiobooks", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 9, + "gender": "Female", + "tags": "", + "display_name": "Charlotte - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/hF2vCwDV6mPojTnvvHva24.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "labels": [ + "Youth", + "Natural", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 7, + "gender": "male", + "tags": "", + "display_name": "Levi - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/XAaEPdKfrho2rmXVqi8M6M.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "cc29d03937d14240acf109c827a9a51a", + "labels": [ + "Youth", + "News", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations, Product demos", + "display_name": "Aria - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/5vzP2xA79TcGpndVngHBbA.wav" + }, + "settings": { + "style": "narration-professional", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ccb30e87c6b34ca8941f88352c71612d", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 22, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Noah - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/UDzn8mZ5eKbXrQQojCVMud.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ccf05082198240f18053e57ac1dc2b5c", + "labels": [ + "Narration", + "Middle-Aged", + "Explainer", + "Professional" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 3, + "gender": "male", + "tags": "", + "display_name": "Jackson - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/Xq8odYA7oSdemnkrrNxv9K.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "cd05d8c2c52444fbbbbbe16d86734464", + "labels": [ + "Narration", + "Youth", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 17, + "gender": "male", + "tags": "", + "display_name": "Julian - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/dcvPwsn8tLtJrosBrufgxk.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "cd92a228f9bf4fb1adaa1531595cd5d4", + "labels": [ + "Middle-Aged", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 41, + "gender": "Female", + "tags": "", + "display_name": "Indira - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/H63XT8YQH7L4vupiCXGd2Z.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "d36f8d1c27054f7baa52c216ad874d16", + "labels": [ + "Narration", + "Youth", + "Natural", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 5, + "gender": "male", + "tags": "", + "display_name": "Alexander - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/eSxLsT26vJFS7aomV3aX9X.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "d3edc86dcdd04011b7e5e5d27562fcf5", + "labels": [ + "Natural", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 7, + "gender": "male", + "tags": "", + "display_name": "Larry-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5kuCRJnPiDk24gBeuNC9bi.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "d5e87b3c1778488697d8c35f50ff7a28", + "labels": [ + "Games", + "Middle-Aged" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Keith - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/s9TAzfFvQ5CwT97Airbvu8.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "d7bbcdd6964c47bdaae26decade4a933", + "labels": [ + "Middle-Aged", + "E-learning", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 4, + "gender": "Male", + "tags": "Middle-Aged, Explainer Videos, News", + "display_name": "Christopher - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/Pn2tXVGjpwyHpWTsKFj87X.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "dea92eeb96984004b5a04dd656d3ef9f", + "labels": [ + "Youth", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 9, + "gender": "male", + "tags": "", + "display_name": "Dylan - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/bqCoKYFgQMFDnCvmU5BjpU.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "e17b99e1b86e47e8b7f4cae0f806aa78", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ca.png", + "locale": "en-CA", + "sort": 13, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Liam - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/8sg49P4MFQnpDvpRkaR6M9.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e3e89b7996b94daebf8a1d6904a1bd11", + "labels": [ + "Middle-Aged", + "Narration", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Wilder - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/UjH2pdBnSE2N2MV4ebFgQe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e9472c5d7bda495d8813fb6bc757eaa3", + "labels": [ + "Youth", + "Natural", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 5, + "gender": "Female", + "tags": "", + "display_name": "Marieke - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/mVX39uo7mwzwMUxszXddPb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e9caf49d7f8e4fbeac1919c3dee72dd5", + "labels": [ + "Natural", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "male", + "tags": "", + "display_name": "Jeffery-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Fhr6aCxMMN76FweQrYUzL9.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "labels": [ + "Middle-Aged", + "News", + "E-learning", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "Male", + "tags": "Young Adult, Ads", + "display_name": "Eric - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/QyfEredcYX3MKGkBGudZ9H.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "labels": [ + "Youth", + "News", + "E-learning", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 2, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Ryan - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/CsXU4XY7SgPPQmo6ZEtnjN.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f7658a75545d4b70b04d8784c07bd038", + "labels": [ + "Youth", + "News", + "E-learning", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 11, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos", + "display_name": "Lucas - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/9ex83FXgouLw6NVytasyH7.wav" + }, + "settings": { + "style": "newscast", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f86f4645a6164198a7f35c7255fcb0d1", + "labels": [ + "Ads", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "Male", + "tags": "", + "display_name": "Arnold - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/iSgRx3f8nZevE25EEBaH4B.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "fd6bf3b9c3254137aefbe36972c39349", + "labels": [ + "Youth", + "News", + "Narration", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 20, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Jane - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/iuocs4hoQUGTHJoLnzYYyf.wav" + }, + "settings": { + "style": "unfriendly", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fe981119cd9c4e7fa41ba65466ef564a", + "labels": [ + "Middle-Aged", + "Professional" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 35, + "gender": "Male", + "tags": "", + "display_name": "Dean - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/w4FoYdku4M9Fp2JYmLUdrT.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "labels": [ + "Older", + "Audiobooks", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 21, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Davis - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/MJy76NRegZK6zmnSzSn7qb.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + } + ] + }, + "msg": null, + "message": null +} \ No newline at end of file diff --git a/heygen/filter_json.py b/heygen/filter_json.py new file mode 100644 index 0000000..a508d3a --- /dev/null +++ b/heygen/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/heygen/free_english_voices.json b/heygen/free_english_voices.json new file mode 100644 index 0000000..0c3c9a3 --- /dev/null +++ b/heygen/free_english_voices.json @@ -0,0 +1,1749 @@ +{ + "code": 100, + "data": { + "list": [ + { + "voice_id": "131a436c47064f708210df6628ef8f32", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 36, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Amber - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/5HHGT48B6g6aSg2buYcBvw.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "labels": [ + "Middle-Aged", + "E-learning", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 1, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Tony - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/LQUcrBcVHDMCSP5cX93CVd.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "labels": [ + "Youth", + "E-learning", + "Ads", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, Customer Service, Explainer Videos, Cheerful", + "display_name": "Sara - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/func8CFnfVLKF2VzGDCDCR.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1fe966a9dfa14b16ab4d146fabe868b5", + "labels": [ + "Child", + "Audiobooks", + "Ads", + "Games" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 21, + "gender": "Female", + "tags": "Child, Audiobooks", + "display_name": "Ana - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/T4MYTkhp7F5SA9HRXHzL9A.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "285900cdfd1641e0b163e97a96973212", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 16, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Monica - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/A28mKDAgwgmKD8KdG68rkZ.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2d5b0e6cf36f460aa7fc47e3eee4ba54", + "labels": [ + "Youth", + "Audiobooks", + "Narration", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 26, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Sonia - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/nZzCSavZkP37XSyc5CrzS7.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2f72ee82b83d4b00af16c4771d611752", + "labels": [ + "Youth", + "Explainer", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Customer Service", + "display_name": "Jenny - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/XTyya7QKzhwvwDrVQLTvoQ.wav" + }, + "settings": { + "style": "customerservice", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3f224b0cb92d45328e5ccd93d3c2314e", + "labels": [ + "Youth", + "Ads", + "Explainer", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ie.png", + "locale": "en-IE", + "sort": 42, + "gender": "Female", + "tags": "", + "display_name": "Emily - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZA54eZdstL8XeZssreg9XT.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3fbd2cac3ddd4c109e17296e324845ec", + "labels": [ + "Older", + "Audiobooks", + "Narration", + "E-learning", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 20, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Delbert - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/CMr49SZRNaARsvmJ3tGDsN.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "456e13f3ff1345d3b7ab0435ce024dc7", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 22, + "gender": "Female", + "tags": "Young Adult, Cheerful, Youtube, Customer Service", + "display_name": "Isabella - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/KhiBp6E75AmiqR2F9Ssmj7.wav" + }, + "settings": { + "style": "Cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4e36239454b2414d85c9dbaa18bcf228", + "labels": [ + "Youth", + "Narration", + "Explainer", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/nz.png", + "locale": "en-NZ", + "sort": 25, + "gender": "Male", + "tags": "", + "display_name": "Mitchell - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/cYt7FDjZng3rszpVXewS9U.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "575a8643634944a28761fcd34331d3fa", + "labels": [ + "Youth", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Dennis - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/YpfMSycEaGKLyWZffnKsc7.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5dddee02307b4f49a17c123c120a60ca", + "labels": [ + "Youth", + "Explainer", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/za.png", + "locale": "en-ZA", + "sort": 28, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, Product demos, E-learning & Presentations", + "display_name": "Luke - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZSJ6hYck7uD4RFDbTqbtvE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "628161fd1c79432d853b610e84dbc7a4", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 7, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Bella - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/C9zRUcRZ4R56R4pGjytysb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "66a21dedf2c842b8a516cdb264360e0e", + "labels": [ + "Youth", + "News", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "en-IN", + "sort": 40, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Ads, Product demos, E-learning & Presentations", + "display_name": "Neerja - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/RcDW6eTi2rGrVyFJZYdr2G.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6cd01cfff3354e16a6f4247cf30123ff", + "labels": [ + "Youth", + "Narration", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/sg.png", + "locale": "en-SG", + "sort": 38, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Luna - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/F3smMjYU6mWaa3tXLkUHpE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6d091fbb994c439eb9d249ba8b0e62da", + "labels": [ + "Middle-Aged", + "Explainer", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Jahmai - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/Jw83S9aTUdzR2XdBvzLGYc.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6e7404e25c4b4385b04b0e2704c861c8", + "labels": [ + "Middle-Aged", + "Ads", + "Audiobooks", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "Female", + "tags": "", + "display_name": "Michelle - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/djxEBTVHKLgXsJpb6ZrBVn.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "727e9d6d492e456b9f27708fa8018744", + "labels": [ + "Youth", + "News", + "Explainer", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ca.png", + "locale": "en-CA", + "sort": 30, + "gender": "Female", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Clara - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/DzWM42iH66Jr8bBVNJDmJx.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "73c0b6a2e29d4d38aca41454bf58c955", + "labels": [ + "Youth", + "Ads", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 28, + "gender": "Female", + "tags": "", + "display_name": "Cerise - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/KotgDpZPtr63SDnTfgdYxb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "76955c80188a4c149df169b5dc9e1a3a", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "Female", + "tags": "Young Adult, Assistant", + "display_name": "Emma - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/c3NuQJ7QnFRXFq8Kn4quwk.wav" + }, + "settings": { + "style": "assistant", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7c6a15c7caf8415fb2102faafd7e2259", + "labels": [ + "Middle-Aged", + "E-learning", + "Narration", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "en-IN", + "sort": 26, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, Ads, Product demos, E-learning & Presentations", + "display_name": "Prabhat - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/hJHsYuEL5nVUtoLMgyTuMH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "814e0b1c99e9474896b17ec7c2b2a371", + "labels": [ + "Youth", + "Explainer", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/sg.png", + "locale": "en-SG", + "sort": 32, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Wayne - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/9abCuQ4Zf2MyUoYbjTQx3r.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8aa99a72f5094b2c8270a6fdadfe71b0", + "labels": [ + "Youth", + "E-learning", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/au.png", + "locale": "en-AU", + "sort": 7, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Wille - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/GAfaMVfT8xRTB7EaiZLvXg.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "932643d355ed4a3d837370a3068bbd1b", + "labels": [ + "Youth", + "Ads", + "News", + "Narration", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 18, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Josie - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/9SGYr6Xk7SUB8CMzR9rkHF.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a04d81d19afd436db611060682276331", + "labels": [ + "Youth", + "Ads", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 30, + "gender": "Male", + "tags": "", + "display_name": "Rudi - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/4TV6LHHA5q6MArEWJN2etH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a6f3eea9f3764d36a279ae810d1353c6", + "labels": [ + "Middle-Aged", + "Explainer", + "Audiobooks", + "Ads", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 18, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Tracy - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/VRz9yRAwKEaeafHP6Vfzu7.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b2ddcef2b1594794aa7f3a436d8cf8f2", + "labels": [ + "Middle-Aged", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 33, + "gender": "Male", + "tags": "", + "display_name": "Keanan - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5hFXAVXkxRNHBdhvJTJJKe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b8b6f5b6e57c40df91811e385b2725b3", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ie.png", + "locale": "en-IE", + "sort": 8, + "gender": "Male", + "tags": "", + "display_name": "Connor - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/faRVtvJziRGQEJd5PK6fiK.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "labels": [ + "Youth", + "Audiobooks", + "E-learning", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 16, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Johan - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/fkxNCfdkoKfopBpTtvQqAp.wav" + }, + "settings": { + "style": "hopeful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c089f9832fd04922b34b3d2f3661d113", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Brandon - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/maqA9fw7siQAcv2WafDz4F.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c15a2314cbc446b7b6637f44234d6836", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/za.png", + "locale": "en-ZA", + "sort": 34, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Product demos, E-learning & Presentations", + "display_name": "Leah - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/i5bRcieHP5gHNkcQkDSzpE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c218750e46864dba9c45b9e40fe91aef", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/au.png", + "locale": "en-AU", + "sort": 32, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Natasha - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/WXnjbGWv8ApsQncudqKfW7.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c2958d67f1e74403a0038e3445d93d50", + "labels": [ + "Youth", + "E-learning", + "Audiobooks", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 14, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Sherry - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/RGqs3H9eLfHkc3HduJXxTY.wav" + }, + "settings": { + "style": "friendly", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c29c6fdb6abe4146be2daa7929f03e41", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "Ads", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 27, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Abbi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/UcamNKnVKBJiTKVSuCGuTp.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c2ace75f65fd433f987337950e812335", + "labels": [ + "Middle-Aged", + "Narration", + "News", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/nz.png", + "locale": "en-NZ", + "sort": 6, + "gender": "Female", + "tags": "", + "display_name": " Molly - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/jEKUAyUKmX8iG4NXrCmQRC.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "cc29d03937d14240acf109c827a9a51a", + "labels": [ + "Youth", + "News", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations, Product demos", + "display_name": "Aria - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/5vzP2xA79TcGpndVngHBbA.wav" + }, + "settings": { + "style": "narration-professional", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ccb30e87c6b34ca8941f88352c71612d", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 22, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Noah - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/UDzn8mZ5eKbXrQQojCVMud.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d7bbcdd6964c47bdaae26decade4a933", + "labels": [ + "Middle-Aged", + "E-learning", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 4, + "gender": "Male", + "tags": "Middle-Aged, Explainer Videos, News", + "display_name": "Christopher - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/Pn2tXVGjpwyHpWTsKFj87X.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e17b99e1b86e47e8b7f4cae0f806aa78", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ca.png", + "locale": "en-CA", + "sort": 13, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Liam - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/8sg49P4MFQnpDvpRkaR6M9.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e3e89b7996b94daebf8a1d6904a1bd11", + "labels": [ + "Middle-Aged", + "Narration", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Wilder - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/UjH2pdBnSE2N2MV4ebFgQe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e9472c5d7bda495d8813fb6bc757eaa3", + "labels": [ + "Youth", + "Natural", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 5, + "gender": "Female", + "tags": "", + "display_name": "Marieke - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/mVX39uo7mwzwMUxszXddPb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "labels": [ + "Middle-Aged", + "News", + "E-learning", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "Male", + "tags": "Young Adult, Ads", + "display_name": "Eric - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/QyfEredcYX3MKGkBGudZ9H.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "labels": [ + "Youth", + "News", + "E-learning", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 2, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Ryan - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/CsXU4XY7SgPPQmo6ZEtnjN.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f7658a75545d4b70b04d8784c07bd038", + "labels": [ + "Youth", + "News", + "E-learning", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 11, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos", + "display_name": "Lucas - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/9ex83FXgouLw6NVytasyH7.wav" + }, + "settings": { + "style": "newscast", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fd6bf3b9c3254137aefbe36972c39349", + "labels": [ + "Youth", + "News", + "Narration", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 20, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Jane - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/iuocs4hoQUGTHJoLnzYYyf.wav" + }, + "settings": { + "style": "unfriendly", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "labels": [ + "Older", + "Audiobooks", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 21, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Davis - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/MJy76NRegZK6zmnSzSn7qb.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + } + ] + }, + "msg": null, + "message": null +} \ No newline at end of file diff --git a/heygen/voices.json b/heygen/voices.json new file mode 100644 index 0000000..d43fe3f --- /dev/null +++ b/heygen/voices.json @@ -0,0 +1,13777 @@ +{ + "code": 100, + "data": { + "list": [ + { + "voice_id": "001b5828d42b4f8b814ad7dbec3221e4", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "Bangla", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "bn-IN", + "sort": 1, + "gender": "Female", + "tags": "News, E-learning & Presentations, Audiobooks", + "display_name": "Aalia - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/4526c49ba75948078cf3e9ca074d2482.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "001cc6d54eae4ca2b5fb16ca8e8eb9bb", + "labels": [ + "Youth", + "Explainer" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Elias - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/JmCb3rgMZnCjCAA9aacnGj.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": false, + "prosody": null, + "emphasis": "", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "00988b7d451d0722635ff7b2b9540a7b", + "labels": [ + "Youth", + "Ads", + "Explainer", + "Audiobooks" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 1, + "gender": "Female", + "tags": "Middle-Aged, News, Explainer Videos", + "display_name": "Brenda - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/fec6396adb73461c9997b2c0d7759b7b.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "009f4cb8d98a4febb45f8c82a5399b15", + "labels": [ + "Middle-Aged", + "Narration" + ], + "language": "Latvian", + "flag": "https://static.movio.la/region_flags/lv.png", + "locale": "lv-LV", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Tomass - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/KJ2e2TQQwY3fTEfj3P4KNN.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "00c8fd447ad7480ab1785825978a2215", + "labels": [ + "Youth", + "Audiobooks", + "Narration", + "Explainer" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 5, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Low-Pitched, Audiobooks, Product demos", + "display_name": "Xiaoxuan - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/909633f8d34e408a9aaa4e1b60586865.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "00ed77fac8b84ffcb2ab52739b9dccd3", + "labels": [ + "Professional", + "Youth" + ], + "language": "Latvian", + "flag": "https://static.movio.la/region_flags/lv.png", + "locale": "lv-LV", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Nils - Affinity", + "preview": { + "movio": "https://static.movio.la/voice_preview/KwTwAz3R4aBFN69fEYQFdX.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "0130939032d74be594eadc8cc9d39415", + "labels": [ + "Youth", + "News", + "Narration", + "Audiobooks" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/pt.png", + "locale": "pt-PT", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, Product demos", + "display_name": "Fernanda - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/6a5985f0ffd94106b8ecaa3a6c539cea.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "02bcf8702a424226a520b6229f318004", + "labels": [ + "Middle-Aged", + "Narration", + "Explainer", + "News" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/pt.png", + "locale": "pt-PT", + "sort": 4, + "gender": "Male", + "tags": "", + "display_name": "Cristiano - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/70dc80de5385461a841d55d4d729fe81.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "02bec3b4cb514722a84e4e18d596fddf", + "labels": [ + "Middle-Aged", + "News", + "E-learning", + "Narration" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/ae.png", + "locale": "ar-AE", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Fatima - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/930a245487fe42158c810ac76b8ddbab.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "04e95f5bcb8b4620a2c4ef45b8a4481a", + "labels": [ + "Middle-Aged", + "Audiobooks", + "E-learning", + "News", + "Explainer" + ], + "language": "Ukrainian", + "flag": "https://static.movio.la/region_flags/ua.png", + "locale": "uk-UA", + "sort": 100, + "gender": "Female", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Polina - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/ntekV94yFpvv4RgBVPqW7c.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "05113f7c98bb424d86b6ef07266002eb", + "labels": [ + "Youth", + "News", + "E-learning", + "Explainer" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/qa.png", + "locale": "ar-QA", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Amal - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/01fd522c73ea44589985a8bc321047bd.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "06daa574b9824885a26eeb5916cbae36", + "labels": [ + "Youth", + "News", + "Ads", + "Explainer" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/eg.png", + "locale": "ar-EG", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Salma - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/b6e67b75ee0648a2844a58fc5dc6aa02.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "071d6bea6a7f455b82b6364dab9104a2", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/ch.png", + "locale": "de-CH", + "sort": 3, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Jan - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/fa3728bed81a4d11b8ccef10506af5f4.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "077ab11b14f04ce0b49b5f6e5cc20979", + "labels": [ + "Middle-Aged", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 29, + "gender": "Male", + "tags": "", + "display_name": "Paul - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/k6dKrFe85PisZ3FMLeppUM.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "081f165a0d88432b991830e8deeac2e3", + "labels": [ + "Natural", + "Youth" + ], + "language": "Georgian", + "flag": "https://static.movio.la/region_flags/ge.png", + "locale": "ka-GE", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Eka - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/PTJsw78ZtXsEQrK8YWZrZV.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "0822c6351a75446f8f21ed4c3430ff9e", + "labels": [ + "Middle-Aged", + "Explainer" + ], + "language": "Malay", + "flag": "https://static.movio.la/region_flags/my.png", + "locale": "ms-MY", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Norazila - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/eppfCMA366E7uomDSwo5GS.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "08284d3fc63a424fbe80cc1864ed2540", + "labels": [ + "Youth", + "Professional" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 1, + "gender": "Male", + "tags": "", + "display_name": "Dario - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/3e9rdESHjEWSTRUA2j6bjr.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "086b225655694cd9ae60e712469ce474", + "labels": [ + "Older", + "Narration", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Arthur - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/au9cu3oknHoCTr3YtVjKAf.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "088b81175b7b4dcabc7179a94467dd06", + "labels": [ + "Youth", + "Natural" + ], + "language": "Estonian", + "flag": "https://static.movio.la/region_flags/ee.png", + "locale": "et-EE", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Anu - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/dS6ddV2dYYJiugXNzRCi9f.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "09465ad8e28d48f9affe795679e4be0e", + "labels": [ + "News", + "E-learning", + "Explainer" + ], + "language": "Filipino", + "flag": "https://static.movio.la/region_flags/ph.png", + "locale": "fil-PH", + "sort": 2, + "gender": "Male", + "tags": "", + "display_name": "Nathan", + "preview": { + "movio": "https://static.movio.la/voice_preview/MQ3gG3pjzGXxmUms6moiAJ.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "0add44a212634cee8eddc30067f0249f", + "labels": [ + "Explainer", + "Natural" + ], + "language": "Sinhala", + "flag": "https://static.movio.la/region_flags/lk.png", + "locale": "si-LK", + "sort": 100, + "gender": "female", + "tags": "", + "display_name": "Thilini - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/K5SChTdyygNGYcmWBatJ48.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": false, + "prosody": null, + "emphasis": "", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "0b27aae7db574ebca04c89bf6bba2641", + "labels": [ + "Middle-Aged", + "Explainer" + ], + "language": "Catalan", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "ca-ES", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Alba - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/nBZ5aMn2MKFPtFr2zjUx4B.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "0bde88bedf264a52befce6ae6d6c70be", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "Ads" + ], + "language": "Czech", + "flag": "https://static.movio.la/region_flags/cz.png", + "locale": "cs-CZ", + "sort": 1, + "gender": "Male", + "tags": "Middle-Aged, News, Explainer Videos", + "display_name": "Honza - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/093367236bf3412babde3d9fe0667497.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "0bfddc0290474a849a6626031d312ebf", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "Ads" + ], + "language": "Lithuanian", + "flag": "https://static.movio.la/region_flags/lt.png", + "locale": "lt-LT", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos, Product demos", + "display_name": "Leonas - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/4503e31fbe864f799268e1afb7761b7e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "0e051caf8e0947a18870ee24bbbfce36", + "labels": [ + "Middle-Aged", + "News", + "Narration", + "Ads" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/ch.png", + "locale": "fr-CH", + "sort": 3, + "gender": "Female", + "tags": "Young Adult, News, Product demos, Explainer Videos, Customer Service", + "display_name": "Ariane - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/3f7b2cd2e2dc468fb2160728462d17cd.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "0ebe70d83b2349529e56492c002c9572", + "labels": [ + "Middle-Aged", + "Natural", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 19, + "gender": "Male", + "tags": "", + "display_name": "Antoni - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/TwupgZ2az5RiTnmAifPmmS.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "0f059f9e54284391b48300f916cc6a01", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Explainer" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 5, + "gender": "Female", + "tags": "Middle-Aged, News, E-learning & Presentations, Explainer Videos", + "display_name": "Celeste - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/ebde256ffc2d4e14a0542bf4bd8719fa.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "0fd2f1a46fb14bd0a8018822f111ad92", + "labels": [ + "Youth", + "E-learning", + "Audiobooks", + "News", + "Explainer" + ], + "language": "Dutch", + "flag": "https://static.movio.la/region_flags/be.png", + "locale": "nl-BE", + "sort": 10, + "gender": "Male", + "tags": "oung Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Arnaud - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/S3W9CEXxdgVYhDhDSVUpTL.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "107ec6a82944431ebb6dd0652ecb42d0", + "labels": [ + "Middle-Aged", + "News", + "Ads", + "Explainer" + ], + "language": "Japanese", + "flag": "https://static.movio.la/region_flags/jp.png", + "locale": "ja-JP", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Ads, News, Explainer Videos", + "display_name": "Keita - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/da7b395e99ea41a0acda700727a8cc6d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1119d921713542f1a7e0f89035c6453a", + "labels": [ + "Narration", + "E-learning", + "Natural" + ], + "language": "Kiswahili", + "flag": "https://static.movio.la/region_flags/tz.png", + "locale": "sw-TZ", + "sort": 100, + "gender": "female", + "tags": "", + "display_name": "Rehema - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/d8iyhxa5ugBRiD6T2fQgU.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": false, + "prosody": null, + "emphasis": "", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "11815f082eea4e4ba3b3952ad05c0097", + "labels": [ + "Middle-Aged", + "Explainer", + "News", + "Ads" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/ma.png", + "locale": "ar-MA", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Jamal - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/a20f914b0d6c448b81df16589f82fe2d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "118e0e91a87a4e60a1353a438b3601ac", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News", + "Narration" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/hk.png", + "locale": "zh-HK", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Ads, Audiobooks, E-learning & Presentations", + "display_name": "HiuMaan - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/532bed404357485a9c4e6aaae734e750.wav" + }, + "settings": { + "style": "General", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "11a14f71bed84ba7a62ae43153aa48c2", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 7, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, Youtube", + "display_name": "Tanja - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/edc9fa2428164c278cdb44afe572b111.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1278e97c07734d60b0c2fee4d6cccbfe", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Narration" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 7, + "gender": "Male", + "tags": "Middle-Aged, News, Explainer Videos, E-learning & Presentations, Audiobooks", + "display_name": "Gunter - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/2e13f77976d940a5a5ae36265547082f.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "130c008c0e8e4454abcb086769b84638", + "labels": [ + "Youth", + "E-learning", + "Ads" + ], + "language": "Dutch", + "flag": "https://static.movio.la/region_flags/nl.png", + "locale": "nl-NL", + "sort": 150, + "gender": "male", + "tags": "", + "display_name": "Ernie - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/6NChw5zoAFiRe8nAk2VH6Z.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "131a436c47064f708210df6628ef8f32", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 36, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Amber - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/5HHGT48B6g6aSg2buYcBvw.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "143784cc55cb44e080dc86a16ed8fb14", + "labels": [ + "Narration", + "Youth" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 100, + "gender": "female", + "tags": "", + "display_name": "Ruth - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/jAEtW9rMyB8H3zifjRegR6.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "15ea92317dfe4abc858b08be62bd8e93", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Narration" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 5, + "gender": "Male", + "tags": "", + "display_name": "Ricardo - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/47d1469c5c434e6ab153fe69904687ac.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "164126a02bc04b1685ea69030fbcfc1e", + "labels": [ + "Natural", + "Middle-Aged", + "Narration" + ], + "language": "Malay", + "flag": "https://static.movio.la/region_flags/my.png", + "locale": "ms-MY", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Intan - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/hjEaP5TaoEfCxWaKu6b9j9.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "164a2f29f0104dc896aa2e8c2584cf5f", + "labels": [ + "Youth", + "Narration", + "Natural" + ], + "language": "Indonesian", + "flag": "https://static.movio.la/region_flags/id.png", + "locale": "id-ID", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Citra - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/PVXz2vRF3sDQcqjpP7FzPS.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "16ac5c3dc8b14834b52347286c9b350d", + "labels": [ + "Middle-Aged", + "Narration" + ], + "language": "Thai", + "flag": "https://static.movio.la/region_flags/th.png", + "locale": "th-TH", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Somsak - Gently", + "preview": { + "movio": "https://static.movio.la/voice_preview/EtpZAUNZukeipJ9XGrnghw.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "16bbafee7735447296185046b04a05d2", + "labels": [], + "language": "Kannada", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "kn-IN", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations, Ads", + "display_name": "Gagan - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/b0ce43d581744a80b02f8b1cb2cf8d08.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "178f3d2599b04697b65b6cf03c377a1e", + "labels": [ + "Natural", + "Youth" + ], + "language": "Tamil", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "ta-IN", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Valluvar - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/EeRJjYausrCjTyCnTTn3hb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1840d6dd209541d18ce8fdafbdbf8ed8", + "labels": [ + "Audiobooks", + "Ads", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 23, + "gender": "Male", + "tags": "", + "display_name": "Sam - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/cGGnM8FCWYJBqCEgbEfM59.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "18d006d24dd84e438ae7ec886045c281", + "labels": [ + "Youth", + "Professional" + ], + "language": "Vietnamese", + "flag": "https://static.movio.la/region_flags/vn.png", + "locale": "vi-VN", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Nhung - Gently", + "preview": { + "movio": "https://static.movio.la/voice_preview/66fZyzWWHs3n8wcxAGMKGW.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1956ee743a61677602bbef9cfc48ebb9", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "E-learning" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 6, + "gender": "Male", + "tags": "Young Adult, Ads, Audiobooks, E-learning & Presentations", + "display_name": "Fabio - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/d098ea6b02fe40d0b859f72583892ac1.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "19e93c4e7713495894a42b80fcff866c", + "labels": [ + "Youth", + "Natural" + ], + "language": "Romanian", + "flag": "https://static.movio.la/region_flags/ro.png", + "locale": "ro-RO", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Alina - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/ddF5y3GpfzhfmpcKeUN4uZ.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1a32e06dde934e69ba2a98a71675dc16", + "labels": [ + "Middle-Aged", + "Audiobooks", + "News", + "Explainer" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "es-US", + "sort": 4, + "gender": "Male", + "tags": "Young Adult, Ads, Product demos, Explainer Videos", + "display_name": "Alonso - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/224558e689bd4d8ba9b7de1205527448.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1a966c7d97c349e19c6d9e74f2f2ea47", + "labels": [ + "Middle-Aged", + "Narration", + "News", + "Audiobooks" + ], + "language": "Dutch", + "flag": "https://static.movio.la/region_flags/be.png", + "locale": "nl-BE", + "sort": 10, + "gender": "Female", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Dena - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/nNSpZoZraHC54P9FUJmkAC.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1ae3be1e24894ccabdb4d8139399f721", + "labels": [ + "Middle-Aged", + "E-learning", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 1, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Tony - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/LQUcrBcVHDMCSP5cX93CVd.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1b41a20629554233bea22e0118e86f0d", + "labels": [ + "Middle-Aged" + ], + "language": "Croatian", + "flag": "https://static.movio.la/region_flags/hr.png", + "locale": "hr-HR", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Gabrijela - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/8DUrw3S6YHTrYBKWnzusqN.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1bd001e7e50f421d891986aad5158bc8", + "labels": [ + "Youth", + "E-learning", + "Ads", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, Customer Service, Explainer Videos, Cheerful", + "display_name": "Sara - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/func8CFnfVLKF2VzGDCDCR.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1c26d407c3074956871430ca0789b570", + "labels": [ + "Youth" + ], + "language": "Serbian", + "flag": "https://static.movio.la/region_flags/rs.png", + "locale": "sr-RS", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Product demos, News, Low-Pitched", + "display_name": "Sophie - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/6M5j6nV8oD3mnRPqvsJ4Ks.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1cf54d7f9039462aae36b33728b09e3d", + "labels": [ + "Middle-Aged", + "Ads", + "Explainer", + "Narration", + "Natural" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 10, + "gender": "Female", + "tags": "", + "display_name": "Astrid - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/HpV9ZhWJLBAzD4ZtWBmDo7.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1d8e477dd21b40c1ab6726e50329a765", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Natural" + ], + "language": "Norwegian", + "flag": "https://static.movio.la/region_flags/no.png", + "locale": "nb-NO", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Iselin - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/BaLYTHH7b3jiM3zCERCTfv.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1e51f4123ee24c958781c8d66178ad08", + "labels": [ + "Middle-Aged", + "News", + "Ads", + "Explainer" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/ly.png", + "locale": "ar-LY", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Omar - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/723dda62843b49bf9376b3a2ea609cee.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1ef3312fdf2347f8a7f3e9bcbf26144f", + "labels": [ + "Youth", + "Professional" + ], + "language": "Urdu", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "ur-IN", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Gul - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5uRES5hcToCi7yUzmaRsh3.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "1fe966a9dfa14b16ab4d146fabe868b5", + "labels": [ + "Child", + "Audiobooks", + "Ads", + "Games" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 21, + "gender": "Female", + "tags": "Child, Audiobooks", + "display_name": "Ana - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/T4MYTkhp7F5SA9HRXHzL9A.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "20eab658d6c240c58554553593197ed9", + "labels": [ + "Natural", + "Youth" + ], + "language": "Finnish", + "flag": "https://static.movio.la/region_flags/fi.png", + "locale": "fi-FI", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Selma - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/YSQJikCifzGLik8xegVDxD.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "20fbb2cf29f3450c904a3779758ccaf6", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "E-learning" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/ye.png", + "locale": "ar-YE", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos, Youtube", + "display_name": "Saleh - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/47db78d3eff14adeaefe718b7c1a0b2f.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2134698646ea49e290d444596d3806cd", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/at.png", + "locale": "de-AT", + "sort": 2, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos, E-learning & Presentations", + "display_name": "Jonas - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/424d178de7394689ad37c943e794f01c.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "21d9632a2fc842308ad9b5c5b5014e3a", + "labels": [ + "Youth", + "News", + "Ads", + "Explainer" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, Ads", + "display_name": "Amala - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/4c72e33446264a0ab956989639651049.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2259b11ddd664c4f84e98f59819f4cc5", + "labels": [ + "Youth", + "News", + "E-learning", + "Explainer", + "Ads" + ], + "language": "Bangla", + "flag": "https://static.movio.la/region_flags/bd.png", + "locale": "bn-BD", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations", + "display_name": "Pradeep - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/c451f3720f1d4b5882c6d85a7d9013d0.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "232e3bb29f3b45d695f873503af7068c", + "labels": [ + "Narration", + "Professional", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 3, + "gender": "Female", + "tags": "", + "display_name": "Scarlett - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/gp5RLjAtsywQ3XdU4khisX.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "239530900b9c409ebb6d25ec73266094", + "labels": [ + "Natural", + "Explainer" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 100, + "gender": "female", + "tags": "", + "display_name": "Sarah - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/HWdUhbGNWsxL2MHZPWqYrY.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "23e526605d744f66b85a7eb5116db028", + "labels": [ + "Youth", + "Natural", + "Professional" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "male", + "tags": "", + "display_name": "Ethan - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/bFtUTV3c3Hiew3NbXnmQYN.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "255f8e3f207d4cf58632f0ee48ea75ef", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 6, + "gender": "Female", + "tags": "oung Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Yvette - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/a300600fb4e240c081d76b7acadf5884.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "25ecd686af554bfd8007b6a95210f776", + "labels": [ + "Natural", + "Middle-Aged", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 23, + "gender": "Male", + "tags": "", + "display_name": "Adam - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/nXc2bvzC9srTpkvCtyATPn.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "25ef3e4d1a4846a58a5f4c3b1a7f70a8", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "News" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 8, + "gender": "Female", + "tags": "Young Adult, Customer Service, Explainer Videos, E-learning & Presentations, Audiobooks", + "display_name": "Xiaoyan - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/bbb68c7a2d794b27b9936b985658600c.wav" + }, + "settings": { + "style": "customerservice", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "267604df751e4934b041a9eea2dafd3f", + "labels": [ + "Natural", + "Youth" + ], + "language": "Thai", + "flag": "https://static.movio.la/region_flags/th.png", + "locale": "th-TH", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Niwat - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/7dFcsotT79NZXpkJH62G6m.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "269792ff849b43b7b1488a6783a58563", + "labels": [ + "Youth", + "Natural" + ], + "language": "Indonesian", + "flag": "https://static.movio.la/region_flags/id.png", + "locale": "id-ID", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Slamet - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/AjNHU6oajDPDpmdTuhXA6E.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "26b1ed2a6dd8439abb8e788b762f0d77", + "labels": [ + "Middle-Aged", + "Explainer", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 31, + "gender": "Female", + "tags": "", + "display_name": "Jodi - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/MVjZYiF7jZFwN2EZG96HqM.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "285900cdfd1641e0b163e97a96973212", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 16, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Monica - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/A28mKDAgwgmKD8KdG68rkZ.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "289430c137354573a3ab773c91f05094", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Narration" + ], + "language": "Japanese", + "flag": "https://static.movio.la/region_flags/jp.png", + "locale": "ja-JP", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Ads, Cheerful, Youtube", + "display_name": "Himari - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/43ed4fbde9d34f7f8c89a28ee211e9ac.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "28f7220adbc144eeba42d70e1e969b29", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/mx.png", + "locale": "es-MX", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, News, E-learning & Presentations, Explainer Videos, Engaging", + "display_name": "Dalia - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/6c218dc0bc8243fa825acbc37e6a6300.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "290fbbc65583416c9bffa47ce05914fd", + "labels": [ + "Middle-Aged", + "News", + "Ads", + "Explainer" + ], + "language": "Filipino", + "flag": "https://static.movio.la/region_flags/ph.png", + "locale": "fil-PH", + "sort": 1, + "gender": "Female", + "tags": "Middle-Aged, Explainer Videos, E-learning & Presentations, Product demos", + "display_name": "Blessica - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/1eddbf0d6b1046d48ee5ce71c03efc28.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2b0243115175488fbd6b42940c1d1dad", + "labels": [ + "Middle-Aged", + "News", + "E-learning", + "Explainer", + "Ads" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/kw.png", + "locale": "ar-KW", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Fahed - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/714282e4e3d04798b082c55243f377ba.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2b9762b9199b41c7b473936248ad4a06", + "labels": [ + "Middle-Aged", + "Narration" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Arnau - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/F7fZNmXwQm9ZQ9C2FjgiCa.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2c56cc1229214db587034c56a69df99a", + "labels": [ + "Middle-Aged", + "E-learning", + "Audiobooks", + "Explainer", + "News" + ], + "language": "Ukrainian", + "flag": "https://static.movio.la/region_flags/ua.png", + "locale": "uk-UA", + "sort": 100, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Ostap - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/fFNZUitfpmJhiamt3724Eo.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2d5b0e6cf36f460aa7fc47e3eee4ba54", + "labels": [ + "Youth", + "Audiobooks", + "Narration", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 26, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Sonia - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/nZzCSavZkP37XSyc5CrzS7.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2f686fff829b47128078fa093ff33f7d", + "labels": [ + "Youth", + "Explainer", + "Natural" + ], + "language": "Malay", + "flag": "https://static.movio.la/region_flags/my.png", + "locale": "ms-MY", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Aiman - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Q347gpeNJbiZuetTDMcCmT.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2f72ee82b83d4b00af16c4771d611752", + "labels": [ + "Youth", + "Explainer", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Customer Service", + "display_name": "Jenny - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/XTyya7QKzhwvwDrVQLTvoQ.wav" + }, + "settings": { + "style": "customerservice", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2f84d49c51a741f3a5be283b0fc4f94c", + "labels": [ + "Youth", + "Natural" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/uy.png", + "locale": "es-UY", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Valentina - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/EQGZ99dT3kzrPutENe6GCH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "2f90470a903f47059d4306267eef65e5", + "labels": [], + "language": "Nepali", + "flag": "https://static.movio.la/region_flags/np.png", + "locale": "ne-NP", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Hemkala - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/djR3X8UzbeMYzyf8bFhWRf.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "30d0ff3bedfe4641a1c27062f8028229", + "labels": [ + "Middle-Aged", + "Narration", + "Explainer" + ], + "language": "Catalan", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "ca-ES", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Claudia - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/jS6c5BWxTXNTHgW35X9JQW.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "317a44d6bd2249999896f0ec961f1560", + "labels": [ + "Child", + "Ads", + "Audiobooks" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 8, + "gender": "Female", + "tags": "Child", + "display_name": "Gisela - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/bcc5d657d71a478898df8608d29d421e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "31ca37770fab4dd39f27a3dca368c984", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "Hungarian", + "flag": "https://static.movio.la/region_flags/hu.png", + "locale": "hu-HU", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Product demos, Ads, E-learning & Presentations", + "display_name": "Noemi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/7a01ffcc08264f5b9e75a8d397e866e7.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "32254053e5de43d18ec1e6095fbc6a16", + "labels": [ + "Middle-Aged", + "Narration" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 105, + "gender": "Female", + "tags": "", + "display_name": "Sofia - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/4hJnpBj2pKDFJWXhakrNWz.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "331f1cc78737475b946079cb3d2f5ffc", + "labels": [ + "Youth", + "Natural" + ], + "language": "Vietnamese", + "flag": "https://static.movio.la/region_flags/vn.png", + "locale": "vi-VN", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Storm - Kindly", + "preview": { + "movio": "https://static.movio.la/voice_preview/XzWBnGpqF8Zaoyo2HFNWKc.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "340db80b009349c3a0aa1ab21abb3a14", + "labels": [ + "Youth", + "Natural" + ], + "language": "Urdu", + "flag": "https://static.movio.la/region_flags/pk.png", + "locale": "ur-PK", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Asad - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Cb4HXBwafo9qsPwUNQnSsH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "35f6b6ac010849d38cfc99dc25e0e4b3", + "labels": [ + "Youth", + "Explainer", + "Narration", + "News" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/hk.png", + "locale": "zh-HK", + "sort": 3, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos, Ads, Low-Pitched", + "display_name": "WanLung - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/945d8ff1f30a45748aee607dd7ddf927.wav" + }, + "settings": { + "style": "General", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "36664759e6d141d78fe3244b8c3acc71", + "labels": [ + "Middle-Aged", + "Audiobooks" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Mia - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/3vs7RXHTyuD4YSDt63CYtR.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3729e0d85cec4e2f925b9e23913ac4f9", + "labels": [ + "Youth", + "E-learning", + "Ads" + ], + "language": "Catalan", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "ca-ES", + "sort": 10, + "gender": "Female", + "tags": "", + "display_name": "Arlet - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/dGCHqNr45BvtbdEjWM5p6f.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "37945e6f3b6744f4b379a3d3340ed422", + "labels": [ + "Middle-Aged", + "Narration", + "Audiobooks", + "Explainer" + ], + "language": "Dutch", + "flag": "https://static.movio.la/region_flags/nl.png", + "locale": "nl-NL", + "sort": 150, + "gender": "Female", + "tags": "", + "display_name": "Harriet - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/FCoMqr49XxDbJ45Rnb2yRe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "37f7ef47d2b6498e8781e168979b10df", + "labels": [ + "Youth", + "News", + "Narration", + "E-learning" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/ar.png", + "locale": "es-AR", + "sort": 6, + "gender": "Male", + "tags": "Young Adult, News, E-learning & Presentations, Explainer Videos, Product demos", + "display_name": "Tomas - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/264c67b5de514049812d19bca886c5dd.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "392eb53b771c4051951494c0e7fb36c9", + "labels": [ + "Youth", + "Ads" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 155, + "gender": "Female", + "tags": "", + "display_name": "Rita - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/hCqrWb2FBxTYFcp9A4NvRe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3a50a58bf6ac4707a34d1f51dbe9fb36", + "labels": [ + "Youth", + "Natural", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 7, + "gender": "male", + "tags": "", + "display_name": "Lester-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Sk3qbPC75xTKTbha8RtFTA.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "3a87612e2cd14705a3b419f959e8120b", + "labels": [ + "Professional", + "News", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "male", + "tags": "", + "display_name": "Douglas-Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/gHt2VDM4GPdkqWnG2jzzsY.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "3b1633a466c44379bf8b5a2884727588", + "labels": [ + "Youth", + "Ads", + "Explainer", + "Narration" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/tw.png", + "locale": "zh-TW", + "sort": 2, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos, Low-Pitched, Audiobooks, E-learning & Presentations", + "display_name": "YunJhe - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/7b043826fb284b5c98efda305fb3e184.wav" + }, + "settings": { + "style": "General", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3df9f559da8d4f888bc497f62a7078d2", + "labels": [ + "Ads", + "Natural", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 8, + "gender": "Female", + "tags": "", + "display_name": "Claire - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/ENvqqe6JcDXUHWPZvE8E4.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "3e17ba521ba94ceab92838352644aba1", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Explainer" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 4, + "gender": "Male", + "tags": "Middle-Aged, Product demos, Explainer Videos", + "display_name": "Kasper - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/2a411531e0a5410f824f2e9f9fb02fac.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3f126ed4b7204c2c9d3c8df84aa60346", + "labels": [ + "Audiobooks", + "Professional" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 3, + "gender": "male", + "tags": "", + "display_name": "Leon", + "preview": { + "movio": "https://static.movio.la/voice_preview/Dp7AAkZYWre2fg2FWJ2nQD.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": false, + "prosody": null, + "emphasis": "", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3f224b0cb92d45328e5ccd93d3c2314e", + "labels": [ + "Youth", + "Ads", + "Explainer", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ie.png", + "locale": "en-IE", + "sort": 42, + "gender": "Female", + "tags": "", + "display_name": "Emily - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZA54eZdstL8XeZssreg9XT.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "3fbd2cac3ddd4c109e17296e324845ec", + "labels": [ + "Older", + "Audiobooks", + "Narration", + "E-learning", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 20, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Delbert - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/CMr49SZRNaARsvmJ3tGDsN.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4158cf2ef85d4ccc856aacb1c47dbb0c", + "labels": [ + "Youth", + "News", + "Explainer", + "Narration" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/tw.png", + "locale": "zh-TW", + "sort": 3, + "gender": "Female", + "tags": "Young Adult, Customer Service, News, Explainer Videos, Product demos", + "display_name": "HsiaoChen - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/31b29b46e73649e8adec765755cea863.wav" + }, + "settings": { + "style": "General", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "422dbf6b037648b69f663cd33b47007b", + "labels": [ + "Middle-Aged", + "Audiobooks", + "News", + "Narration" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 5, + "gender": "Male", + "tags": "Middle-Aged, Low-Pitched, E-learning & Presentations, Audiobooks, Low-Pitched", + "display_name": "Yunye - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/500dbe5f9d604d6c82ed21df5d2c49a8.wav" + }, + "settings": { + "style": "calm", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4286c03d11f44af093e379fc7e2cafa6", + "labels": [ + "Middle-Aged", + "Explainer" + ], + "language": "Vietnamese", + "flag": "https://static.movio.la/region_flags/vn.png", + "locale": "vi-VN", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Chau - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/kikvE6UVEqmDr8ELu4KZAd.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4353849104994cef800af14be98f35a8", + "labels": [ + "Middle-Aged", + "Natural", + "Narration" + ], + "language": "Malay", + "flag": "https://static.movio.la/region_flags/my.png", + "locale": "ms-MY", + "sort": 10, + "gender": "Female", + "tags": "", + "display_name": "Yasmin - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/HfhwqGVaqKy47bqem3w7ZP.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4398ced268aa4707a5b6222819f05a6f", + "labels": [ + "E-learning", + "Games", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 9, + "gender": "male", + "tags": "", + "display_name": "Caleb-Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/vxLRnPCPixRPaNQz8vB2qd.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "43eb6d3dc5294a119aa17ab1d60444d1", + "labels": [ + "Youth", + "Explainer", + "Ads", + "E-learning" + ], + "language": "Japanese", + "flag": "https://static.movio.la/region_flags/jp.png", + "locale": "ja-JP", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, Customer Service, E-learning & Presentations, Youtube", + "display_name": "Sakura - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/357ea409333949c8888088a0cff1551a.wav" + }, + "settings": { + "style": "customerservice", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "445a8c7de9e74ed2a0dd02d5885ac589", + "labels": [ + "Older", + "Narration", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 100, + "gender": "female", + "tags": "", + "display_name": "Nancy - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/QTdrd669nuRE3cQEY56iZF.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "44efc076bc8d4349931245c7748250c8", + "labels": [ + "Natural", + "Explainer", + "Narration", + "Youth" + ], + "language": "Persian", + "flag": "https://static.movio.la/region_flags/ir.png", + "locale": "fa-IR", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Dilara", + "preview": { + "movio": "https://static.movio.la/voice_preview/ajKKGHiVvVpJoSKH4ubZbE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "456082e138624424bcace650c5e83306", + "labels": [ + "Youth", + "E-learning", + "Ads", + "Narration" + ], + "language": "Hindi", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "hi-IN", + "sort": 3, + "gender": "Female", + "tags": "", + "display_name": "Hemlata - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/d320f2f8ca9346ea80710dcd62990c23.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "456e13f3ff1345d3b7ab0435ce024dc7", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 22, + "gender": "Female", + "tags": "Young Adult, Cheerful, Youtube, Customer Service", + "display_name": "Isabella - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/KhiBp6E75AmiqR2F9Ssmj7.wav" + }, + "settings": { + "style": "Cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "485f386643a7425d8b8e1f27637c6ccb", + "labels": [ + "Natural", + "Middle-Aged", + "Explainer", + "Narration" + ], + "language": "Catalan", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "ca-ES", + "sort": 1, + "gender": "Female", + "tags": "", + "display_name": "Joana - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/QPryYyhvSzx95KpJnvmDUP.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "488e985a7bd249968612390c4e89f06c", + "labels": [ + "Narration", + "Natural", + "Middle-Aged" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 34, + "gender": "Male", + "tags": "", + "display_name": "Bruce - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/8VvvHAfbLyDP3ZhYix4wVW.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "4967f2fdcbd9473bb54c8db56e43e61a", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Audiobooks" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/tn.png", + "locale": "ar-TN", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Reem - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/882bfe8403724a3585efd7d566e435a6.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "49e3e441c5874cbab3a9e8086b927e8b", + "labels": [ + "Middle-Aged", + "Audiobooks", + "E-learning", + "Narration" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/co.png", + "locale": "es-CO", + "sort": 7, + "gender": "Female", + "tags": "Middle-Aged, Ads, Explainer Videos, E-learning & Presentations, Product demos", + "display_name": "Salome - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/9ca021b82b1a4987bdcdefb525539a1d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4b9b8a0176ae40b09a8ae1eaa26c509b", + "labels": [ + "Youth", + "Explainer", + "E-learning" + ], + "language": "Dutch", + "flag": "https://static.movio.la/region_flags/nl.png", + "locale": "nl-NL", + "sort": 150, + "gender": "male", + "tags": "", + "display_name": "Ernestine - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/kWJou6YDCV4M73XqKmtxjQ.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4bd875d510f5461a9e228e1cbde2d545", + "labels": [ + "Youth", + "Narration", + "E-learning", + "News" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 8, + "gender": "Female", + "tags": "", + "display_name": "Camila - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/a0fbec40f1844a78801f5577b2730fb0.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4d77dce8ebef4244813b40ce2cd3f999", + "labels": [ + "Middle-Aged" + ], + "language": "Gujarati", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "gu-IN", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Dhwani - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Jh73r9NyR8CMAoN2VCMPAH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4e36239454b2414d85c9dbaa18bcf228", + "labels": [ + "Youth", + "Narration", + "Explainer", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/nz.png", + "locale": "en-NZ", + "sort": 25, + "gender": "Male", + "tags": "", + "display_name": "Mitchell - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/cYt7FDjZng3rszpVXewS9U.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4e5f51f94b7642ed9b065e506dc1c296", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 6, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Customer Service, Explainer Videos", + "display_name": "Maja - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/a2280ce094aa4bc7be6d8bc108271aff.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4ebba0f2f4944d2aa75d21552764c638", + "labels": [ + "Youth", + "Natural" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 100, + "gender": "female", + "tags": "", + "display_name": "Avigail - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/Hc2kWHuFbbZUuyiqgrhXrN.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "4efd43386dc844c29d532cb5d5690f86", + "labels": [ + "Middle-Aged", + "Narration", + "Explainer", + "Natural" + ], + "language": "Norwegian", + "flag": "https://static.movio.la/region_flags/no.png", + "locale": "nb-NO", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Finn - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Zue8edByGkFEQUVjx55U8b.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "508da0af14044417a916cba1d00f632a", + "labels": [ + "News", + "Natural", + "Youth" + ], + "language": "Persian", + "flag": "https://static.movio.la/region_flags/ir.png", + "locale": "fa-IR", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Farid", + "preview": { + "movio": "https://static.movio.la/voice_preview/CCjAFPqqXZSVNPMTwbHHhD.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "50c32e9b096e46218707499b8e7abcf0", + "labels": [ + "Older", + "News" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 105, + "gender": "Female", + "tags": "", + "display_name": "Maria - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/Kwi6mxi89bTQxJYbQWhkHP.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "50f8370a02fe45099636687d0d21750d", + "labels": [ + "Child", + "Audiobooks", + "Ads" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 9, + "gender": "Female", + "tags": "Child", + "display_name": "Eloise - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/50f8370a02fe45099636687d0d21750d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "51ce3a14b89947bcb6c13d5e5062331a", + "labels": [ + "Middle-Aged", + "News", + "Ads", + "Audiobooks" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/ca.png", + "locale": "fr-CA", + "sort": 2, + "gender": "Male", + "tags": "Young Adult, News, Product demos, Explainer Videos", + "display_name": "Antoine - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/276db23bd9804f549a94f13f1059e724.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5204c60a86e441c5b34bfd5eb856b2f9", + "labels": [ + "Youth" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Aharon - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/5dJ23KpW36KccrVsyPPQhg.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "527d87101417484e979a14e038f01b49", + "labels": [ + "Middle-Aged", + "Ads", + "Explainer", + "Narration" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/kw.png", + "locale": "ar-KW", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Noura - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/65391dadd20a4e2890865b062aa542c3.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "52b62505407d4f369b9924c2afcdfe72", + "labels": [ + "Older", + "Natural", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Roy - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZRFWnrcaQkhbxDp3svykbE.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "548bb01a597d4a77b8d170736604b690", + "labels": [ + "Narration", + "Youth", + "Natural" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Isaac - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/hCVzC5yGUR69R9HoQsmhbj.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5531756441d34f408e7e60821f2e52a6", + "labels": [ + "Youth", + "Ads", + "Narration", + "E-learning" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Ads, Youtube, Customer Service", + "display_name": "Denise - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/bfb737ce9a614f909665717363762c4d.wav" + }, + "settings": { + "style": "Cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5646809bd96e40e9b374ba1d734ceb69", + "labels": [ + "Youth", + "Ads", + "News", + "E-learning", + "Explainer" + ], + "language": "Slovak", + "flag": "https://static.movio.la/region_flags/sk.png", + "locale": "sk-SK", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, News, Product demos, E-learning & Presentations, Ads", + "display_name": "Lukas - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/f1166fbd68b34cfbb5a68d1f5653630c.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "575a8643634944a28761fcd34331d3fa", + "labels": [ + "Youth", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Dennis - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/YpfMSycEaGKLyWZffnKsc7.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "583838e570fe4e00b646082785c12260", + "labels": [ + "Youth", + "Natural" + ], + "language": "Latvian", + "flag": "https://static.movio.la/region_flags/lv.png", + "locale": "lv-LV", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Everita - Gently", + "preview": { + "movio": "https://static.movio.la/voice_preview/VteNQS8ADrTSWzt6qrrKdj.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "588304e6ada44ce8b56edd087aa333e6", + "labels": [ + "Youth", + "Narration", + "Natural" + ], + "language": "Indonesian", + "flag": "https://static.movio.la/region_flags/id.png", + "locale": "id-ID", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Ratna - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/9prM2eNqdsUTZ2ysC9jZXy.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "58e519e106414e13a308be0b98e221ab", + "labels": [ + "Child", + "Natural" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Irene - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/oXd685KxYjCydFUJhMY9jG.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "592b25f402ff41a295aeb3440f114179", + "labels": [ + "Middle-Aged", + "Explainer", + "E-learning", + "Natural", + "Ads" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 50, + "gender": "Female", + "tags": "", + "display_name": "Sofie - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/neR5E32gY6E6oWxSV3mXLg.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5c0956259f3d4c659573a3a3898699ef", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "E-learning" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 5, + "gender": "Male", + "tags": "Young Adult, News, Product demos, Explainer Videos", + "display_name": "Yves - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/5b17d0a01f6f45dab6cc7f3dd27decdd.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5d3e04e2972b4019b68d18d336800615", + "labels": [ + "Narration", + "Natural", + "Middle-Aged" + ], + "language": "Danish", + "flag": "https://static.movio.la/region_flags/dk.png", + "locale": "da-DK", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Mads - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/rhfHirLMn4d3zfVPwaHAvX.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5d61b4c7e1894f4c9fc045be54528ead", + "labels": [ + "Youth", + "Natural" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 5, + "gender": "Female", + "tags": "", + "display_name": "Lucia - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/NnXhEBd7PwViBzeUPBGZzG.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5dddee02307b4f49a17c123c120a60ca", + "labels": [ + "Youth", + "Explainer", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/za.png", + "locale": "en-ZA", + "sort": 28, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, Product demos, E-learning & Presentations", + "display_name": "Luke - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZSJ6hYck7uD4RFDbTqbtvE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "5e323be21853489591cc589f90e24010", + "labels": [ + "Natural", + "Youth" + ], + "language": "Georgian", + "flag": "https://static.movio.la/region_flags/ge.png", + "locale": "ka-GE", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Giorgi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/tvaGmSRpEBXtMJQVN23QPH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "611235e8461c4071b308cbb697a44e5c", + "labels": [ + "Middle-Aged", + "Ads", + "News", + "Narration" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/ma.png", + "locale": "ar-MA", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Mouna - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/a0ae4f7d37404d3daa14905975499225.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6156f8f798604e3f8c73ba2931cfb104", + "labels": [ + "Youth", + "Explainer", + "Ads", + "News" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "es-US", + "sort": 4, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos", + "display_name": "Paloma - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/72084f84f7414fdfae1c769a68915711.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "628161fd1c79432d853b610e84dbc7a4", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 7, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Bella - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/C9zRUcRZ4R56R4pGjytysb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "63608103877d43a0b3c61e240b8f86c3", + "labels": [ + "Youth", + "Explainer" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 1, + "gender": "male", + "tags": "", + "display_name": "Fabian", + "preview": { + "movio": "https://static.movio.la/voice_preview/zpPQGgV4kE2fhxoprPFmCC.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": false, + "prosody": null, + "emphasis": "", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "64cc0b129ac34e04a521cb4627126923", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/ca.png", + "locale": "fr-CA", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, E-learning & Presentations", + "display_name": "Sylvie - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/40797bf6107f47c88aac07636e4633f9.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "656eec70383742548d6c990b0b84f94e", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Explainer" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/dz.png", + "locale": "ar-DZ", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Ads, E-learning & Presentations, Product demos, Explainer Videos, News", + "display_name": "Ismael - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/1bb8caaef1864b38bbc6250f269989b4.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "65d83b8269684645878e9155edf9b439", + "labels": [ + "Youth", + "Ads" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/gt.png", + "locale": "es-GT", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Marta - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZJr598DruryrinouXCwGd2.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "65f5dc8c030e4f129636b8df94c3b8bc", + "labels": [ + "Middle-Aged", + "Audiobooks", + "News", + "Ads", + "E-learning" + ], + "language": "Dutch", + "flag": "https://static.movio.la/region_flags/nl.png", + "locale": "nl-NL", + "sort": 10, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos,", + "display_name": "Maarten - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/XybqkdXt7G6DNGmsKHtJkV.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6648fd92bcba41df809a01712faf9a4a", + "labels": [ + "Narration", + "Audiobooks", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 14, + "gender": "male", + "tags": "", + "display_name": "Harry - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/Q8bBCXxNPuwnZKixnNHawf.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "66a21dedf2c842b8a516cdb264360e0e", + "labels": [ + "Youth", + "News", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "en-IN", + "sort": 40, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Ads, Product demos, E-learning & Presentations", + "display_name": "Neerja - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/RcDW6eTi2rGrVyFJZYdr2G.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6861d3de6a904aeeb20feb8d4238cfd4", + "labels": [ + "Narration", + "Middle-Aged" + ], + "language": "Vietnamese", + "flag": "https://static.movio.la/region_flags/vn.png", + "locale": "vi-VN", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Minh - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/FjsFKAiXzQuMrGuaoPcMbC.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "69a92c0623a1422788455eab539f7c8d", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Narration" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 7, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Audiobooks, E-learning & Presentations", + "display_name": "Xiaomeng - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/85569aad47124980abadc7f6f7279c72.wav" + }, + "settings": { + "style": "gentle", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6b5c5f11e7b24daca9c0d2371ecd8bc9", + "labels": [ + "Narration", + "Professional", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "male", + "tags": "", + "display_name": "Raymond-Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/DToLuPLsgsCcodNThceGUa.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "6bb77a617ce54cce9de83044b53ba1a3", + "labels": [ + "Natural", + "Middle-Aged", + "Explainer" + ], + "language": "Catalan", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "ca-ES", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Enric - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/MauSdU6wp4udCBJ4igRr2A.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6bd512a0c73c494186bfac36ccbe5072", + "labels": [ + "Youth", + "Ads" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Von - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/QnbZkswuuPa6iPcZUghWrc.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6cd01cfff3354e16a6f4247cf30123ff", + "labels": [ + "Youth", + "Narration", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/sg.png", + "locale": "en-SG", + "sort": 38, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Luna - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/F3smMjYU6mWaa3tXLkUHpE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6d091fbb994c439eb9d249ba8b0e62da", + "labels": [ + "Middle-Aged", + "Explainer", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Jahmai - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/Jw83S9aTUdzR2XdBvzLGYc.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6d9035df407946859876104ac8b0c0a0", + "labels": [ + "Middle-Aged" + ], + "language": "Malay", + "flag": "https://static.movio.la/region_flags/my.png", + "locale": "ms-MY", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Norain - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/KdsoPk4cDtHuHBh3YZMVWD.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6d9be61f6e0646f4b6750d3eb03b118f", + "labels": [ + "Audiobooks", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 35, + "gender": "Female", + "tags": "", + "display_name": "Belle - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/wbXoiYJ2e6xwKC5i2EUSCY.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "6e51a203c3e74398ae8046f3c320abf6", + "labels": [ + "Middle-Aged", + "Narration", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "male", + "tags": "", + "display_name": "Samuel-Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/TuVCqyvCGvbEGA9JkFkaFY.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "6e7404e25c4b4385b04b0e2704c861c8", + "labels": [ + "Middle-Aged", + "Ads", + "Audiobooks", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "Female", + "tags": "", + "display_name": "Michelle - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/djxEBTVHKLgXsJpb6ZrBVn.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "6fc81c412a6d46a688cfb4dd659c1ab6", + "labels": [ + "Youth", + "Explainer", + "Narration", + "E-learning" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/tw.png", + "locale": "zh-TW", + "sort": 5, + "gender": "Female", + "tags": "Young Adult, Low-Pitched, E-learning & Presentations, Explainer Videos", + "display_name": "HsiaoYu - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5f500db50b6a40ec97d33381f9fbdb32.wav" + }, + "settings": { + "style": "General", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7001a39135544c608cd53e6b575faa5c", + "labels": [ + "Youth", + "Natural" + ], + "language": "Urdu", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "ur-IN", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Salman - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/koNkA3Upt4kzbPa5iPE4Ab.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "703900c5c9a5463495df05826f3fce63", + "labels": [ + "Youth", + "Explainer", + "Audiobooks", + "E-learning" + ], + "language": "Slovak", + "flag": "https://static.movio.la/region_flags/sk.png", + "locale": "sk-SK", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos", + "display_name": "Viktoria - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/dec6d16fbfcc408a9b53ef55fff50a77.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "707375bffbb6443ca99ec8f81459738f", + "labels": [ + "Explainer", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 24, + "gender": "Female", + "tags": "", + "display_name": "Grace - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/jGVaobvjJGySAFFFF6BS6Z.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "71c663964e82485eabca1f4aedd7bfc1", + "labels": [ + "Youth", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 13, + "gender": "male", + "tags": "", + "display_name": "Troy-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Qs6kFXo4t3TetRQS5AYb6F.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "71ff4fd31a844a8a9cfe2073c80c104d", + "labels": [ + "Middle-Aged", + "Ads", + "Explainer", + "E-learning" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/eg.png", + "locale": "ar-EG", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Shakir - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/481c5292001a487f85855573f9373459.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "727e9d6d492e456b9f27708fa8018744", + "labels": [ + "Youth", + "News", + "Explainer", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ca.png", + "locale": "en-CA", + "sort": 30, + "gender": "Female", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Clara - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/DzWM42iH66Jr8bBVNJDmJx.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "72dab46d28d8422bb4386f0d1d9cf9ba", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "Bangla", + "flag": "https://static.movio.la/region_flags/bd.png", + "locale": "bn-BD", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations", + "display_name": "Nabanita - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/e650f7be01844ab8a982c60545e8473b.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "734dd71b350e47d6a025bc172227cb49", + "labels": [ + "Youth", + "Natural" + ], + "language": "Indonesian", + "flag": "https://static.movio.la/region_flags/id.png", + "locale": "id-ID", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Adi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/7kcosBUK5VmzCDNhsmRdcE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "73c0b6a2e29d4d38aca41454bf58c955", + "labels": [ + "Youth", + "Ads", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 28, + "gender": "Female", + "tags": "", + "display_name": "Cerise - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/KotgDpZPtr63SDnTfgdYxb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "750533f27c5649979110086898518280", + "labels": [ + "Youth", + "News", + "Ads", + "E-learning" + ], + "language": "Italian", + "flag": "https://static.movio.la/region_flags/it.png", + "locale": "it-IT", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Ads, Product demos", + "display_name": "Gabriella - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/8e87f871f8d142a6be9c9e3bfc609e16.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "754416db5cb24547a17919b436b7303a", + "labels": [ + "Middle-Aged", + "Natural", + "Ads", + "Explainer" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 50, + "gender": "Female", + "tags": "", + "display_name": "Elin - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/ksLY6CETRQbM8Gi289ytvu.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "760ec5388f364b9698a077339a982866", + "labels": [ + "Middle-Aged", + "Ads", + "Explainer", + "Audiobooks" + ], + "language": "Czech", + "flag": "https://static.movio.la/region_flags/cz.png", + "locale": "cs-CZ", + "sort": 1, + "gender": "Female", + "tags": "Middle-Aged, News, Explainer Videos, E-learning & Presentations", + "display_name": "Vlasta - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/d9462966184e41629a73bfe1a0397a39.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "76955c80188a4c149df169b5dc9e1a3a", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "Female", + "tags": "Young Adult, Assistant", + "display_name": "Emma - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/c3NuQJ7QnFRXFq8Kn4quwk.wav" + }, + "settings": { + "style": "assistant", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "787d136ca6b44868955e01bd3d3047aa", + "labels": [ + "Child", + "Ads", + "Audiobooks" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 4, + "gender": "Female", + "tags": "Child, Cheerful, Ads, Cartoon, High-Pitched, Audiobooks", + "display_name": "Xiaoshuang - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/18d4934428fb4eabbffcf908108d6b59.wav" + }, + "settings": { + "style": "chat", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "79e0798a45d340d9adb4979cfcc42363", + "labels": [ + "Youth", + "Natural", + "Explainer" + ], + "language": "Malay", + "flag": "https://static.movio.la/region_flags/my.png", + "locale": "ms-MY", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Razif - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/kgp8bNRu3aQyTZ8PqyQgCn.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "79f84ce83ec34e75b600deec4c5c9de6", + "labels": [ + "Youth", + "Explainer", + "News", + "Ads" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/cl.png", + "locale": "es-CL", + "sort": 3, + "gender": "Male", + "tags": "Young Adult, Ads, Product demos, Explainer Videos", + "display_name": "Lorenzo - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/79f84ce83ec34e75b600deec4c5c9de6.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7a68d053ed6946a097f0b8ec25026631", + "labels": [ + "Youth", + "News" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 100, + "gender": "female", + "tags": "", + "display_name": "Miriam - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/77n2PQr6LER7V4HzYajSaf.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7addb1d6eaba435da3bbd4abcb26407a", + "labels": [ + "Middle-Aged", + "News", + "Ads", + "Narration" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 5, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos", + "display_name": "Klaus - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/e5c08f9036cb4227a64381e21d08f93e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7c2e216ee89a488b9796f16067baa189", + "labels": [ + "Middle-Aged", + "Audiobooks", + "News", + "Explainer" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 6, + "gender": "Female", + "tags": "Middle-Aged, News, Customer Service, Explainer Videos, Low-Pitched, E-learning & Presentations", + "display_name": "Qiujing - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/e0e5de9e62bb47e59edc59ee85967167.wav" + }, + "settings": { + "style": "chat", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7c458b57f4074792a5f4b992a722c39c", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 4, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, E-learning & Presentations", + "display_name": "Maria - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/b74827dfd74c4822bdba87ca58ec8b90.wav" + }, + "settings": { + "style": "calm", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7c6a15c7caf8415fb2102faafd7e2259", + "labels": [ + "Middle-Aged", + "E-learning", + "Narration", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "en-IN", + "sort": 26, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, Ads, Product demos, E-learning & Presentations", + "display_name": "Prabhat - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/hJHsYuEL5nVUtoLMgyTuMH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7d31c29ab58446328000491f4dfbb223", + "labels": [ + "Youth", + "Ads", + "Explainer" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/sv.png", + "locale": "es-SV", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Lorena - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/GhPNWR5Lv9JBD4KTrrwymD.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7d7d4ebc1c164e71a0542ecab97fdb43", + "labels": [], + "language": "Kannada", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "kn-IN", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations, Ads", + "display_name": "Sapna - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/8a837b71274943c5ace4e068a4e7d1d0.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7dde95cac3cf4d888f8e27db7b44ee75", + "labels": [ + "Older", + "Explainer" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Hugo - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/MrHAdzF5RhHXQFYUxFv5qE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "7e56728c6b9a4469b3d1367a3464f2ad", + "labels": [ + "Middle-Aged", + "News", + "Narration", + "E-learning" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/co.png", + "locale": "es-CO", + "sort": 7, + "gender": "Male", + "tags": "Middle-Aged, Ads, Explainer Videos, E-learning & Presentations, Product demos", + "display_name": "Gonzalo - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/89969d2fd37f496fb808158ffb1ed12d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "80f371302eaa4404870daa41dc62423c", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 8, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations, Product demos", + "display_name": "Coralie - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/313f84bacccb49a094a0919f3db30874.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8118ba92923a4f7e89f935fae00e2265", + "labels": [ + "Youth", + "Explainer", + "Ads", + "E-learning" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/bo.png", + "locale": "es-BO", + "sort": 10, + "gender": "Female", + "tags": "Young Adult, News, E-learning & Presentations, Explainer Videos, Product demos", + "display_name": "Sofia - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/e09d5129884e4517b4e1e7e4a2abc2c8.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "814e0b1c99e9474896b17ec7c2b2a371", + "labels": [ + "Youth", + "Explainer", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/sg.png", + "locale": "en-SG", + "sort": 32, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Wayne - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/9abCuQ4Zf2MyUoYbjTQx3r.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "81bb7c1a521442f6b812b2294a29acc1", + "labels": [ + "Middle-Aged", + "News", + "Narration", + "Audiobooks" + ], + "language": "Russian", + "flag": "https://static.movio.la/region_flags/ru.png", + "locale": "ru-RU", + "sort": 1, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Dmitry - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/f0155e9d66624b8785156c515370127b.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "84a32476cea2462e85acff7c4ce9fa07", + "labels": [ + "Middle-Aged", + "News", + "E-learning", + "Explainer" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/hk.png", + "locale": "zh-HK", + "sort": 20, + "gender": "Female", + "tags": "Young Adult, News, Customer Service, E-learning & Presentations", + "display_name": "HiuGaai - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/4f2dd759a1494b66b905d733c4514cdf.wav" + }, + "settings": { + "style": "General", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "84b5101e8be141c7be6b20d8bcf4f26a", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/at.png", + "locale": "de-AT", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Customer Service, Ads, Explainer Videos", + "display_name": "Ingrid - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/e78d131964c04141882640c19fd70e44.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8706bfaaa37444fb8b239c38256afc0d", + "labels": [ + "Middle-Aged", + "Natural", + "Narration" + ], + "language": "Malay", + "flag": "https://static.movio.la/region_flags/my.png", + "locale": "ms-MY", + "sort": 10, + "gender": "Male", + "tags": "", + "display_name": "Osman - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/88g9NydAM4iUv6kAfGLDJN.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "87504627ab46419b8b9a59bbdaed285e", + "labels": [ + "Middle-Aged", + "Explainer", + "Ads", + "News" + ], + "language": "Lithuanian", + "flag": "https://static.movio.la/region_flags/lt.png", + "locale": "lt-LT", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations", + "display_name": "Ona - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/2577f820bd27486daf1bf6e85569a499.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "886d5b163da4436daa5fae885e175636", + "labels": [ + "Narration", + "Youth", + "Natural", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 3, + "gender": "male", + "tags": "", + "display_name": "Charles - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/sj5stM39YqYcmjn7629wmT.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "88ac5af05d3442d5a04408d4b0aa8697", + "labels": [ + "Youth" + ], + "language": "Danish", + "flag": "https://static.movio.la/region_flags/dk.png", + "locale": "da-DK", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Naja - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZrrjpW69yATL7KVBevMZCV.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8a0a2d7958ba4c85a19802f73e7bec63", + "labels": [ + "Youth", + "Explainer", + "Ads", + "E-learning" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, Product demos", + "display_name": "Hila - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/mHQCjTf7kZZ9Y3m73vBd3M.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8a44173a27984487b3fa86e56004218c", + "labels": [ + "Youth", + "Narration", + "E-learning", + "Audiobooks", + "Explainer" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 5, + "gender": "Female", + "tags": "Young Adult, Customer Service, Explainer Videos, Ads", + "display_name": "Xiaowen - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/ba7d19e8ba0b413fb4ed4a5a56b2c162.wav" + }, + "settings": { + "style": "customerservice", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8aa99a72f5094b2c8270a6fdadfe71b0", + "labels": [ + "Youth", + "E-learning", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/au.png", + "locale": "en-AU", + "sort": 7, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Wille - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/GAfaMVfT8xRTB7EaiZLvXg.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8aaaed31d9d6407f950d67715c19bcf4", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "E-learning" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Alain - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/810f2fcdb27c431ab2d0ee1ef0e263da.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8b06642340ad474e8d32b040928fe459", + "labels": [], + "language": "Telugu", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "te-IN", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Ads, Product demos, Explainer Videos", + "display_name": "Shruti", + "preview": { + "movio": "https://static.movio.la/voice_preview/6ec55eb490964c398828d77f608dc1fe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8bc71625549d425d9a38b4e4a296ba32", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "Ads" + ], + "language": "Greek", + "flag": "https://static.movio.la/region_flags/gr.png", + "locale": "el-GR", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos, E-learning & Presentations", + "display_name": "Nestoras - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/3035ffb28750449d9c6279dd510539ac.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8c47d9e75bdc4f1ba81bfbe32d891085", + "labels": [ + "Youth", + "News", + "Ads", + "Explainer" + ], + "language": "Indonesian", + "flag": "https://static.movio.la/region_flags/id.png", + "locale": "id-ID", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, Ads, Product demos, E-learning & Presentations", + "display_name": "Ardi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5cb6d2f1b4214b5a8daa02b6c6578fe5.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8cfa1b47288a45d08ef20b98fdea965f", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Audiobooks", + "Ads" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/sy.png", + "locale": "ar-SY", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Amany - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/908cdc9b9d1b424a8a1ca6bc45c60965.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8d1bd258a2de4e558135955a396e8e97", + "labels": [ + "Youth", + "Professional" + ], + "language": "Vietnamese", + "flag": "https://static.movio.la/region_flags/vn.png", + "locale": "vi-VN", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Dung - Excited", + "preview": { + "movio": "https://static.movio.la/voice_preview/8TaXtRyfu6mBr63sWefjat.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8ec0b580ba5e4f8cbcee85c25c09ed37", + "labels": [ + "Middle-Aged", + "Explainer", + "E-learning", + "Natural" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 10, + "gender": "Female", + "tags": "", + "display_name": "Tilda - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/UXMhhjcCoihfmcfJJgBDda.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8f7e90bed52a4b6d8d5c212da18afee4", + "labels": [ + "Middle-Aged", + "Audiobooks", + "News", + "E-learning" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/ae.png", + "locale": "ar-AE", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos, Youtube", + "display_name": "Hamdan - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/52f31bc14f0a4e0996f8ba648bc9ad48.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8fd8502aa4854f8ab80d16c481d2a1f8", + "labels": [ + "Middle-Aged", + "Audiobooks", + "News", + "Explainer" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/be.png", + "locale": "fr-BE", + "sort": 4, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos, E-learning & Presentations", + "display_name": "Gerard - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/dcf0d63dd83145dfb15b9a363198cdef.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "8fda1f6f290c4351aec8e10b050d9cf7", + "labels": [ + "Youth", + "News", + "Narration", + "E-learning" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 5, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos", + "display_name": "Louisa - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5709b6e4483847079b4ec10d4290042a.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "905f0333daf749e4ace78c09f42ca972", + "labels": [ + "Middle-Aged", + "News", + "Ads", + "Narration" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 1, + "gender": "Male", + "tags": "Middle-Aged, Explainer Videos", + "display_name": "Ralf - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/ebb68bc4f7fe4f389805349fbd07ed9c.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "90fc4e27e9e349f196767c0ada520abd", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Ads" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 9, + "gender": "Male", + "tags": "Middle-Aged, News, E-learning & Presentations, Explainer Videos", + "display_name": "Jerome - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/a9bbf9885fc8475687414ad7950298f8.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9169e484eb0740b286ef8a679d78fa3f", + "labels": [ + "Youth", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 6, + "gender": "male", + "tags": "", + "display_name": "Glenn-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/AqYCGxK5CxXfGWjBDLyjch.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "928d97a03a2844b2be94a997ab8161d2", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 13, + "gender": "Female", + "tags": "Young Adult, Cheerful, Ads, Assistant", + "display_name": "Xiaomo - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/d32167af86c54bd39c5bd48c117db92d.wav" + }, + "settings": { + "style": "affectionate", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "92e5d07ba8384bf9ae0a329f2386a4b6", + "labels": [ + "Youth", + "News", + "Ads", + "Explainer" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/ly.png", + "locale": "ar-LY", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Iman - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/aa2875bdcda248eebe454058bfe7d630.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "93129ad473ea49dd8dd69da0f4fa8fd6", + "labels": [ + "Natural", + "E-learning", + "Narration" + ], + "language": "Italian", + "flag": "https://static.movio.la/region_flags/it.png", + "locale": "it-IT", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Benigno - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/bCMypM6ZLCTaGdCpjDbdVa.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": false, + "prosody": null, + "emphasis": "", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "932643d355ed4a3d837370a3068bbd1b", + "labels": [ + "Youth", + "Ads", + "News", + "Narration", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 18, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Josie - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/9SGYr6Xk7SUB8CMzR9rkHF.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "951dd5d45e2143cf9360eed82d90a698", + "labels": [ + "Narration", + "E-learning", + "Natural" + ], + "language": "Kiswahili", + "flag": "https://static.movio.la/region_flags/tz.png", + "locale": "sw-TZ", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Daudi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/msLeE2pZJF3owGjXeP8dNP.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": false, + "prosody": null, + "emphasis": "", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "957336970bc64d479d551fea07e56784", + "labels": [ + "Youth", + "News", + "Explainer", + "Ads" + ], + "language": "Hindi", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "hi-IN", + "sort": 3, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos, Product demos", + "display_name": "Madhur - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/20d3b6c692db483a92e3788a87e9e231.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "95ff21a188db4b3e9cf9db3c60a2184c", + "labels": [ + "Middle-Aged", + "Ads", + "Audiobooks" + ], + "language": "Dutch", + "flag": "https://static.movio.la/region_flags/nl.png", + "locale": "nl-NL", + "sort": 150, + "gender": "Male", + "tags": "", + "display_name": "Gerard - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/aE4Ur9RsoqZ4FHBYQRr5fe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "961546a1be64458caa1386ff63dd5d5f", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "E-learning" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 1, + "gender": "Male", + "tags": "Middle-Aged, News, E-learning & Presentations, Low-Pitched, Low-Pitched, Explainer Videos, Ads, Product demos, Assistant", + "display_name": "Yunyang - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/13620ce882be490da448e90dee2cea74.wav" + }, + "settings": { + "style": "customerservice", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "96ad9a3176414d3fa22c407dd01879c0", + "labels": [ + "Youth" + ], + "language": "Serbian", + "flag": "https://static.movio.la/region_flags/rs.png", + "locale": "sr-RS", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, Product demos", + "display_name": "Nicholas - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/96ad9a3176414d3fa22c407dd01879c0.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9799f1ba6acd4b2b993fe813a18f9a91", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Explainer" + ], + "language": "Hindi", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "hi-IN", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, Product demos", + "display_name": "Swara - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/e4bc76818ccf4591b1ca4321de23130e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "98423e603a47491fa46822cc6e703717", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Narration" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 6, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, E-learning & Presentations", + "display_name": "Brigitte - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/03562d02f005494f98f347813f1ebf85.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "98b855ef6768468bbcc95f1c5c5c27c0", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "Hungarian", + "flag": "https://static.movio.la/region_flags/hu.png", + "locale": "hu-HU", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, Product demos, Ads", + "display_name": "Tamas - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/d81bc865141f4d648dbe35198104a332.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "99af85f185034537b4d67b646063b816", + "labels": [ + "Middle-Aged", + "News" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Julia - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/EZQiezPf8GDfFrKM4uyq3J.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9a164f9f9a76457387a3dc4be173fd1e", + "labels": [ + "Natural", + "Explainer", + "Youth" + ], + "language": "Finnish", + "flag": "https://static.movio.la/region_flags/fi.png", + "locale": "fi-FI", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Noora - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/MDztH5zqiFubiD2Au4Eq55.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9a247a37f3c04e6aa934171998b9659c", + "labels": [ + "Middle-Aged", + "Explainer", + "Narration", + "News" + ], + "language": "Vietnamese", + "flag": "https://static.movio.la/region_flags/vn.png", + "locale": "vi-VN", + "sort": 1, + "gender": "Female", + "tags": "", + "display_name": "Hoai - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/382f6e52a495491486375f64adc173d2.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9a73e358ebf44097b8d3b6bc5fa57454", + "labels": [ + "Middle-Aged", + "Ads", + "Explainer" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/pt.png", + "locale": "pt-PT", + "sort": 2, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, Product demos", + "display_name": "Duarte - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/99d89c99f7b04654b6f9cd2c72b29c66.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9cfe3785136147ea967c7632f52c8788", + "labels": [ + "Middle-Aged", + "Natural", + "Professional" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 31, + "gender": "Male", + "tags": "", + "display_name": "Benjamin - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/THfjKiRjWcaDxtDgPbyrLc.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "9d50356dea1440bd8af1dcc0f618e161", + "labels": [], + "language": "Telugu", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "te-IN", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Ads, Product demos, Explainer Videos", + "display_name": "Mohan", + "preview": { + "movio": "https://static.movio.la/voice_preview/397732203d42414e9d2eaf1b2dede0e4.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9d81087c3f9a45df8c22ab91cf46ca89", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "E-learning" + ], + "language": "Korean", + "flag": "https://static.movio.la/region_flags/kr.png", + "locale": "ko-KR", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, Product demos", + "display_name": "InJoon - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5fc1cc4036e142cb947c2ddea9007498.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9db0ca21b07f41b4b81c3961859a68f2", + "labels": [ + "Middle-Aged", + "E-learning", + "Explainer", + "News" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/sa.png", + "locale": "ar-SA", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Ads, E-learning & Presentations, Product demos, Explainer Videos, News", + "display_name": "Hamed - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/a141bbbd9eb448ceaf844f8bb0127ca6.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "9f836a90051d4fb69a8ad2065eedeed6", + "labels": [ + "Youth", + "News", + "Ads", + "E-learning", + "Narration" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 14, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Ads, Games, Audiobooks", + "display_name": "Xiaocheng - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/35191e70d9a44ac8b40e8812f94ddb18.wav" + }, + "settings": { + "style": "chat", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a04d81d19afd436db611060682276331", + "labels": [ + "Youth", + "Ads", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 30, + "gender": "Male", + "tags": "", + "display_name": "Rudi - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/4TV6LHHA5q6MArEWJN2etH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a0723adbea2f493d816dfeeea38f4a8c", + "labels": [ + "Youth", + "E-learning", + "Ads", + "Explainer" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/iq.png", + "locale": "ar-IQ", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Rana - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/27e54cdd8c8c432b8c35a1057da7ac0e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a0fc963ef6aa420c988a3292b78b9b58", + "labels": [], + "language": "Nepali", + "flag": "https://static.movio.la/region_flags/np.png", + "locale": "ne-NP", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Sagar - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/nz6zu5GXpzCmDgEDhJ4Jna.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a12d857b0424427ea109213dc373c618", + "labels": [ + "Youth", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "male", + "tags": "", + "display_name": "Kenneth - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/TMMLHLXFCCX3d9wv7pfHQJ.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "a22a7a8cd45042ad83e9bb9203e1a84b", + "labels": [ + "Professional", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 39, + "gender": "Female", + "tags": "", + "display_name": "Lily - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/9kuXwV9GzDFmNRe629mLR4.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "a5231543ed2b4e62899067faf2f783f1", + "labels": [ + "Youth", + "News", + "Audiobooks", + "Explainer" + ], + "language": "Bulgarian", + "flag": "https://static.movio.la/region_flags/bg.png", + "locale": "bg-BG", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Customer Service, Explainer Videos, E-learning & Presentations", + "display_name": "Kalina - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/2017a7173dc5493c860bfc8a378c956a.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a53be0a403ce4ae586f002ba0c125b2c", + "labels": [ + "Youth", + "Narration", + "E-learning", + "Ads" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 7, + "gender": "Male", + "tags": "Middle-Aged, Explainer Videos, E-learning & Presentations", + "display_name": "Paulo - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/226e2c7b85b2489e8dd15750dfa7e7a1.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a56a4fa01bc94c79be13f9803dfb5721", + "labels": [ + "Ads", + "Natural", + "Middle-Aged" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 13, + "gender": "Female", + "tags": "", + "display_name": "Audrey - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/FmbRdxCQTcBFnrczYfJFmD.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "a6f3eea9f3764d36a279ae810d1353c6", + "labels": [ + "Middle-Aged", + "Explainer", + "Audiobooks", + "Ads", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 18, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Tracy - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/VRz9yRAwKEaeafHP6Vfzu7.wav" + }, + "settings": { + "style": "cheerful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a72281fc65c542559bbc63d9ec5c866f", + "labels": [ + "Middle-Aged", + "Explainer", + "Audiobooks", + "E-learning" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/bh.png", + "locale": "ar-BH", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Ali - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/db8aa10aeb34419a97bf2dd6c5076a4b.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a78e0a4dbbe247d0a704b91175e6d987", + "labels": [ + "Middle-Aged", + "Natural", + "Narration" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Laia - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/PeyGSV89Txz6KZLFMgXYjT.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a9e940179c1d4a1d91e6c7c3b0fea788", + "labels": [ + "Middle-Aged", + "E-learning", + "News", + "Ads" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/ca.png", + "locale": "fr-CA", + "sort": 31, + "gender": "Male", + "tags": "Middle-Aged, News, E-learning & Presentations, Explainer Videos, Ads", + "display_name": "Jean - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/3f539950e41c476fa19722d5e5106688.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "a9fc40f6fcd5400a83d95911610d6807", + "labels": [], + "language": "Marathi", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "mr-IN", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Aarohi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/MFrQhrrxx6C3TDY9xC8QG2.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "aa73aedf00974150944a4bb19225f66e", + "labels": [ + "Middle-Aged", + "Ads", + "E-learning", + "Explainer" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 16, + "gender": "Female", + "tags": "Middle-Aged, Explainer Videos, Ads, Low-Pitched, Product demos", + "display_name": "Xiaorui - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/711a3f402ec54fb6a5620c9b49b01c3a.wav" + }, + "settings": { + "style": "calm", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "aa815b9a80534d928634cb7df4f99754", + "labels": [ + "Narration", + "Audiobooks", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 19, + "gender": "Female", + "tags": "", + "display_name": "Sophia - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/9rsAYURnjDUWN3HsnKv3i3.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "ac175cecdde2488fb0c80468cda79c50", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Explainer" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/iq.png", + "locale": "ar-IQ", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Bassel - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/45d19dc2351c42c4ab2b122185b858bb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ad5d215f61d94f91ac774478fd754cf9", + "labels": [ + "Middle-Aged", + "Explainer", + "Natural" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 10, + "gender": "Male", + "tags": "", + "display_name": "Roland - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/PDidnDJB6CHQcD6av9M4CF.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "adc699478776486997dcf2f7b1534a89", + "labels": [ + "Youth", + "Natural" + ], + "language": "Estonian", + "flag": "https://static.movio.la/region_flags/ee.png", + "locale": "et-EE", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Kert - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/mSJ6hX8j4xc7UWC8Uwe9gV.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ae3563ff1460469e89f661ffb3f1260b", + "labels": [ + "Youth", + "Narration", + "News", + "Ads" + ], + "language": "Hindi", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "hi-IN", + "sort": 2, + "gender": "Male", + "tags": "", + "display_name": "Bhavin - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/7224e9c56b234898a758421c138475b2.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "af63f654e4234682bfb7d34b08007466", + "labels": [ + "Youth", + "Narration", + "E-learning", + "Ads" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/ar.png", + "locale": "es-AR", + "sort": 6, + "gender": "Female", + "tags": "Middle-Aged, News, Explainer Videos", + "display_name": "Elena - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/6d47a68eebbb448da7afddc6a1830e7d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "afab75da785b4a42b6fcc5ad282d8fa9", + "labels": [ + "Narration", + "News", + "Middle-Aged" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "male", + "tags": "", + "display_name": "Warren-Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/X8AszKmeDFDaCA9Gkr4tqL.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "b2ddcef2b1594794aa7f3a436d8cf8f2", + "labels": [ + "Middle-Aged", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 33, + "gender": "Male", + "tags": "", + "display_name": "Keanan - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5hFXAVXkxRNHBdhvJTJJKe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b3003591331b4a3ab859bf630bf28713", + "labels": [], + "language": "Marathi", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "mr-IN", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Manohar - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/BxvKDTDGwHZb4vwgLGLYJu.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b3150d405d374dd99e569282ee68fa21", + "labels": [ + "Natural", + "Middle-Aged", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 11, + "gender": "male", + "tags": "", + "display_name": "Mason - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/8ybzJogfVPFiZL9kfUN4g3.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "b32ea9471bb74ee688b75dde1e2ae6d7", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Explainer" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 5, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Henri - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/217ccdfe1b9c4507b08f22b1c471190e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b46125eedb894e358d86210c5e11c041", + "labels": [ + "Youth", + "News", + "Explainer", + "E-learning" + ], + "language": "Bulgarian", + "flag": "https://static.movio.la/region_flags/bg.png", + "locale": "bg-BG", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Customer Service, Explainer Videos, Ads", + "display_name": "Borislav - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/391e43e0d2a147728fb047ee56347a31.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b4cfec94204242bda16ca146558b7218", + "labels": [ + "Natural", + "Explainer" + ], + "language": "Sinhala", + "flag": "https://static.movio.la/region_flags/lk.png", + "locale": "si-LK", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Sameera - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/VJ2dETkcyS7Yb57MxGJT5N.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": false, + "prosody": null, + "emphasis": "", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b4d04a4ca86b42c895844c786c9043d3", + "labels": [ + "Natural", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 9, + "gender": "male", + "tags": "", + "display_name": "Craig-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/aTXHGEV8e3iTccph2SZ4DG.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "b5052d61c5964bceaa3ff25d7b1b9e8a", + "labels": [ + "Youth", + "Explainer", + "Narration", + "E-learning" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 8, + "gender": "Male", + "tags": "Middle-Aged, Product demos, Explainer Videos", + "display_name": "Bernd - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/2dd5016033444b53a8a2307ab131d47a.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b64f2f29a2074cb7a3c0071ad3ad41bd", + "labels": [ + "Middle-Aged" + ], + "language": "Gujarati", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "gu-IN", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Niranjan - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/8pmgVwbee3X7vuM65NbgSS.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b8b6f5b6e57c40df91811e385b2725b3", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ie.png", + "locale": "en-IE", + "sort": 8, + "gender": "Male", + "tags": "", + "display_name": "Connor - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/faRVtvJziRGQEJd5PK6fiK.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b8fb879d52454ebeb1a9579797db6bd4", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/bh.png", + "locale": "ar-BH", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Laila - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/7bb84d039af7405a83bed750db78d037.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "b9953cd27740417c950f2f0db34243ad", + "labels": [ + "Youth", + "Audiobooks", + "E-learning", + "Narration", + "News" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 7, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations, Product demos", + "display_name": "Claude - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/306681b3e572434798cd6a7e68324473.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ba3b2274201d4f18b8b6888ad991bffe", + "labels": [ + "Youth", + "News", + "Ads", + "Explainer" + ], + "language": "Polish", + "flag": "https://static.movio.la/region_flags/pl.png", + "locale": "pl-PL", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Ads, Customer Service", + "display_name": "Zofia - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/d975d1831b994ab29c689800dd43b18a.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ba61b3b0a56d463dbff10eeccd3a899a", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Narration" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 7, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Josephine - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/d3d5d36675c04e97a9baf4b178dd1d76.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ba9dee2892da476b9f01c7cc659879b5", + "labels": [ + "Middle-Aged", + "Explainer", + "Natural", + "Narration" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 70, + "gender": "Female", + "tags": "", + "display_name": "Alicia - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/4iyfze9R9hx9XicM9nsBeo.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "bb50022458624d89acd48368c3119ac2", + "labels": [ + "Youth", + "Explainer", + "News", + "Narration" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 6, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations", + "display_name": "Killian - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/1b60bd820a224a4780297163df2753c6.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "bc22af81440d4212acf315103d7faf82", + "labels": [ + "Youth", + "Ads", + "Narration", + "News" + ], + "language": "Hindi", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "hi-IN", + "sort": 5, + "gender": "Female", + "tags": "", + "display_name": "Aditi - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/c8641047a84040df9e98fb3c84923f6c.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "bc69c9589d6747028dc5ec4aec2b43c3", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "Russian", + "flag": "https://static.movio.la/region_flags/ru.png", + "locale": "ru-RU", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Customer Service, Ads, Explainer Videos", + "display_name": "Dariya - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/26d8c533961f4a9daa70b5d9d1838005.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "beaa640abaa24c32bea33b280d2f5ea3", + "labels": [ + "Youth", + "Audiobooks", + "E-learning", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 16, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Johan - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/fkxNCfdkoKfopBpTtvQqAp.wav" + }, + "settings": { + "style": "hopeful", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "bef4755ca1f442359c2fe6420690c8f7", + "labels": [ + "Youth", + "Ads", + "Explainer", + "Audiobooks" + ], + "language": "Korean", + "flag": "https://static.movio.la/region_flags/kr.png", + "locale": "ko-KR", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Customer Service, Explainer Videos, E-learning & Presentations", + "display_name": "SunHi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/304a4edf4b724362902bd811b96b6443.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c028be6858d04ee79c12a2209ab47bf8", + "labels": [ + "Narration", + "Youth", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 11, + "gender": "Female", + "tags": "", + "display_name": "Hailey - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/M4XBjtiH4yaz9GQhXHtSnV.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "c089f9832fd04922b34b3d2f3661d113", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Brandon - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/maqA9fw7siQAcv2WafDz4F.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c15a2314cbc446b7b6637f44234d6836", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Narration" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/za.png", + "locale": "en-ZA", + "sort": 34, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Product demos, E-learning & Presentations", + "display_name": "Leah - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/i5bRcieHP5gHNkcQkDSzpE.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c218750e46864dba9c45b9e40fe91aef", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/au.png", + "locale": "en-AU", + "sort": 32, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Natasha - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/WXnjbGWv8ApsQncudqKfW7.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c29568d0e4a54715bb62bb40daa67875", + "labels": [ + "Middle-Aged", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 33, + "gender": "Female", + "tags": "", + "display_name": "Alison - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/ZQLzm4o75YDvt8uS33Lqbd.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "c2958d67f1e74403a0038e3445d93d50", + "labels": [ + "Youth", + "E-learning", + "Audiobooks", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 14, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Sherry - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/RGqs3H9eLfHkc3HduJXxTY.wav" + }, + "settings": { + "style": "friendly", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c29c6fdb6abe4146be2daa7929f03e41", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "Ads", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 27, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Abbi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/UcamNKnVKBJiTKVSuCGuTp.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c2ace75f65fd433f987337950e812335", + "labels": [ + "Middle-Aged", + "Narration", + "News", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/nz.png", + "locale": "en-NZ", + "sort": 6, + "gender": "Female", + "tags": "", + "display_name": " Molly - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/jEKUAyUKmX8iG4NXrCmQRC.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c516bd553fd2402e9b1696b5e5bde910", + "labels": [ + "Youth", + "News", + "E-learning", + "Narration" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 15, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Ads, Audiobooks, E-learning & Presentations", + "display_name": "Xiaohan - Peaceful", + "preview": { + "movio": "https://static.movio.la/voice_preview/8083eb25c12345c99bb90bd3d7fd88e2.wav" + }, + "settings": { + "style": "gentle", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c683b544f2b34bbfb81313e81852dd38", + "labels": [ + "Middle-Aged", + "Ads" + ], + "language": "Norwegian", + "flag": "https://static.movio.la/region_flags/no.png", + "locale": "nb-NO", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Pernille - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/SeLKqrMTHLePMP7FEK6ZaH.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c6fb81520dcd42e0a02be231046a8639", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News", + "Narration" + ], + "language": "Vietnamese", + "flag": "https://static.movio.la/region_flags/vn.png", + "locale": "vi-VN", + "sort": 1, + "gender": "Male", + "tags": "", + "display_name": "NamMinh - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/a716507b478c430580eb80f4aa8ac273.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c7b89c2854214a2f9709534a873a57ea", + "labels": [ + "Natural", + "Youth" + ], + "language": "Finnish", + "flag": "https://static.movio.la/region_flags/fi.png", + "locale": "fi-FI", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Harri - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/j6kh7pnUmir9h8RZU7aotA.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c84b984bc6394112ab95bb75e2c871e1", + "labels": [ + "Youth", + "Explainer", + "News", + "Ads" + ], + "language": "Japanese", + "flag": "https://static.movio.la/region_flags/jp.png", + "locale": "ja-JP", + "sort": 2, + "gender": "Male", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Takumi - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/5651d31a546e4976ad27427fdadf1651.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "word", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c8a9c5997593b413e48e22cd9a4d6525", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 5, + "gender": "Female", + "tags": "Young Adult, News, Youtube, Product demos", + "display_name": "Elza - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/83572cdb6b24475a82d6bcf832615d38.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "c8f228e9ead44542829eb87d51420fbf", + "labels": [ + "Narration", + "Audiobooks", + "Natural" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 9, + "gender": "Female", + "tags": "", + "display_name": "Charlotte - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/hF2vCwDV6mPojTnvvHva24.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "c9d7dad727f5433281a2fd0e8ecbb9bd", + "labels": [ + "Youth", + "Explainer", + "Ads", + "E-learning" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/ye.png", + "locale": "ar-YE", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Maryam - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/4eef28034bdf4a2e9961c8f53dc2d85d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "cac876fea7c541e7a634a9b386ee3b53", + "labels": [ + "Youth", + "Natural", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 7, + "gender": "male", + "tags": "", + "display_name": "Levi - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/XAaEPdKfrho2rmXVqi8M6M.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "cbb56828d798491e9f601a5415415e25", + "labels": [ + "Youth", + "Ads" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/mx.png", + "locale": "es-MX", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Larissa - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/Jg5MDxyd6pjrPhvPLepFdh.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "cc29d03937d14240acf109c827a9a51a", + "labels": [ + "Youth", + "News", + "Narration", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 10, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations, Product demos", + "display_name": "Aria - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/5vzP2xA79TcGpndVngHBbA.wav" + }, + "settings": { + "style": "narration-professional", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ccb30e87c6b34ca8941f88352c71612d", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 22, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Noah - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/UDzn8mZ5eKbXrQQojCVMud.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ccf05082198240f18053e57ac1dc2b5c", + "labels": [ + "Narration", + "Middle-Aged", + "Explainer", + "Professional" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 3, + "gender": "male", + "tags": "", + "display_name": "Jackson - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/Xq8odYA7oSdemnkrrNxv9K.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "cd05d8c2c52444fbbbbbe16d86734464", + "labels": [ + "Narration", + "Youth", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 17, + "gender": "male", + "tags": "", + "display_name": "Julian - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/dcvPwsn8tLtJrosBrufgxk.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "cd658f1164c1489093607163fc83ba62", + "labels": [ + "Audiobooks", + "Youth" + ], + "language": "Thai", + "flag": "https://static.movio.la/region_flags/th.png", + "locale": "th-TH", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Premwadee - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/UMArfsbGuYxonKRvtSBe9a.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "cd92a228f9bf4fb1adaa1531595cd5d4", + "labels": [ + "Middle-Aged", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 41, + "gender": "Female", + "tags": "", + "display_name": "Indira - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/H63XT8YQH7L4vupiCXGd2Z.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "cdd9ca1e09e34867a23d0cf77deb52ea", + "labels": [ + "Youth" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Isaiah - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/C9jiJXuFU4EE24csF2JUj.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ced64f6c3e56455692a04e6106db9dde", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/ch.png", + "locale": "fr-CH", + "sort": 3, + "gender": "Male", + "tags": "Young Adult, News, Product demos, Explainer Videos, Ads", + "display_name": "Fabrice - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/af486fe2ca8747538656025e556fac50.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ceebaab47af040a49edcbd27dc8f7dbe", + "labels": [ + "E-learning", + "News" + ], + "language": "Filipino", + "flag": "https://static.movio.la/region_flags/ph.png", + "locale": "fil-PH", + "sort": 2, + "gender": "Female", + "tags": "", + "display_name": "Luningnig", + "preview": { + "movio": "https://static.movio.la/voice_preview/Z2soFA5ma8KPTZnpF6XPN2.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "cfdb383951144f56a5198869636ccd17", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Narration" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos, E-learning & Presentations", + "display_name": "Antonio - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/82871b89da0d42f0bc9c64681f00ae48.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d0ba3a24e9fc49b1ae528a0dca5bf141", + "labels": [ + "Youth", + "News", + "Audiobooks", + "E-learning" + ], + "language": "Bangla", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "bn-IN", + "sort": 1, + "gender": "Male", + "tags": "News, E-learning & Presentations, Audiobooks", + "display_name": "Abhijit - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/c9a639f30d1c48d7b2fb9458c361123a.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d252ca05aabc4ed587098201f42e6172", + "labels": [ + "Middle-Aged", + "Natural" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Abril - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/T3DNmvM7x8VVuY9S64B5YU.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d2d4788928f443f5b8d6c60f201030cd", + "labels": [ + "Youth", + "Ads", + "Explainer" + ], + "language": "Dutch", + "flag": "https://static.movio.la/region_flags/nl.png", + "locale": "nl-NL", + "sort": 150, + "gender": "Female", + "tags": "", + "display_name": "Hanna - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/czaXYBZNro2An5BvAddGEa.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d2ec95840fa84bc38fcb4bf04cd12f9e", + "labels": [ + "Youth", + "News", + "Explainer", + "Audiobooks" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/qa.png", + "locale": "ar-QA", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Moaz - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/1672ce3d29b94d39bb60c6756a61ee9d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d336d17c60fe488bb7f7c16301e1d1d5", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Narration" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/fr.png", + "locale": "fr-FR", + "sort": 8, + "gender": "Male", + "tags": "Middle-Aged, News, E-learning & Presentations, Explainer Videos", + "display_name": "Maurice - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/ffe9abccec3b4b02a86684a97ee187dc.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d36f8d1c27054f7baa52c216ad874d16", + "labels": [ + "Narration", + "Youth", + "Natural", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 5, + "gender": "male", + "tags": "", + "display_name": "Alexander - Narration", + "preview": { + "movio": "https://static.movio.la/voice_preview/eSxLsT26vJFS7aomV3aX9X.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "d3edc86dcdd04011b7e5e5d27562fcf5", + "labels": [ + "Natural", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 7, + "gender": "male", + "tags": "", + "display_name": "Larry-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/5kuCRJnPiDk24gBeuNC9bi.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "d4374e1ee455465cac7600f318a84624", + "labels": [ + "Youth", + "Explainer", + "News", + "Ads" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/sy.png", + "locale": "ar-SY", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Laith - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/0ce94b0dc6fb4e6b82c4064e405a7852.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d47ae8f1b293429f9e1513ce85d482e4", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "E-learning" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 1, + "gender": "Female", + "tags": "Middle-Aged, News, Explainer Videos, E-learning & Presentations", + "display_name": "Klarissa - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/abf1df2570c944b9ab5d1ecc8aa8c763.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d5e87b3c1778488697d8c35f50ff7a28", + "labels": [ + "Games", + "Middle-Aged" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Keith - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/s9TAzfFvQ5CwT97Airbvu8.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "d5fdcfda99cd44dba12a4ea0076a7271", + "labels": [ + "Child", + "Natural" + ], + "language": "Italian", + "flag": "https://static.movio.la/region_flags/it.png", + "locale": "it-IT", + "sort": 100, + "gender": "female", + "tags": "", + "display_name": "Pierina - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/oGWBgMc6H2RntkhkkjmAhG.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": false, + "prosody": null, + "emphasis": "", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d62a0ce960434056b25c058bc4fa2509", + "labels": [ + "Middle-Aged", + "Audiobooks", + "Explainer", + "News" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/mx.png", + "locale": "es-MX", + "sort": 2, + "gender": "Male", + "tags": "Middle-Aged, News, Explainer Videos", + "display_name": "Jorge - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/3dcdbcc214864ffb830b2795dc3a25e9.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "d7bbcdd6964c47bdaae26decade4a933", + "labels": [ + "Middle-Aged", + "E-learning", + "Audiobooks", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 4, + "gender": "Male", + "tags": "Middle-Aged, Explainer Videos, News", + "display_name": "Christopher - Calm", + "preview": { + "movio": "https://static.movio.la/voice_preview/Pn2tXVGjpwyHpWTsKFj87X.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "da239df5428c67c12c3271d2a0d3b66c", + "labels": [ + "Youth", + "Ads", + "Explainer", + "News" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 6, + "gender": "Male", + "tags": "Young Adult, Ads, Product demos, Youtube, Assistant", + "display_name": "Humberto - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/cfff49b2ad534ec0bcff4fac6584c588.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "dbcfe683e60a4bed9b8957d1f5d6de98", + "labels": [ + "Youth", + "Explainer", + "Ads", + "E-learning" + ], + "language": "Italian", + "flag": "https://static.movio.la/region_flags/it.png", + "locale": "it-IT", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations", + "display_name": "Diego - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/bdc08e6dbb004af4bf395d2dd0ad8645.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "dbe43f2b612d4ffab71925ebf53a0b4f", + "labels": [ + "Youth", + "Explainer", + "Ads", + "E-learning" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/cl.png", + "locale": "es-CL", + "sort": 3, + "gender": "Female", + "tags": "Young Adult, Ads, Product demos, Explainer Videos", + "display_name": "Catalina - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/81d8ecf79e604a96a63c8619b8290d60.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "dbf999472fe147be9de01004103c21ea", + "labels": [ + "Youth", + "Explainer", + "Ads" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 7, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations, Product demos, Youtube", + "display_name": "Adriana - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/56f9ef0f038c4bc28a21ffc254bec715.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "dcf69bbbab5b41f2b75b9f86316c06c5", + "labels": [ + "Youth", + "Audiobooks", + "E-learning", + "Explainer" + ], + "language": "Hindi", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "hi-IN", + "sort": 1, + "gender": "Female", + "tags": "", + "display_name": "Aruna - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/b1303134695d4d0e8d6308ac7d22bd3e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "dd47dadb46f4b930cc760d8f3ad44fd9", + "labels": [], + "language": "Turkish", + "flag": "https://static.movio.la/region_flags/tr.png", + "locale": "tr-TR", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Ads, Product demos, Explainer Videos", + "display_name": "Emel", + "preview": { + "movio": "https://static.movio.la/voice_preview/008e01d2a6a94cfca6a4cca5951a7320.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "de6ad44022104ac0872392d1139e9364", + "labels": [ + "Youth", + "News", + "Explainer", + "E-learning", + "Audiobooks" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 0, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, Audiobooks", + "display_name": "Xiaoxin - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/6a435813c0dd43a4af272ff8fffcc959.wav" + }, + "settings": { + "style": "newscast", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "dea92eeb96984004b5a04dd656d3ef9f", + "labels": [ + "Youth", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 9, + "gender": "male", + "tags": "", + "display_name": "Dylan - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/bqCoKYFgQMFDnCvmU5BjpU.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "df1b0eaaf0cb4229b238ec530828ea83", + "labels": [ + "Professional", + "Youth" + ], + "language": "Urdu", + "flag": "https://static.movio.la/region_flags/pk.png", + "locale": "ur-PK", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Uzma - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/MXm8Z3CCfRjgngcwXiyRaN.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "dfaf1a62e9bc4616985f2bfab5a3f656", + "labels": [ + "Youth", + "Ads", + "E-learning", + "News" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/tn.png", + "locale": "ar-TN", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Explainer Videos, News, Ads, Product demos", + "display_name": "Hedi - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/a050da8d411744029d4b04a1840b25ee.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e052b69dbb6c4930a46b14960ee11dce", + "labels": [ + "Youth" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 100, + "gender": "male", + "tags": "", + "display_name": "Aryeh - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/WVB7N8TELqCX8wu6Ak7qKQ.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": null, + "lang": null, + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": null + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e17b99e1b86e47e8b7f4cae0f806aa78", + "labels": [ + "Middle-Aged", + "News", + "Explainer", + "Audiobooks" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/ca.png", + "locale": "en-CA", + "sort": 13, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Liam - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/8sg49P4MFQnpDvpRkaR6M9.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e203c4c715894385b81187f2f26ac6f9", + "labels": [ + "Middle-Aged", + "E-learning", + "Explainer", + "News" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/jo.png", + "locale": "ar-JO", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Sana - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/89057be683794a5f8e5e135465922534.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e280fba0eada0e3127e2c2a58e1206cb", + "labels": [], + "language": "Turkish", + "flag": "https://static.movio.la/region_flags/tr.png", + "locale": "tr-TR", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Ads, Product demos, Explainer Videos", + "display_name": "Ahmet", + "preview": { + "movio": "https://static.movio.la/voice_preview/9f00961fddfb4d729a83f2aca7637a67.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e2b70c60a32a4a0aa97da7eaa20c8b7e", + "labels": [ + "Youth", + "News", + "Explainer", + "Audiobooks" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/bo.png", + "locale": "es-BO", + "sort": 5, + "gender": "Male", + "tags": "Young Adult, News, E-learning & Presentations, Explainer Videos", + "display_name": "Marcelo - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/c31c34330c154856a76ec46c9d63fc6f.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e3e89b7996b94daebf8a1d6904a1bd11", + "labels": [ + "Middle-Aged", + "Narration", + "Explainer", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Wilder - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/UjH2pdBnSE2N2MV4ebFgQe.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e4878ce9b703461695bf793c0df0d2b1", + "labels": [ + "Youth", + "Ads", + "Explainer", + "E-learning" + ], + "language": "Indonesian", + "flag": "https://static.movio.la/region_flags/id.png", + "locale": "id-ID", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, Ads, Product demos, E-learning & Presentations", + "display_name": "Gadis - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/c396e01cbd894c4e997e9a96773f7e0d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e4dcfd51f07d4b93a0468a48a782b50e", + "labels": [ + "Youth", + "Ads", + "Explainer", + "Narration" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 6, + "gender": "Female", + "tags": "Young Adult, Ads, News, E-learning & Presentations", + "display_name": "Francisca - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/15ae85373431429b862e57029c3c7bf4.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e529c8c45a8347fc870adb030ffab172", + "labels": [ + "Youth", + "Natural" + ], + "language": "Malay", + "flag": "https://static.movio.la/region_flags/my.png", + "locale": "ms-MY", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Amir - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/P3C2CYa4AwimBqzzobw3Ay.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e6f941fd57e64b3ba000c53263d6ba28", + "labels": [ + "Middle-Aged", + "Explainer", + "News", + "Ads", + "Audiobooks" + ], + "language": "Dutch", + "flag": "https://static.movio.la/region_flags/nl.png", + "locale": "nl-NL", + "sort": 1, + "gender": "Female", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos,", + "display_name": "Colette - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/8WRR8WkEhViGVLAVrtwAMW.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e705f31fa48846a2b1bea49387c2c7cf", + "labels": [ + "Youth", + "News", + "Ads", + "Explainer" + ], + "language": "Greek", + "flag": "https://static.movio.la/region_flags/gr.png", + "locale": "el-GR", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, E-learning & Presentations", + "display_name": "Athina - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/19e4574154514c65ad2e647ed949fc78.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e756772fbb9b49828a9f24c8a905c58a", + "labels": [ + "Youth", + "Ads", + "Narration", + "News" + ], + "language": "Polish", + "flag": "https://static.movio.la/region_flags/pl.png", + "locale": "pl-PL", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos", + "display_name": "Agnieszka - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/e30356ac8e974425a205dbb22c4ff57e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e9472c5d7bda495d8813fb6bc757eaa3", + "labels": [ + "Youth", + "Natural", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 5, + "gender": "Female", + "tags": "", + "display_name": "Marieke - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/mVX39uo7mwzwMUxszXddPb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e9a57ec649c8e7db9d8104529374b2c3", + "labels": [ + "Middle-Aged", + "Audiobooks", + "News", + "Ads" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/br.png", + "locale": "pt-BR", + "sort": 3, + "gender": "Male", + "tags": "Middle-Aged, Engaging, Cheerful", + "display_name": "Donato - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/e6357e680feb469fbb989596e572ef4e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "e9caf49d7f8e4fbeac1919c3dee72dd5", + "labels": [ + "Natural", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "male", + "tags": "", + "display_name": "Jeffery-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/Fhr6aCxMMN76FweQrYUzL9.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "ebb3e19fb57744fbb32285fe2010d36d", + "labels": [ + "Middle-Aged", + "Natural" + ], + "language": "Danish", + "flag": "https://static.movio.la/region_flags/dk.png", + "locale": "da-DK", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Jeppe - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/R7vYzdDa9GQoefxNsgRtKG.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ec218e50cc9c4991894676a31e4804c5", + "labels": [ + "Professional", + "Youth" + ], + "language": "Romanian", + "flag": "https://static.movio.la/region_flags/ro.png", + "locale": "ro-RO", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Emil - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/emBBNYQB7xhLjpgp5L4F9q.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ec4aa6ac882147ffb679176d49f3e41f", + "labels": [ + "Middle-Aged", + "News", + "E-learning", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 12, + "gender": "Male", + "tags": "Young Adult, Ads", + "display_name": "Eric - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/QyfEredcYX3MKGkBGudZ9H.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ec971490059245d3953fd895ee37ab09", + "labels": [ + "Youth", + "Explainer" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/ec.png", + "locale": "es-ES", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Vera - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/LqxYEhqSg75meLYWG22j4d.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ee537ab51bcc475290741093bba4c426", + "labels": [ + "Youth", + "Explainer", + "E-learning", + "Audiobooks", + "Ads" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/ch.png", + "locale": "de-CH", + "sort": 3, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Leni - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/c9720a439da5474480764fb729791afb.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "eecd293e7eac4153808ed65dd1cb4daa", + "labels": [ + "Youth", + "Explainer", + "News", + "Audiobooks" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/pt.png", + "locale": "pt-PT", + "sort": 10, + "gender": "Female", + "tags": "Young Adult, News, Explainer Videos, Youtube, Product demos, E-learning & Presentations", + "display_name": "Raquel - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/c96b4c07e6414d3cb99b41fba9f659ff.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ef5765a5c2ee49e58f7dd942e67fb6f2", + "labels": [ + "Youth", + "News", + "Narration", + "Audiobooks" + ], + "language": "Hindi", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "hi-IN", + "sort": 1, + "gender": "Male", + "tags": "", + "display_name": "Jaidev - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/f76b718088c54b22bb8da12dbcb78a0f.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f10a2b62e6ec43fa9eb7078b03e2ba0d", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "News", + "Ads" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/sa.png", + "locale": "ar-SA", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Ads, E-learning & Presentations, Product demos, Explainer Videos, News", + "display_name": "Zariyah - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/86ab2c6c3d4d4e0f8d2f0f844460597e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f1b1d67bd09441589c0bb30f0c0549c9", + "labels": [ + "Youth", + "Ads", + "E-learning" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/ve.png", + "locale": "es-VE", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Paola - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/ALJsFyHFoDg6HopopwdyjS.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f2846fb5c4c04ca494b721c3fc2526d3", + "labels": [ + "Narration", + "Middle-Aged" + ], + "language": "Thai", + "flag": "https://static.movio.la/region_flags/th.png", + "locale": "th-TH", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Achara - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/8qWmNwjzU4WyEwdanT5TqP.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f2d44cfdd1dc4846ae54a01d9db9d9fe", + "labels": [ + "Middle-Aged", + "Audiobooks", + "News", + "Ads" + ], + "language": "Polish", + "flag": "https://static.movio.la/region_flags/pl.png", + "locale": "pl-PL", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, Product demos, Ads, News", + "display_name": "Marek - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/e92a6b9ce02243d98cc826179b95c5c6.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f37bfc7d0be8494c8fa103a4a47eed33", + "labels": [ + "Natural", + "Youth" + ], + "language": "Tamil", + "flag": "https://static.movio.la/region_flags/in.png", + "locale": "ta-IN", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Pallavi - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/sYBhrd5KJFYqy8cShU6VUW.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f3abd8faf9f540efb5101c1fa1bc3a35", + "labels": [ + "Natural" + ], + "language": "Croatian", + "flag": "https://static.movio.la/region_flags/hr.png", + "locale": "hr-HR", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Srecko-Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/msLHmcmT5tCoQgWHAM4mFh.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f578e0a57c0b4b46a510bcfdca45a26c", + "labels": [ + "Youth", + "Ads", + "Narration", + "News" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/dz.png", + "locale": "ar-DZ", + "sort": 1, + "gender": "Female", + "tags": "Young Adult, Ads, E-learning & Presentations, Product demos, Explainer Videos, News", + "display_name": "Amina - Newscaster", + "preview": { + "movio": "https://static.movio.la/voice_preview/936fae57e54d47e58ee1ca0d6efd6e0b.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f5a3cb4edbfc4d37b5614ce118be7bc8", + "labels": [ + "Youth", + "News", + "E-learning", + "Explainer" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/gb.png", + "locale": "en-GB", + "sort": 2, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Ryan - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/CsXU4XY7SgPPQmo6ZEtnjN.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f7658a75545d4b70b04d8784c07bd038", + "labels": [ + "Youth", + "News", + "E-learning", + "Ads" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 11, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos", + "display_name": "Lucas - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/9ex83FXgouLw6NVytasyH7.wav" + }, + "settings": { + "style": "newscast", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f86f4645a6164198a7f35c7255fcb0d1", + "labels": [ + "Ads", + "Youth" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 15, + "gender": "Male", + "tags": "", + "display_name": "Arnold - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/iSgRx3f8nZevE25EEBaH4B.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "f8d7dd6a1bea4907a41b3fa30a66530e", + "labels": [ + "Youth", + "Ads", + "E-learning" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Mattias - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/2PV8YHrZmCSicJHZUVXCwo.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "f9e6786404354cffbec42f650e9458c6", + "labels": [ + "Youth", + "Ads", + "E-learning", + "Natural" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 10, + "gender": "Male", + "tags": "", + "display_name": "Hugo - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/LXpVFuD3MkDKYRpQ8nCnbC.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fa4de0d162464cdf9311f73e83a556d7", + "labels": [ + "Middle-Aged", + "Explainer", + "Natural", + "News" + ], + "language": "Swedish", + "flag": "https://static.movio.la/region_flags/se.png", + "locale": "sv-SE", + "sort": 1, + "gender": "Male", + "tags": "", + "display_name": "Marcus - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/BvAUkFVWyJPVoCNBaQ39LD.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fa643232596a4786a26834b36df59808", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Explainer" + ], + "language": "Arabic", + "flag": "https://static.movio.la/region_flags/jo.png", + "locale": "ar-JO", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Taim - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/791a92c271244f909bd7ad89098b2176.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "face330a542b4357aa0611779c64c12f", + "labels": [ + "Middle-Aged", + "Narration" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 100, + "gender": "Male", + "tags": "", + "display_name": "Mateo - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/4KssrtgEUBeMKn7PuZkqvy.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fb3dcd1398534927a2308c3d7ee10c5b", + "labels": [ + "Middle-Aged", + "Explainer", + "Audiobooks", + "Ads", + "News" + ], + "language": "Hebrew", + "flag": "https://static.movio.la/region_flags/il.png", + "locale": "he-IL", + "sort": 1, + "gender": "Male", + "tags": "Young Adult, News, Explainer Videos, Product demos", + "display_name": "Avril - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/bwanELet7eJg5XcFtWWdCi.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fb6ff83d7319492394ab3af233cca8e3", + "labels": [ + "Youth", + "E-learning", + "Explainer", + "Ads" + ], + "language": "Italian", + "flag": "https://static.movio.la/region_flags/it.png", + "locale": "it-IT", + "sort": 2, + "gender": "Female", + "tags": "Young Adult, Explainer Videos, E-learning & Presentations", + "display_name": "Elsa - Cheerful", + "preview": { + "movio": "https://static.movio.la/voice_preview/dddad5772a66418885cf01b12333466f.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fb879a3cd2c040c8a730775b935263a1", + "labels": [ + "Middle-Aged", + "News", + "Audiobooks", + "Ads" + ], + "language": "German", + "flag": "https://static.movio.la/region_flags/de.png", + "locale": "de-DE", + "sort": 4, + "gender": "Female", + "tags": "Middle-Aged, E-learning & Presentations, Explainer Videos", + "display_name": "Elke - Warm", + "preview": { + "movio": "https://static.movio.la/voice_preview/cbaff86c906343938144258813bea682.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fba666391539492285f14ccf016b63bd", + "labels": [ + "Middle-Aged", + "Narration", + "Natural" + ], + "language": "Danish", + "flag": "https://static.movio.la/region_flags/dk.png", + "locale": "da-DK", + "sort": 100, + "gender": "Female", + "tags": "", + "display_name": "Christel - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/YXrv38tGmfPFyQjGWgzB3W.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fd26a72bd7724dbea95e4ad5db3a78bc", + "labels": [ + "Middle-Aged", + "News", + "Ads", + "Explainer" + ], + "language": "Filipino", + "flag": "https://static.movio.la/region_flags/ph.png", + "locale": "fil-PH", + "sort": 1, + "gender": "Male", + "tags": "Middle-Aged, Explainer Videos, E-learning & Presentations, Product demos", + "display_name": "Angelo - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/46aa971bb3ef4389bdb0288a475308f1.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fd6bf3b9c3254137aefbe36972c39349", + "labels": [ + "Youth", + "News", + "Narration", + "Explainer", + "E-learning" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 20, + "gender": "Female", + "tags": "Young Adult, Ads, Explainer Videos, E-learning & Presentations", + "display_name": "Jane - Serious", + "preview": { + "movio": "https://static.movio.la/voice_preview/iuocs4hoQUGTHJoLnzYYyf.wav" + }, + "settings": { + "style": "unfriendly", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fe13d29d488d4002a9a90dc1537fd544", + "labels": [ + "Youth", + "Ads", + "Narration", + "E-learning" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 9, + "gender": "Female", + "tags": "Young Adult, E-learning & Presentations, Explainer Videos", + "display_name": "Elvira - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/82563a4fa769487ea359f7ee26b506c5.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fe981119cd9c4e7fa41ba65466ef564a", + "labels": [ + "Middle-Aged", + "Professional" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 35, + "gender": "Male", + "tags": "", + "display_name": "Dean - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/w4FoYdku4M9Fp2JYmLUdrT.mp3" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": false, + "prosody": [ + "rate" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": true + }, + { + "voice_id": "feca19f2a24943b3898e8b87f1696edf", + "labels": [ + "Middle-Aged", + "News", + "Ads", + "Explainer" + ], + "language": "French", + "flag": "https://static.movio.la/region_flags/be.png", + "locale": "fr-BE", + "sort": 4, + "gender": "Female", + "tags": "Young Adult, News, Product demos, Explainer Videos", + "display_name": "Charline - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/e4f2120a63f344b39fca996f5ca00943.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "fef785686844404baff0391a67c84c1d", + "labels": [ + "Youth", + "Natural", + "Professional" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 1, + "gender": "Female", + "tags": "", + "display_name": "Estrella - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/KxdYCK6JvCHpe3ySCTUicZ.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ff465a8dab0d42c78f874a135b11d47d", + "labels": [ + "Older", + "Audiobooks", + "Narration", + "News" + ], + "language": "English", + "flag": "https://static.movio.la/region_flags/us.png", + "locale": "en-US", + "sort": 21, + "gender": "Male", + "tags": "Middle-Age,E-learning & Presentations, Product demos, Explainer Videos, News, Ads", + "display_name": "Davis - Professional", + "preview": { + "movio": "https://static.movio.la/voice_preview/MJy76NRegZK6zmnSzSn7qb.wav" + }, + "settings": { + "style": "general", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ff5719e3a6314ecea47badcbb1c0ffaa", + "labels": [ + "Middle-Aged", + "Ads", + "Explainer", + "Narration", + "News" + ], + "language": "Portuguese", + "flag": "https://static.movio.la/region_flags/pt.png", + "locale": "pt-PT", + "sort": 11, + "gender": "Female", + "tags": "", + "display_name": "Ines - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/7369fb86158d411380ba510e22de9b55.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ffb5979428d642abaa9cae60110824e3", + "labels": [ + "Youth", + "Ads", + "Narration", + "News" + ], + "language": "Spanish", + "flag": "https://static.movio.la/region_flags/es.png", + "locale": "es-ES", + "sort": 6, + "gender": "Male", + "tags": "Young Adult, Ads, E-learning & Presentations", + "display_name": "Alvaro - Natural", + "preview": { + "movio": "https://static.movio.la/voice_preview/fa873604b3344a77896b904c37735c5e.wav" + }, + "settings": { + "style": "", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + }, + { + "voice_id": "ffdbe4de35d34391830da243f2b82e13", + "labels": [ + "Youth", + "News", + "E-learning", + "Explainer" + ], + "language": "Chinese", + "flag": "https://static.movio.la/region_flags/cn.png", + "locale": "zh-CN", + "sort": 6, + "gender": "Male", + "tags": "Young Adult, News, Audiobooks, E-learning & Presentations, Explainer Videos", + "display_name": "Yunxi - Friendly", + "preview": { + "movio": "https://static.movio.la/voice_preview/db9a5f4a5a1f4cd7a39c5a675e051a51.wav" + }, + "settings": { + "style": "assistant", + "elevenlabs_settings": null + }, + "ssml": { + "style": [], + "lang": [], + "break": true, + "prosody": [ + "rate", + "pitch" + ], + "emphasis": "none", + "say_as": [] + }, + "is_customer": false, + "is_favorite": false, + "is_paid": false + } + ] + }, + "msg": null, + "message": null +} \ No newline at end of file diff --git a/run.py b/run.py deleted file mode 100644 index 0fc71ab..0000000 --- a/run.py +++ /dev/null @@ -1,5 +0,0 @@ -from streamlit.web import bootstrap - -real_s_script = 'sp1_playground.py' -real_w_script = 'wt2_playground.py' -bootstrap.run(real_s_script, f'run.py {real_s_script}', [], {})