File size: 545 Bytes
f62b8d3
 
 
 
 
1f122c3
 
 
f62b8d3
 
 
 
 
ac7030c
f62b8d3
1f122c3
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


// TODO:
// this is obsolete, we should search on the Hugging Face platform instead

export const videoCategoriesWithLabels = {
 // "random": "Random",
  // "lofi": "Lofi Hip-Hop",
  "Sports": "Sports",
  "Education": "Education",
  "Time Travel": "Time Travel", // vlogs etc
  // "gaming": "Gaming",
  // "trailers": "Trailers",
  // "aitubers": "AiTubers",
  // "ads": "100% Ads",
}

export type VideoCategory = keyof typeof videoCategoriesWithLabels

export const videoCategories = Object.keys(videoCategoriesWithLabels) as VideoCategory[]