Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MogensR
/
VideoBackgroundReplacer
like
2
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
d2502a6
VideoBackgroundReplacer
/
app.py
MogensR
Update app.py
d6aa7f4
3 months ago
raw
Copy download link
history
blame
172 Bytes
#!/usr/bin/env python3
import
sys
import
os
sys.path.insert(
0
, os.path.dirname(os.path.abspath(__file__)))
from
core.app
import
main
if
__name__ ==
"__main__"
:
main()