2024-07-08 22:43:50 +02:00
|
|
|
---
|
|
|
|
title: Time
|
|
|
|
---
|
|
|
|
|
2024-07-09 22:49:57 +02:00
|
|
|
<script>
|
|
|
|
import { CalendarClock } from 'lucide-svelte';
|
|
|
|
import Time from '$lib/components/toolbar/tools/Time.svelte';
|
2024-07-10 15:09:52 +02:00
|
|
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
2024-07-09 22:49:57 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
# <CalendarClock size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
|
|
|
|
2024-07-10 15:09:52 +02:00
|
|
|
This tool allows you to change or add timestamps to a trace.
|
2024-07-19 23:47:04 +02:00
|
|
|
You simply need to use the form shown below and validate it when you are done.
|
2024-07-10 15:09:52 +02:00
|
|
|
|
2024-07-09 22:49:57 +02:00
|
|
|
<div class="flex flex-row justify-center">
|
|
|
|
<Time class="text-foreground p-3 border rounded-md shadow-lg" />
|
2024-07-10 15:09:52 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
When you edit the speed, the moving time is adapted accordingly in the form, and vice versa.
|
|
|
|
Similarly, when you edit the start time, the end time is updated to keep the same total duration, and vice versa.
|
|
|
|
|
|
|
|
<DocsNote>
|
2024-07-19 23:47:04 +02:00
|
|
|
When using this tool with existing timestamps, changing the time or speed will simply shift, stretch, or compress them accordingly.
|
2024-07-10 15:09:52 +02:00
|
|
|
</DocsNote>
|