# Instalar Faster Whisper en Windows

Para utilizar Faster Whisper en Windows es necesario instalar algunos componentes básicos.&#x20;

1. [Instalar Python 3.8+](#instalar-python-3.8)
2. [Instalar FFmpeg](#instalar-ffmpeg)
3. [Instalar Faster Whisper](#instalar-faster-whisper)

## Instalar Python 3.8+

Faster Whisper es un paquete escrito en Python. Se necesita tener Python instalado para poder ejecutar el código y gestionar las dependencias.&#x20;

{% hint style="success" %}
Se recomienda usar Python 3.8 o superior para asegurar la compatibilidad con las librerías actuales.
{% endhint %}

**Descargar desde la store de Microsoft**

<https://apps.microsoft.com/detail/9nrwmjp3717k?ocid=webpdpshare>

**Verificar versión en Command Prompt, PowerShell o terminal:**

{% code fullWidth="false" %}

```
python --version
```

{% endcode %}

***

## Instalar FFmpeg

FFmpeg es una herramienta esencial para procesar archivos de audio y video. Faster Whisper lo utiliza para convertir y manejar archivos de audio en diferentes formatos, facilitando así la transcripción de audios desde múltiples fuentes.

**Descargar FFmpeg desde su página oficial:**

<https://ffmpeg.org/download.html>

***

## Instalar Faster Whisper

Faster Whisper es una implementación optimizada de Whisper (modelo de transcripción automática de OpenAI). Es la herramienta para convertir archivos de audio a texto. Se instala como paquete de Python.

**Instalar Faster Whisper usando el terminal:**

{% code fullWidth="false" %}

```
pip install faster-whisper
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dojo.lkmx.io/faster-whisper/instalar-faster-whisper-en-windows.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
