File size: 1,224 Bytes
3cc4a06
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import gradio as gr
from run import get_model, detect_video
from FakeVD.code_test import predict
import os
os.environ['GRADIO_TEMP_DIR'] = "../cache/"

model = get_model()
FakeVD_model = predict.get_model()

def greet(video):
    print(video, type(video))
    generated_pred = detect_video(video_path=video, model=model)
    context_pred = predict.main(FakeVD_model, video)

    generated_output = f"Fake: {generated_pred*100:.2f}%" if generated_pred > 0.5 else f"Real: {(1-generated_pred)*100:.2f}%"
    context_output = f"Fake: {context_pred*100:.2f}%" if context_pred > 0.5 else f"Real: {(1-context_pred)*100:.2f}%"
    print(generated_output, '\n', context_output)
    return generated_output, context_output

with gr.Blocks() as demo:
    gr.Markdown("# Fake Video Detector")
    with gr.Tabs():
        with gr.TabItem("Video Detect"):
            with gr.Column():
                video_input = gr.Video(height=330)
                video_button = gr.Button("detect")
                detect_output = gr.Textbox(label="AI detect result")
                context_output = gr.Textbox(label="Context detect result")

    video_button.click(greet, inputs=video_input, outputs=[detect_output, context_output])

demo.launch()