You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
问题原因:
VideoLingo-main\core\step1_ytdlp.py : 86 会删除 output/output 开头的文件
step1_ytdlp.py : 86 video_files = [file for file in video_files if not file.startswith("output/output")]
st.rerun() 后 file_uploader() 依旧返回 已上传的文件
可能原因:
after the file is uploaded via file_uploader, it should persist as file_uploader widget value / session_state during reruns, until the user deletes it manually.
参考链接:streamlit/streamlit#7097
问题描述:
在windows中 上传 output 开头的文件(如,output_01.mp4),导致网页卡在Running。
问题原因:
VideoLingo-main\core\step1_ytdlp.py : 86 会删除 output/output 开头的文件
step1_ytdlp.py : 86
video_files = [file for file in video_files if not file.startswith("output/output")]
导致 download_video_section.py:14 的 find_video_files() 抛异常。
且由于未知原因,streamlit的st.file_uploader() 在 rerun() 后依旧 返回uploaded_file.
导致 循环执行 st.rerun()
The text was updated successfully, but these errors were encountered: