# Descripción general

Procesamiento de video acelerado por GPU en CLORE.AI.

## Guías disponibles

| Herramienta                                                                 | Caso de uso                 |
| --------------------------------------------------------------------------- | --------------------------- |
| [FFmpeg NVENC](/guides/guides_v2-es/procesamiento-de-video/ffmpeg-nvenc.md) | Codificación por GPU        |
| [RIFE](/guides/guides_v2-es/procesamiento-de-video/rife-interpolation.md)   | Interpolación de fotogramas |

## Tareas comunes

* **Aumento de resolución** - [Real-ESRGAN](/guides/guides_v2-es/procesamiento-de-imagenes/real-esrgan-upscaling.md)
* **Interpolación de fotogramas** - 24 fps → 60 fps con RIFE
* **Codificación rápida** - 5-10x más rápido con NVENC

## Ejemplos rápidos

```bash
# Codificación por GPU
ffmpeg -i input.mp4 -c:v h264_nvenc output.mp4

# Interpolación de fotogramas
python rife.py --input video.mp4 --fps 60
```

## Guías relacionadas

* [Generación de Video](/guides/guides_v2-es/generacion-de-video/video-generation.md)
* [Procesamiento de imágenes](/guides/guides_v2-es/procesamiento-de-imagenes/image-processing.md)


---

# 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://docs.clore.ai/guides/guides_v2-es/procesamiento-de-video/video-processing.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.
