
ElevenLabs
Founded Year
2022Stage
Incubator/Accelerator | AliveTotal Raised
$101MMosaic Score The Mosaic Score is an algorithm that measures the overall financial health and market potential of private companies.
+9 points in the past 30 days
About ElevenLabs
ElevenLabs focuses on artificial intelligence in the domain of voice generation technology. It specializes in creating text-to-speech software that allows users to generate voiceovers in multiple languages and voices. The company's technology is utilized to make content more accessible and enjoyable for diverse audiences. It was founded in 2022 and is based in New York.
Loading...
ESPs containing ElevenLabs
The ESP matrix leverages data and analyst insight to identify and rank leading companies in a given technology landscape.
The generative AI — voice synthesis & cloning market offers a range of solutions for creating and enhancing audio content. These solutions use artificial intelligence to generate realistic voices, clone existing voices, and provide tools for editing and publishing audio content. This market is particularly relevant for marketers and creators who want to save time and money on voiceover work, or wh…
ElevenLabs named as Leader among 13 other companies, including Descript, Voicemod, and Respeecher.
ElevenLabs's Products & Differentiators
AI Dubbing + Studio
automatically dub videos across 29 languages while preserving the original voices in translation. Edit transcripts, translations and time codes.
Loading...
Research containing ElevenLabs
Get data-driven expert analysis from the CB Insights Intelligence Unit.
CB Insights Intelligence Analysts have mentioned ElevenLabs in 2 CB Insights research briefs, most recently on Aug 23, 2024.


