A flask app to detect video deepfakes.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Have the following python version
Python 3.9 64-bit
A step by step series of examples that tell you how to get a development env running.
- Install the dependencies using pyinstaller from
requirements.txt
.
py -3.9-64 -m pip install -r requirements.txt
- If
dlib
doesn't install on windows the use thedlib-19.22.99-cp39-cp39-win_amd64.whl
file.
py -3.9-64 -m pip install dlib-19.22.99-cp39-cp39-win_amd64.whl
- Go to the home directory and use python 3.9 to run
main.py
.
py -3.9-64 main.py
- Use this command to send a post request with the video
curl -F [email protected] "http://127.0.0.1:5000/api"
- After a while, you will recieve this response
{
"message": "Fake",
"success": true
}