Hey 👋, this weekly update contains the latest info on our new product features, tutorials, and our community.
🇨🇳🇮🇳🇷🇺 Multilingual Speech-to-Text
AssemblyAI now supports transcription across 20+ languages, including Chinese, Hindi, Russian, Turkish, and Vietnamese. Check out a full list of supported languages in the docs and test them out live on AssemblyAI's playground.
Take a look at the AssemblyAI changelog for the latest accuracy and product improvements made by our team.
🚀AssemblyAI Node SDK 2.0
We’re thrilled to release version 2.0 of our TypeScript / Node SDK!
Built from the ground up with TypeScript, this release boasts tons of improvements and a simplified interface for seamless interaction with the AssemblyAI API. Check out the full tutorial for code examples on asynchronous, real-time transcription and LeMUR.
Transcribe an audio or video file:
import AssemblyAI from "assemblyai";
const client = new AssemblyAI({
apiKey: process.env.ASSEMBLYAI_API_KEY,
})
const transcript = await client.transcripts.create({
audio_url: './news.mp4',
})
console.log(transcript.text)
Learn how to transcribe audio by following this step-by-step guide.
Featured News
Stay updated with our latest features, interviews and more on Discord, Twitter and LinkedIn.
- Rivet announced the new AssemblyAI integration in its latest release.
- Dylan Fox was interviewed on Accel's new AI podcast series.
Fresh From Our Blog
Building with Automatic Speech Recognition (ASR) models: Why accuracy matters: Why does accuracy matter when building with Automatic Speech Recognition (ASR) models? In this article, we answer this question and explore real-world ASR applications. Read more>>
How to use audio data in LlamaIndex with Python: Get a step-by-step guide on how to integrate audio files into LlamaIndex and construct a robust LLM-driven search engine. Read more>>
How DALL-E 2 Actually Works: Learn more about OpenAI's DALL-E 2 model and the newest release DALL-E 3 with this in-depth article. Read more>>
Our Trending YouTube Tutorials
5 Lines of Python Code to Create Video Subtitles: Learn how to use the AssemblyAI Python SDK to generate subtitles with time stamps for any video.
Build LlamaIndex Audio Apps with Python in 5 minutes: Learn how to load audio data with LlamaIndex and create an AI audio app that can answer your questions using LlamaIndex and AssemblyAI's new data reader integration.
How to Remove Personal Data from your Audio with AI: Learn how to censor sensitive information in audio data using AssemblyAI's Personally Identifiable Information redaction model.