# Timecode Video e Frame Rate

Un timecode è una quantità di tempo nel formato ora:minuto:secondo:frame, comunemente usato nel montaggio video. Dovresti specificare il frame rate desiderato (fps) quando crei un timecode.

Puoi aggiungere/rimuovere unità di tempo o frame da un timecode

```
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
```

Oppure convertire un timecode in una quantità di frame, o da una quantità di frame in un timecode

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

Sommare i timecode tra loro e sottrarli l'uno dall'altro

```
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" %}
• Quando si sommano o si sottraggono timecode, è necessario specificare il frame rate desiderato solo per uno dei timecode nell'operazione

• L'altro timecode utilizzerà automaticamente il frame rate specificato
{% endhint %}

{% hint style="info" %}
• Se non specifichi un frame rate desiderato quando crei un timecode, verrà utilizzato un frame rate predefinito di **24 fps** (comunemente usato nella produzione cinematografica)

• Puoi sovrascrivere il frame rate predefinito definendo una **variabile globale** definita in termini di **fps**

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

### Frame e fps

Eseguire calcoli utilizzando unità di frame e fps (frame/secondo)

```
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/it/riferimento-sintassi/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.
