# ビデオタイムコードとフレームレート

タイムコードは、hour:minute:second:framesの形式で表される時間量であり、ビデオ編集で一般的に使用されます。タイムコードを作成する際は、希望のフレームレート（fps）を指定する必要があります。

タイムコードから時間単位やフレームを足したり引いたりできます。

```
03:10:20:05 at 30 fps + 50 frames                 | 03:10:21:25
00:10:20:50 @ 60 fps + 10 minutes                 | 00:20:20:50
3h 2m 25s 10 frames at 24 fps + 1 hour 12 minutes | 04:14:25:10
```

または、タイムコードをフレーム量に変換したり、フレーム量からタイムコードに変換したりできます。

```
00:30:10:00 @ 24 fps in frames | 43,440 frames
43,440 frames @ 24 fps         | 00:30:10:00
```

タイムコードを足し合わせたり、引き算したりできます。

```
03:10:20:05 @ 30 fps + 03:10:20:010 | 06:20:40:15
03:10:20:05 at 12 fps - 00:20:35:00 | 02:49:45:05
```

{% hint style="info" %}
• タイムコードの加算または減算を行う際、操作のタイムコードのうち一方の希望フレームレートを指定するだけで十分です

• もう一方のタイムコードは、指定されたフレームレートが自動的に使用されます
{% endhint %}

{% hint style="info" %}
• タイムコードを作成する際に希望のフレームレートを指定しない場合、デフォルトのフレームレートとして**24 fps**（映画制作で一般的に使用される）が使用されます

• **fps**の観点から定義された**グローバル変数**を定義することで、デフォルトのフレームレートを上書きできます

<img src="/files/8Pdnqd3ZAZLUptHXo6U7" alt="" data-size="original">
{% endhint %}

### フレームとfps

フレームとfps（フレーム/秒）の単位を使用して計算を実行します。

```
30 fps × 3 minutes    | 5,400 frames
15.6k frames / 24 fps | 650 s
```


---

# 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://documentation.soulver.app/ja/rifarensu/time/video-timecode-and-frame-rates.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.
