Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

How to run a Red Hat-powered local AI audio transcription

March 25, 2026
Seth Kenlon
Related topics:
Artificial intelligenceLinuxOpen sourcePythonSecurity
Related products:
Red Hat AI InferenceRed Hat AIRed Hat Enterprise Linux

    In my opinion, one of the best use cases of AI is audio transcription. As a wordsmith by nature, I'm frequently disappointed by generative AI, but I find AI inference extremely useful. I consider it the missing component between the input you provide and the input you actually mean to provide. This is useful for speech recordings, where background noise, microphone dynamics, or poor compression can distort words. AI inference is able to infer the most probable meaning of what otherwise is difficult to hear.

    However, audio transcription as a service presents a potential privacy risk since it requires sending your audio file to an external server. I will demonstrate how, with just a few Python and Git commands, you can easily run a local audio transcription application, powered by an open source training model from Red Hat AI. Once installed, you can use it without an Internet connection because it's entirely local, and your audio never leaves your computer.

    How to set up and run the application

    Open a terminal, and follow along.

    First install uv. The uv application is a Python package manager like the Python pip module, but with many additional features.

    Download the install script as follows:

    $ curl -LsSf https://astral.sh/uv/install.sh -O

    Review the script and then run it:

    $ bash ./install.sh

    Create a virtual environment

    Create a Python virtual environment for your work.

    $ uv venv --seed whisper-example

    Next install the whisper application:

    $ uv pip install whisper

    Install the HuggingFace repository tool to make it easy to obtain new AI models.

    uv tool install hf

    Download the model

    Red Hat has tested and validated the RedHatAI/whisper-large-v3-turbo-FP8-dynamic model for performance and accuracy. This is one of the models you can run on the Red Hat AI Inference Server, which provides a supported open source solution that allows you to deploy your AI models on a variety of hardware and AI accelerators to match your specific infrastructure needs.

    You can download the model from its HuggingFace repository using the hf tool:

    $ hf download RedHatAI/whisper-large-v3-turbo-FP8-dynamic

    The model size is about 1 GB. When the download is complete, you will receive the location of the model as follows:

    Download complete: : 0.00B [00:00, ?B/s]
    /home/tux/.cache/huggingface/hub/models--RedHatAI--whisper-large-v3-turbo-FP8-dynamic/snapshots/e72a6dca29d039a5c9ea13e622e496ca61e85c34

    Take note of the model location for the next step.

    Transcribe the audio

    Now that you have installed Whisper and a Red Hat AI model, you can transcribe an audio file. Keep in mind that you must activate your Python virtual environment before using this install of Whisper. Unless you've closed your terminal window during this install and setup process, the virtual environment is still active.

    Assuming you have an audio recording called example.flac, you can transcribe it by providing Whisper the base path to the Red Hat model and the audio file.

    $ whisper --model_dir ~/.cache/huggingface/hub/models--RedHatAI--whisper-large-v3-turbo-FP8-dynamic ~/example.flac

    Example output:

    Detecting language using up to the first 30 seconds. Use `--language` to specify the language
    Detected language: English
    
    [00:00.000 --> 00:10.200] This is a test of the Whisper and Red Hat AI combination running on my Red Hat Enterprise Linux laptop.

    Next steps

    Open source AI allows you to keep your data and computing local. Using familiar tools on Red Hat Enterprise Linux and Fedora Linux, you can implement your own in-house audio transcription service. If you're a Python programmer, you can even use the Red Hat models with your applications. 

    Visit Red Hat AI on HuggingFace for more information about the available models. Check out the Red Hat AI Inference Server page to learn how you can deploy AI-powered applications.

    Related Posts

    • From local prototype to enterprise production: Private speech transcription with Whisper and Red Hat AI

    • Speech-to-text with Whisper and Red Hat AI Inference Server

    • Estimate GPU memory for LLM fine-tuning with Red Hat AI

    • Why vLLM is the best choice for AI inference today

    Recent Posts

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    • Preventing GPU waste: A guide to JIT checkpointing with Kubeflow Trainer on OpenShift AI

    • How to manage TLS certificates used by OpenShift GitOps operator

    What’s up next?

    Open source AI for developers share image

    Open source AI for developers

    Red Hat
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.