Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      May 16, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      May 16, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      May 16, 2025

      How To Prevent WordPress SQL Injection Attacks

      May 16, 2025

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025

      Bing Search APIs to be “decommissioned completely” as Microsoft urges developers to use its Azure agentic AI alternative

      May 16, 2025

      Microsoft might kill the Surface Laptop Studio as production is quietly halted

      May 16, 2025

      Minecraft licensing robbed us of this controversial NFL schedule release video

      May 16, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The power of generators

      May 16, 2025
      Recent

      The power of generators

      May 16, 2025

      Simplify Factory Associations with Laravel’s UseFactory Attribute

      May 16, 2025

      This Week in Laravel: React Native, PhpStorm Junie, and more

      May 16, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025
      Recent

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025

      Bing Search APIs to be “decommissioned completely” as Microsoft urges developers to use its Azure agentic AI alternative

      May 16, 2025

      Microsoft might kill the Surface Laptop Studio as production is quietly halted

      May 16, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»Artificial Intelligence»Announcing the AssemblyAI integration for LiveKit

    Announcing the AssemblyAI integration for LiveKit

    December 20, 2024

    Announcing the AssemblyAI integration for LiveKit

    LiveKit is a powerful platform for building real-time audio and video applications. They build on top of WebRTC to abstract away the complicated details of building real-time applications, allowing developers to rapidly build and deploy applications for video conferencing, livestreaming, interactive virtual events, and more.

    Today, we’re excited to announce that AssemblyAI’s Streaming Speech-to-Text API is now available as an integration for LiveKit. This integration allows you to easily add real-time transcription to your LiveKit applications, enabling a wide range of use cases such as live captioning, transcription, and more.



    0:00
    /0:15



    The integration is part of LiveKit’s AI Agents framework. Once you instantiate an AssemblyAI agent with assemblyai.STT(), you can create a stream that allows your agent to send audio to and receive transcripts from AssemblyAI’s Streaming Speech-to-Text API in real-time.

    From there you can do things like log the transcriptions on the server, or display them in your frontend application:

    async def transcribe_track(participant: rtc.RemoteParticipant, track: rtc.Track):
        audio_stream = rtc.AudioStream(track)
    
        stt_impl = assemblyai.STT()
        stt_stream = stt_impl.stream()
    
        stt_forwarder = transcription.STTSegmentsForwarder(
            room=ctx.room, participant=participant, track=track
        )
    
        # Run tasks for audio input and transcription output in parallel
        # You decide what to do upon receiving transcriptions
        await asyncio.gather(
            _handle_audio_input(audio_stream, stt_stream),
            _handle_transcription_output(stt_stream, stt_forwarder),
        )
    

    Check out our blog on How to add real-time Speech-to-Text to your LiveKit application to learn how you can start integrating AssemblyAI’s Streaming Speech-to-Text API with LiveKit today, or go directly to the Agent repository to check out the code.

    You can browse all of our integrations on the Integrations page of our Docs.

    Source: Read More 

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleMIT engineers grow “high-rise” 3D chips
    Next Article How to build a LiveKit app with real-time Speech-to-Text

    Related Posts

    Machine Learning

    LLMs Struggle with Real Conversations: Microsoft and Salesforce Researchers Reveal a 39% Performance Drop in Multi-Turn Underspecified Tasks

    May 17, 2025
    Machine Learning

    This AI paper from DeepSeek-AI Explores How DeepSeek-V3 Delivers High-Performance Language Modeling by Minimizing Hardware Overhead and Maximizing Computational Efficiency

    May 17, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    Trinity-2-Codestral-22B and Tess-3-Mistral-Large-2-123B Released: Pioneering Open Source Advances in Computational Power and AI Integration

    Development

    Intel says PC gaming handhelds are its “number one priority” — can Arrow/Panther Lake chips challenge AMD’s dominance?

    News & Updates

    This AI Paper from Apple Introduces a Weakly-Supervised Pre-Training Method for Vision Models Using Publicly Available Web-Scale Image-Text Data

    Development

    SonicWall Patches 3 Flaws in SMA 100 Devices Allowing Attackers to Run Code as Root

    Development

    Highlights

    Tech & Work

    Fewer Ideas: An Unconventional Approach To Creativity

    May 15, 2025

    What do the Suez Canal, the Roman Goddess Libertas, and ancient Egyptian sculptures have in…

    transgender – minimalistic terminal file explorer

    December 31, 2024

    Patchwork Hackers Target Bhutan with Advanced Brute Ratel C4 Tool

    July 26, 2024

    Microsoft AI CEO: Copilot users can access “OpenAI’s world-class o1 reasoning model” for free following backlash over previously degraded user experience by insiders

    January 30, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.