1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| export const simpleVideoData = { video: "/public/files/opossum_intro.webm" };
|
| export const simpleVideoConfig = `<View>
| <Video name="video" value="$video" />
| <VideoRectangle name="box" toName="video" />
| <Labels name="tag" toName="video">
| <Label value="Label 1" background="green" hotkey="1"/>
| <Label value="Label 2" background="blue" hotkey="2"/>
| </Labels>
| </View>`;
|
| export const simpleVideoResult = [
| {
| value: {
| framesCount: 131,
| duration: 5.425,
| sequence: [
| {
| frame: 1,
| enabled: true,
| rotation: 0,
| x: 20.54721030042918,
| y: 15.665236051502147,
| width: 58.90557939914163,
| height: 68.6695278969957,
| time: 0.041666666666666664,
| },
| {
| x: 20.54721030042918,
| y: 15.665236051502147,
| width: 58.90557939914163,
| height: 68.6695278969957,
| rotation: 0,
| enabled: false,
| frame: 3,
| time: 0.125,
| },
| ],
| labels: ["Label 1"],
| },
| id: "RRxnu061g3",
| from_name: "box",
| to_name: "video",
| type: "videorectangle",
| origin: "manual",
| },
| ];
|
|