File size: 2,495 Bytes
3b81d2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
48
49
50
51
52
53
import { ClapMediaOrientation } from "@aitube/clap"

import { LayoutName } from "."

export type LayoutSettings = {
  panel: number
  orientation: ClapMediaOrientation
  width: number
  height: number
}

export const layouts: Record<LayoutName, LayoutSettings[]> = {
  random: [],
  Layout0: [
    { panel: 0, orientation: ClapMediaOrientation.SQUARE, width: 1024, height: 1024 },
    { panel: 1, orientation: ClapMediaOrientation.SQUARE, width: 1024, height: 1024 },
    { panel: 2, orientation: ClapMediaOrientation.SQUARE, width: 1024, height: 1024 },
    { panel: 3, orientation: ClapMediaOrientation.SQUARE, width: 1024, height: 1024 },
  ],
  Layout1: [
    { panel: 0, orientation: ClapMediaOrientation.LANDSCAPE, width: 1024, height: 768 },
    { panel: 1, orientation: ClapMediaOrientation.PORTRAIT, width: 768, height: 1024 },
    { panel: 2, orientation: ClapMediaOrientation.PORTRAIT, width: 768, height: 1024 },
    { panel: 3, orientation: ClapMediaOrientation.LANDSCAPE, width: 1024, height: 768 },
  ],
  Layout2: [
    { panel: 0, orientation: ClapMediaOrientation.PORTRAIT, width: 768, height: 1024 },
    { panel: 1, orientation: ClapMediaOrientation.PORTRAIT, width: 768, height: 1024 },
    { panel: 2, orientation: ClapMediaOrientation.PORTRAIT, width: 512, height: 1024 },
    { panel: 3, orientation: ClapMediaOrientation.LANDSCAPE, width: 1024, height: 768 },
  ],
  Layout3: [
    { panel: 0, orientation: ClapMediaOrientation.LANDSCAPE, width: 1024, height: 768 },
    { panel: 1, orientation: ClapMediaOrientation.PORTRAIT, width: 768, height: 1024 },
    { panel: 2, orientation: ClapMediaOrientation.PORTRAIT, width: 768, height: 1024 },
    { panel: 3, orientation: ClapMediaOrientation.LANDSCAPE, width: 1024, height: 768 },
  ],
  Layout4: [
    { panel: 0, orientation: ClapMediaOrientation.PORTRAIT, width: 512, height: 1024 },
    { panel: 1, orientation: ClapMediaOrientation.LANDSCAPE, width: 1024, height: 768 },
    { panel: 2, orientation: ClapMediaOrientation.PORTRAIT, width: 768, height: 1024 },
    { panel: 3, orientation: ClapMediaOrientation.LANDSCAPE, width: 1024, height: 512 },
  ],
}
/*
Layout5: [
  { panel: 0, orientation: ClapMediaOrientation.SQUARE, width: 1024, height: 1024 },
  { panel: 1, orientation: ClapMediaOrientation.SQUARE, width: 1024, height: 1024 },
  { panel: 2, orientation: ClapMediaOrientation.SQUARE, width: 1024, height: 1024 },
  { panel: 3, orientation: ClapMediaOrientation.SQUARE, width: 1024, height: 1024 },
]
*/