# Обзор

Аппаратно ускоренная обработка видео на CLORE.AI.

## Доступные руководства

| Инструмент                                                           | Случай использования |
| -------------------------------------------------------------------- | -------------------- |
| [FFmpeg NVENC](/guides/guides_v2-ru/obrabotka-video/ffmpeg-nvenc.md) | Кодирование на GPU   |
| [RIFE](/guides/guides_v2-ru/obrabotka-video/rife-interpolation.md)   | Интерполяция кадров  |

## Распространённые задачи

* **Апскейлинг** - [Real-ESRGAN](/guides/guides_v2-ru/obrabotka-izobrazhenii/real-esrgan-upscaling.md)
* **Интерполяция кадров** - 24 кадр/с → 60 кадр/с с помощью RIFE
* **Быстрое кодирование** - в 5–10 раз быстрее с NVENC

## Быстрые примеры

```bash
# Кодирование на GPU
ffmpeg -i input.mp4 -c:v h264_nvenc output.mp4

# Интерполяция кадров
python rife.py --input video.mp4 --fps 60
```

## Связанные руководства

* [Генерация видео](/guides/guides_v2-ru/generaciya-video/video-generation.md)
* [Обработка изображений](/guides/guides_v2-ru/obrabotka-izobrazhenii/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-ru/obrabotka-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.
