; works only for start/end and video
Browse files
app.py
CHANGED
|
@@ -1598,7 +1598,7 @@ with block:
|
|
| 1598 |
gpu_memory_preservation = gr.Slider(label="GPU Inference Preserved Memory (GB) (larger means slower)", minimum=6, maximum=128, value=6, step=0.1, info="Set this number to a larger value if you encounter OOM. Larger value causes slower speed.")
|
| 1599 |
|
| 1600 |
mp4_crf = gr.Slider(label="MP4 Compression", minimum=0, maximum=100, value=16, step=1, info="Lower means better quality. 0 is uncompressed. Change to 16 if you get black outputs. ")
|
| 1601 |
-
batch = gr.Slider(label="Batch Size (number of videos)", minimum=1, maximum=1000, value=1, step=1, info='Generate multiple videos each with a different seed')
|
| 1602 |
with gr.Row():
|
| 1603 |
randomize_seed = gr.Checkbox(label='Randomize seed', value=True, info='If checked, the seed is always different')
|
| 1604 |
seed = gr.Slider(label="Seed", minimum=0, maximum=np.iinfo(np.int32).max, step=1, randomize=True)
|
|
|
|
| 1598 |
gpu_memory_preservation = gr.Slider(label="GPU Inference Preserved Memory (GB) (larger means slower)", minimum=6, maximum=128, value=6, step=0.1, info="Set this number to a larger value if you encounter OOM. Larger value causes slower speed.")
|
| 1599 |
|
| 1600 |
mp4_crf = gr.Slider(label="MP4 Compression", minimum=0, maximum=100, value=16, step=1, info="Lower means better quality. 0 is uncompressed. Change to 16 if you get black outputs. ")
|
| 1601 |
+
batch = gr.Slider(label="Batch Size (number of videos)", minimum=1, maximum=1000, value=1, step=1, info='Generate multiple videos each with a different seed; works only for start/end and video')
|
| 1602 |
with gr.Row():
|
| 1603 |
randomize_seed = gr.Checkbox(label='Randomize seed', value=True, info='If checked, the seed is always different')
|
| 1604 |
seed = gr.Slider(label="Seed", minimum=0, maximum=np.iinfo(np.int32).max, step=1, randomize=True)
|