Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
tonyassi/video-face-swap
PHAKPAPHON
/
video-face-swap
like
0
Runtime error
App
Files
Files
Community
147a8ee
video-face-swap
/
del.py
tonyassi
Upload 96 files
9ae3d29
about 1 year ago
raw
Copy download link
history
blame
Safe
186 Bytes
import
shutil
import
gradio
as
gr
def
delt
(
text
):
txt = text
shutil.rmtree(
"./output"
)
return
"Removed successfully..."
gr.Interface(delt,
"text"
,
"text"
).launch(debug=
True
)