# 概览

在 CLORE.AI 上进行 GPU 加速的视频处理。

## 可用指南

| 工具                                                                                    | 模型变体   |
| ------------------------------------------------------------------------------------- | ------ |
| [FFmpeg NVENC](https://docs.clore.ai/guides/guides_v2-zh/shi-pin-chu-li/ffmpeg-nvenc) | GPU 编码 |
| [RIFE](https://docs.clore.ai/guides/guides_v2-zh/shi-pin-chu-li/rife-interpolation)   | 帧插值    |

## 常见任务

* **放大（Upscaling）** - [Real-ESRGAN](https://docs.clore.ai/guides/guides_v2-zh/tu-xiang-chu-li/real-esrgan-upscaling)
* **帧插值** - 使用 RIFE 将 24fps → 60fps
* **快速编码** - 使用 NVENC 提速 5-10 倍

## 快速示例

```bash
# GPU 编码
ffmpeg -i input.mp4 -c:v h264_nvenc output.mp4

# 帧插值
python rife.py --input video.mp4 --fps 60
```

## 相关指南

* [视频生成](https://docs.clore.ai/guides/guides_v2-zh/shi-pin-sheng-cheng/video-generation)
* [图像处理](https://docs.clore.ai/guides/guides_v2-zh/tu-xiang-chu-li/image-processing)


---

# 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-zh/shi-pin-chu-li/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.
