jbilcke-hf HF staff commited on
Commit
6997aba
·
1 Parent(s): 2caff2e

skip some less popular video sequences from the db

Browse files
Files changed (3) hide show
  1. database.json +4 -0
  2. src/index.mts +5 -0
  3. src/types.mts +1 -0
database.json CHANGED
@@ -4,6 +4,7 @@
4
  "sequences": [
5
  {
6
  "sequenceId": "0489dbc6-791c-4cb8-97f6-ada01092fa91",
 
7
  "lastGenerationAt": "",
8
  "videoPrompt": "a movie documentary about various animals from Africa, savannah, dramatic camera movements, various types of herbivores and predators, various types of sun and lighting effects, close-ups, and lighting effects, mist, haze or fog effect, golden hour light, god's rays, cinematic, imax, movie, film grain",
9
  "audioPrompt": "ambient deep house, drum machine, synth",
@@ -294,6 +295,7 @@
294
  },
295
  {
296
  "sequenceId": "4be04d0c-6a33-45af-96cf-3ac91c279325",
 
297
  "lastGenerationAt": "",
298
  "videoPrompt": "a western movie, featuring herds and cattle, buffalo.. grazing in the mist, dust, cowboys going around, lot of shots of beautiful wild horses, cowboys going arounds, then groups of cowboys going in the plains, canyons, deserts, very intense and dramatic lighting, lot of dramatic camera movements (like rotations, traveling, drone etc), tons of mist, haze and fogs, but mostly in golden hour light or early evening or morning, god's rays etc. (add the keywords 'cinematic', 'imax', 'movie', 'film grain')",
299
  "audioPrompt": "ambient deep house, drum machine, synth",
@@ -3164,6 +3166,7 @@
3164
  },
3165
  {
3166
  "sequenceId": "f35847fe-c1fd-4416-92d0-f43555f39105",
 
3167
  "lastGenerationAt": "",
3168
  "videoPrompt": "a movie about a police car chase in Los Angeles",
3169
  "audioPrompt": "ambient deep house, drum machine, synth",
@@ -4658,6 +4661,7 @@
4658
  },
4659
  {
4660
  "sequenceId": "7c5c6bf0-36be-4a0d-803f-e7af4e054c7f",
 
4661
  "lastGenerationAt": "",
4662
  "videoPrompt": "a real movie about sportcars traveling in various environments",
4663
  "audioPrompt": "soundtrack of a movie about a car race, fast-paced, energic",
 
4
  "sequences": [
5
  {
6
  "sequenceId": "0489dbc6-791c-4cb8-97f6-ada01092fa91",
7
+ "skip": true,
8
  "lastGenerationAt": "",
9
  "videoPrompt": "a movie documentary about various animals from Africa, savannah, dramatic camera movements, various types of herbivores and predators, various types of sun and lighting effects, close-ups, and lighting effects, mist, haze or fog effect, golden hour light, god's rays, cinematic, imax, movie, film grain",
10
  "audioPrompt": "ambient deep house, drum machine, synth",
 
295
  },
296
  {
297
  "sequenceId": "4be04d0c-6a33-45af-96cf-3ac91c279325",
298
+ "skip": true,
299
  "lastGenerationAt": "",
300
  "videoPrompt": "a western movie, featuring herds and cattle, buffalo.. grazing in the mist, dust, cowboys going around, lot of shots of beautiful wild horses, cowboys going arounds, then groups of cowboys going in the plains, canyons, deserts, very intense and dramatic lighting, lot of dramatic camera movements (like rotations, traveling, drone etc), tons of mist, haze and fogs, but mostly in golden hour light or early evening or morning, god's rays etc. (add the keywords 'cinematic', 'imax', 'movie', 'film grain')",
301
  "audioPrompt": "ambient deep house, drum machine, synth",
 
3166
  },
3167
  {
3168
  "sequenceId": "f35847fe-c1fd-4416-92d0-f43555f39105",
3169
+ "skip": true,
3170
  "lastGenerationAt": "",
3171
  "videoPrompt": "a movie about a police car chase in Los Angeles",
3172
  "audioPrompt": "ambient deep house, drum machine, synth",
 
4661
  },
4662
  {
4663
  "sequenceId": "7c5c6bf0-36be-4a0d-803f-e7af4e054c7f",
4664
+ "skip": true,
4665
  "lastGenerationAt": "",
4666
  "videoPrompt": "a real movie about sportcars traveling in various environments",
4667
  "audioPrompt": "soundtrack of a movie about a car race, fast-paced, energic",
src/index.mts CHANGED
@@ -63,6 +63,11 @@ const main = async () => {
63
  continue
64
  }
65
 
 
 
 
 
 
66
  console.log(`
67
  -----------------------------------------------------------
68
  Going to generate ${sequence.shots.length} for prompt:
 
63
  continue
64
  }
65
 
66
+ // some sequences can also be skipped by human curation
67
+ if (sequence.skip) {
68
+ continue
69
+ }
70
+
71
  console.log(`
72
  -----------------------------------------------------------
73
  Going to generate ${sequence.shots.length} for prompt:
src/types.mts CHANGED
@@ -8,6 +8,7 @@ export interface Shot {
8
 
9
  export interface Sequence {
10
  sequenceId: string
 
11
  lastGenerationAt: string
12
  videoPrompt: string
13
  audioPrompt: string
 
8
 
9
  export interface Sequence {
10
  sequenceId: string
11
+ skip: boolean
12
  lastGenerationAt: string
13
  videoPrompt: string
14
  audioPrompt: string