fantaxy commited on
Commit
b01aac3
โ€ข
1 Parent(s): d6f5c03

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -34,12 +34,13 @@ translator = pipeline("translation", model="Helsinki-NLP/opus-mt-ko-en")
34
  DEBUG_MODE = False
35
 
36
  demo_examples = [
37
- ["./demo/Man Walking.mp4", "./demo/Man Walking/edited_first_frame/turn the man into darth vader.png", "man walking", 0.1, 0.1, 1.0],
38
- ["./demo/A kitten turning its head on a wooden floor.mp4", "./demo/A kitten turning its head on a wooden floor/edited_first_frame/A dog turning its head on a wooden floor.png", "A dog turning its head on a wooden floor", 0.2, 0.2, 0.5],
39
- ["./demo/An Old Man Doing Exercises For The Body And Mind.mp4", "./demo/An Old Man Doing Exercises For The Body And Mind/edited_first_frame/jack ma.png", "a man doing exercises for the body and mind", 0.8, 0.8, 1.0],
40
- ["./demo/Ballet.mp4", "./demo/Ballet/edited_first_frame/van gogh style.png", "girl dancing ballet, in the style of van gogh", 1.0, 1.0, 1.0],
41
- ["./demo/A Couple In A Public Display Of Affection.mp4", "./demo/A Couple In A Public Display Of Affection/edited_first_frame/Snowing.png", "A couple in a public display of affection, snowing", 0.3, 0.3, 1.0]
42
- ]
 
43
 
44
  TEMP_DIR = "_demo_temp"
45
 
 
34
  DEBUG_MODE = False
35
 
36
  demo_examples = [
37
+ ["./demo/Man Walking.mp4", "./demo/Man Walking/edited_first_frame/turn the man into darth vader.png", "๋‚จ์ž๋ฅผ ๋‹ค์Šค ๋ฒ ์ด๋”๋กœ ๋ณ€์‹ ์‹œํ‚ค๊ธฐ", 0.1, 0.1, 1.0],
38
+ ["./demo/A kitten turning its head on a wooden floor.mp4", "./demo/A kitten turning its head on a wooden floor/edited_first_frame/A dog turning its head on a wooden floor.png", "๋‚˜๋ฌด ๋ฐ”๋‹ฅ์—์„œ ๊ณ ๊ฐœ๋ฅผ ๋Œ๋ฆฌ๋Š” ๊ฐ•์•„์ง€", 0.2, 0.2, 0.5],
39
+ ["./demo/An Old Man Doing Exercises For The Body And Mind.mp4", "./demo/An Old Man Doing Exercises For The Body And Mind/edited_first_frame/jack ma.png", "๋ชธ๊ณผ ๋งˆ์Œ์„ ์œ„ํ•œ ์šด๋™์„ ํ•˜๋Š” ๋‚จ์ž", 0.8, 0.8, 1.0],
40
+ ["./demo/Ballet.mp4", "./demo/Ballet/edited_first_frame/van gogh style.png", "๋ฐ˜ ๊ณ ํ ์Šคํƒ€์ผ์˜ ๋ฐœ๋ ˆ๋ฅผ ์ถ”๋Š” ์†Œ๋…€", 1.0, 1.0, 1.0],
41
+ ["./demo/A Couple In A Public Display Of Affection.mp4", "./demo/A Couple In A Public Display Of Affection/edited_first_frame/Snowing.png", "๊ณต๊ณต์žฅ์†Œ์—์„œ ์• ์ •์„ ๊ณผ์‹œํ•˜๋Š” ์ปคํ”Œ, ๋ˆˆ์ด ๋‚ด๋ฆผ", 0.3, 0.3, 1.0]
42
+ ]
43
+
44
 
45
  TEMP_DIR = "_demo_temp"
46