Spaces:
Running
Running
Touch up
Browse files
app.py
CHANGED
@@ -104,7 +104,7 @@ def main():
|
|
104 |
.header-logo-left {
|
105 |
display: block;
|
106 |
margin-right: auto;
|
107 |
-
width:
|
108 |
}
|
109 |
.header-title {
|
110 |
text-align: center;
|
@@ -215,7 +215,7 @@ def main():
|
|
215 |
<p style='text-align: center; font-size: 1.1rem;'>
|
216 |
DiffMorpher is used for keyframe generation by default, with FILM for interpolation.
|
217 |
Optionally, you can enable LCM-LoRA for accelerated inference (with slight decrease in quality).
|
218 |
-
Upload two images, optionally provide
|
219 |
</p>
|
220 |
<hr>
|
221 |
""",
|
@@ -310,7 +310,7 @@ def main():
|
|
310 |
# Left Column: Keyframe Generator Parameters
|
311 |
with col_left:
|
312 |
st.markdown("##### Keyframe Generator Parameters")
|
313 |
-
num_frames = st.number_input("Number of keyframes (2–
|
314 |
lcm_default = preset_lcm if preset_lcm is not None else False
|
315 |
enable_lcm_lora = st.checkbox(
|
316 |
"Enable LCM-LoRA",
|
|
|
104 |
.header-logo-left {
|
105 |
display: block;
|
106 |
margin-right: auto;
|
107 |
+
width: 200px;
|
108 |
}
|
109 |
.header-title {
|
110 |
text-align: center;
|
|
|
215 |
<p style='text-align: center; font-size: 1.1rem;'>
|
216 |
DiffMorpher is used for keyframe generation by default, with FILM for interpolation.
|
217 |
Optionally, you can enable LCM-LoRA for accelerated inference (with slight decrease in quality).
|
218 |
+
Upload two images, optionally provide descriptions, and fine-tune the settings to create a smooth, high-quality morphing video.
|
219 |
</p>
|
220 |
<hr>
|
221 |
""",
|
|
|
310 |
# Left Column: Keyframe Generator Parameters
|
311 |
with col_left:
|
312 |
st.markdown("##### Keyframe Generator Parameters")
|
313 |
+
num_frames = st.number_input("Number of keyframes (2–30)", min_value=2, max_value=30, value=18)
|
314 |
lcm_default = preset_lcm if preset_lcm is not None else False
|
315 |
enable_lcm_lora = st.checkbox(
|
316 |
"Enable LCM-LoRA",
|