avoid repetitive log placeholder
Browse files
app.py
CHANGED
|
@@ -32,7 +32,7 @@ if run_btn and video_file:
|
|
| 32 |
st.info("Processing started. This may take several minutes depending on video length …")
|
| 33 |
# container for live log streaming
|
| 34 |
log_container = st.container()
|
| 35 |
-
log_placeholder = log_container.
|
| 36 |
|
| 37 |
# Run pipeline via subprocess to avoid blocking UI; capture logs
|
| 38 |
with st.spinner("Running Lec2Note2 pipeline …"):
|
|
|
|
| 32 |
st.info("Processing started. This may take several minutes depending on video length …")
|
| 33 |
# container for live log streaming
|
| 34 |
log_container = st.container()
|
| 35 |
+
log_placeholder = log_container.code("", language="bash", height=300)
|
| 36 |
|
| 37 |
# Run pipeline via subprocess to avoid blocking UI; capture logs
|
| 38 |
with st.spinner("Running Lec2Note2 pipeline …"):
|