I2V-VIP / app.py
dayona's picture
fix video MIME type paths in showcase.html, update allowed_paths in app.py, and optimize tab layout in ui.py
364038a
Raw
History Blame Contribute Delete
360 Bytes
import spaces
import os
from ui import create_ui, CSS
demo = create_ui()
if __name__ == "__main__":
demo.queue().launch(
ssr_mode=False,
server_name="0.0.0.0",
server_port=7860,
css=CSS,
allowed_paths=["sample", ".storage_lokal", "/data", "/data/sample", os.path.abspath("sample")],
show_error=True,
)