Spaces:
Running
on
Zero
Running
on
Zero
File size: 4,285 Bytes
0a63786 |
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
bg_samples = [
'demo/clean_bg_extracted/22/frames/0000.png',
'demo/clean_bg_extracted/23/frames/0000.png',
'demo/clean_bg_extracted/27/frames/0000.png',
'demo/clean_bg_extracted/33/frames/0000.png',
'demo/clean_bg_extracted/47/frames/0000.png',
'demo/clean_bg_extracted/39/frames/0000.png',
'demo/clean_bg_extracted/59/frames/0000.png',
'demo/clean_bg_extracted/55/frames/0000.png',
'demo/clean_bg_extracted/58/frames/0000.png',
'demo/clean_bg_extracted/57/frames/0000.png', #42
'demo/clean_bg_extracted/8/frames/0000.png',
'demo/clean_bg_extracted/9/frames/0000.png',
'demo/clean_bg_extracted/10/frames/0000.png',
'demo/clean_bg_extracted/14/frames/0000.png',
'demo/clean_bg_extracted/62/frames/0000.png'
] # 准备大概 15 个 background视频
background_conditioned_examples = [
[
"demo/clean_fg_extracted/14/cropped_video.mp4",
"demo/clean_bg_extracted/22/cropped_video.mp4",
"beautiful woman, cinematic lighting",
"Use Background Video",
512,
768,
12345,
"static_fg_sync_bg_visualization_fy/14_22_100fps.mp4",
],
[
"demo/clean_fg_extracted/14/cropped_video.mp4",
"demo/clean_bg_extracted/55/cropped_video.mp4",
"beautiful woman, cinematic lighting",
"Use Background Video",
512,
768,
12345,
"static_fg_sync_bg_visualization_fy/14_55_100fps.mp4",
],
[
"demo/clean_fg_extracted/15/cropped_video.mp4",
"demo/clean_bg_extracted/27/cropped_video.mp4",
"beautiful woman, cinematic lighting",
"Use Background Video",
512,
768,
12345,
"static_fg_sync_bg_visualization_fy/15_27_100fps.mp4",
],
[
"demo/clean_fg_extracted/18/cropped_video.mp4",
"demo/clean_bg_extracted/23/cropped_video.mp4",
"beautiful woman, cinematic lighting",
"Use Background Video",
512,
768,
12345,
"static_fg_sync_bg_visualization_fy/18_23_100fps.mp4",
],
# [
# "demo/clean_fg_extracted/18/cropped_video.mp4",
# "demo/clean_bg_extracted/33/cropped_video.mp4",
# "beautiful woman, cinematic lighting",
# "Use Background Video",
# 512,
# 768,
# 12345,
# "static_fg_sync_bg_visualization_fy/18_33_100fps.mp4",
# ],
[
"demo/clean_fg_extracted/22/cropped_video.mp4",
"demo/clean_bg_extracted/39/cropped_video.mp4",
"beautiful woman, cinematic lighting",
"Use Background Video",
512,
768,
12345,
"static_fg_sync_bg_visualization_fy/22_39_100fps.mp4",
],
# [
# "demo/clean_fg_extracted/22/cropped_video.mp4",
# "demo/clean_bg_extracted/59/cropped_video.mp4",
# "beautiful woman, cinematic lighting",
# "Use Background Video",
# 512,
# 768,
# 12345,
# "static_fg_sync_bg_visualization_fy/22_59_100fps.mp4",
# ],
[
"demo/clean_fg_extracted/9/cropped_video.mp4",
"demo/clean_bg_extracted/8/cropped_video.mp4",
"beautiful woman, cinematic lighting",
"Use Background Video",
512,
768,
12345,
"static_fg_sync_bg_visualization_fy/9_8_100fps.mp4",
],
[
"demo/clean_fg_extracted/9/cropped_video.mp4",
"demo/clean_bg_extracted/9/cropped_video.mp4",
"beautiful woman, cinematic lighting",
"Use Background Video",
512,
768,
12345,
"static_fg_sync_bg_visualization_fy/9_9_100fps.mp4",
],
[
"demo/clean_fg_extracted/9/cropped_video.mp4",
"demo/clean_bg_extracted/10/cropped_video.mp4",
"beautiful woman, cinematic lighting",
"Use Background Video",
512,
768,
12345,
"static_fg_sync_bg_visualization_fy/9_10_100fps.mp4",
],
# [
# "demo/clean_fg_extracted/9/cropped_video.mp4",
# "demo/clean_bg_extracted/14/cropped_video.mp4",
# "beautiful woman, cinematic lighting",
# "Use Background Video",
# 512,
# 768,
# 12345,
# "static_fg_sync_bg_visualization_fy/9_14_100fps.mp4",
# ],
]
|