mirror of
https://github.com/sd-webui/stable-diffusion-webui.git
synced 2024-12-15 07:12:58 +03:00
1117b5604a
- Added Dynamic Preview Frequency option for the txt2vid tab which tries to find the lowest value for update_preview_frequency at which we can update the preview image during generation while at the same time minimizing the impact it has in performance. - Added option to save a video file on the outputs/txt2vid-samples folder after the generation is complete similar to how the save_grid option works on other tabs. - Added a video preview which shows a video on the txt2vid tab when the generation is completed. - Formated some lines of code to make it use less space and fit on the a single screen. - Added a script called Settings.py to the script folder in which Settings for the Setting page will be placed. Empty for now.
7 lines
195 B
Python
7 lines
195 B
Python
import streamlit as st
|
|
from webui_streamlit import defaults
|
|
|
|
# The global settings section will be moved to the Settings page.
|
|
#with st.expander("Global Settings:"):
|
|
st.write("Global Settings:")
|