Mar 21, 2024 report
$1B+ Market Map: The world’s 1,229 unicorn companies in one infographicExpert Collections containing ElevenLabs
Expert Collections are analyst-curated lists that highlight the companies you need to know in the most important technology spaces.
ElevenLabs is included in 7 Expert Collections, including Unicorns- Billion Dollar Startups.
Unicorns- Billion Dollar Startups
1,249 items
Digital Content & Synthetic Media
2,270 items
The Synthetic Media collection includes companies that use artificial intelligence to generate, edit, or enable digital content under all forms, including images, videos, audio, and text, among others.
AI 100
100 items
Generative AI 50
50 items
CB Insights' list of the 50 most promising private generative AI companies across the globe.
Generative AI
940 items
Companies working on generative AI applications and infrastructure.
AI 100 (2024)
100 items
Latest ElevenLabs News
Oct 11, 2024
by October 11th, 2024 Too Long; Didn't Read This tutorial shows you how to automatically generate visuals and voiceovers for short videos based on any script. You'll use OpenAI, ElevenLabs, and MoviePy to create videos for YouTube or TikTok. The tutorial will help you create engaging videos for educational content, storytelling, or meme videos. Are you looking to create engaging faceless short videos for platforms like YouTube or TikTok but want to avoid the hassle of complex video editing? This article will walk you through how to automate the entire process using OpenAI, ElevenLabs, and MoviePy. By the end of this tutorial, you'll know how to automatically generate visuals and voiceovers for short videos based on any script. Whether you’re creating educational content, storytelling, or meme videos, this workflow will save you tons of time. Prerequisites API keys for both OpenAI (for generating visuals) and ElevenLabs (for voiceovers). Basic Python knowledge. Step 1: Setting Up API Keys import openaifrom elevenlabs import ElevenLabs# Set up your OpenAI and ElevenLabs API keysopenai.api_key = "your_openai_api_key"elevenlabs_client = ElevenLabs(api_key="your_elevenlabs_api_key") Start by getting API keys from OpenAI and ElevenLabs . Replace the placeholders in the code with your actual API keys. Step 2: Preparing the Script Your video starts with a story or script. You can replace the story_script variable with the text you want to turn into a video. Here’s an example script about Dogecoin: story_script = """Dogecoin began as a joke in 2013, inspired by the popular 'Doge' meme featuring a Shiba Inu dog. It unexpectedly gained a massive following thanks to its community's charitable initiatives, eventually evolving into a legitimate cryptocurrency with support from Elon Musk.""" The script will be split into sentences to match each visual and audio segment. Step 3: Generating Images with OpenAI’s DALL-E For each sentence, we generate a corresponding image using OpenAI’s DALL-E model. def generate_image_from_text(sentence, context, idx): prompt = f"Generate an image without any text that describes: {sentence}. Context: {context}" response = openai.images.generate( model="dall-e-3", prompt=prompt, size="1024x1792", response_format="b64_json" ) image_filename = f"images/image_{idx}.jpg" with open(image_filename, "wb") as f: f.write(base64.b64decode(response.data[0].b64_json)) return image_filename This function sends each sentence to DALL-E and saves the generated image. We ensure the generated visuals match the video's theme. Step 4: Generating Voiceovers with ElevenLabs Once we have the visuals, we need voiceovers. ElevenLabs converts each sentence into speech. def generate_audio_from_text(sentence, idx): audio = elevenlabs_client.text_to_speech.convert( voice_id="pqHfZKP75CvOlQylNhV4", model_id="eleven_multilingual_v2", text=sentence, voice_settings=VoiceSettings(stability=0.2, similarity_boost=0.8) ) audio_filename = f"audio/audio_{idx}.mp3" with open(audio_filename, "wb") as f: for chunk in audio: f.write(chunk) return audio_filename This function generates an audio file for each sentence. You can select different voice settings to customize the narration style. Step 5: Combining Audio and Video Next, we pair each image with its corresponding voiceover using MoviePy: from moviepy.editor import ImageClip, AudioFileClipimage_clip = ImageClip(image_path, duration=audio_clip.duration)image_clip = image_clip.set_audio(audio_clip)video_clips.append(image_clip.set_fps(30)) Each image is displayed for the duration of its audio clip, ensuring synchronization. Step 6: Applying Video Effects To make the video more dynamic, we apply zoom and fade effects to each image. For example, the apply_zoom_in_center effect slowly zooms into the center of the image: def apply_zoom_in_center(image_clip, duration): return image_clip.resize(lambda t: 1 + 0.04 * t) Other effects include zooming in from the upper part or zooming out. These effects are applied randomly to each clip to keep the video visually engaging. Step 7: Final Video Assembly We combine all video clips into one seamless video and add background music: final_video = concatenate_videoclips(video_clips, method="compose")final_video.write_videofile(output_video_path, codec="libx264", audio_codec="aac", fps=30) Step 8: Adding Captions Captions improve video accessibility and engagement. We use Captacity to automatically add captions based on the audio. captacity.add_captions( video_file=output_video_path, output_file="captioned_video.mp4", font_size=130, font_color="yellow", stroke_width=3) Step 9: Adding Background Music To finish the video, background music is added. The volume is reduced so that it doesn't overpower the narration. background_music = AudioFileClip(music_filename).subclip(0, final_video.duration).volumex(0.2)narration_audio = final_video.audio.volumex(1.5)combined_audio = CompositeAudioClip([narration_audio, background_music])final_video.set_audio(combined_audio) Conclusion
ElevenLabs Frequently Asked Questions (FAQ)
When was ElevenLabs founded?
ElevenLabs was founded in 2022.
Where is ElevenLabs's headquarters?
ElevenLabs's headquarters is located at 169 Madison Avenue, New York.
What is ElevenLabs's latest funding round?
ElevenLabs's latest funding round is Incubator/Accelerator.
How much did ElevenLabs raise?
ElevenLabs raised a total of $101M.
Who are the investors of ElevenLabs?
Investors of ElevenLabs include Disney Accelerator, Daniel Gross, Andreessen Horowitz, Nat Friedman, SV Angel and 12 more.
Who are ElevenLabs's competitors?
Competitors of ElevenLabs include OpenAI, Respeecher, Resemble AI, SpeechLab, PlayHT and 7 more.
What products does ElevenLabs offer?
ElevenLabs's products include AI Dubbing + Studio and 4 more.
Loading...
Compare ElevenLabs to Competitors

Respeecher specializes in artificial intelligence voice cloning technology within the creative and business sectors. The company offers services such as speech-to-speech and text-to-speech conversions, enabling the creation of authentic AI voices for various applications. It caters to industries such as film and television production, animation, game development, and customer support, providing voice solutions that enhance projects and services. The company was founded in 2017 and is based in Burbank, California.

Voicemod specializes in voice-changing technology, operating in the audio tools industry. The company offers a voice changer and soundboard that allows users to modify their voice and add custom sound effects, suitable for use in games, communication desktop apps, and streaming platforms. Its primary customer base includes gamers, content creators, and virtual tubers. It was founded in 2014 and is based in Valencia, Spain.

Replica Studios uses artificial intelligence to create games, films, music, and other media with access to "Replica" voice actors on demand. It was founded in 2018 and is based in Brisbane, Australia.

Murf AI is a company that focuses on artificial intelligence in the audio technology industry. The company offers a versatile AI voice generator that converts text to speech, creating lifelike voice overs in a variety of languages. This service is primarily used by content creators, educators, marketers, and businesses in sectors such as e-learning, advertising, and customer support. It was founded in 2020 and is based in Salt Lake City, Utah.
Altered focuses on artificial intelligence (AI) in the digital audio content creation industry. The company offers services including voice changing for media production and real-time communication, premium text-to-speech, voice cloning, AI voice cleaning, and voice editing. Altered primarily serves the media production and communication industries. It was founded in 2018 and is based in London, United Kingdom.

Podcastle is a web-based platform that specializes in podcast creation and audio content production. The company offers tools for recording, editing, enhancing, transcribing, and publishing podcasts, utilizing AI technology to simplify these processes. Podcastle primarily serves content creators, educators, and businesses in the digital media and podcasting sectors. It was founded in 2020 and is based in Middletown, Delaware.
Loading...