victorisgeek commited on
Commit
8999357
β€’
1 Parent(s): 2db40fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -70,16 +70,16 @@ thresholds = []
70
 
71
  with gr.Blocks() as demo:
72
  with gr.Row():
73
- gr.Markdown("# πŸŽƒ FaceSwap Lite")
74
  with gr.Row():
75
- video=gr.Video(label=u"Original Video, foramt mp4",format="mp4")
76
- video2=gr.Video(label=u"Refaced Video",interactive=False,format="mp4")
77
 
78
  for i in range(0,num_faces):
79
  with gr.Tab(u"Face #" + f"{i+1}"):
80
  with gr.Row():
81
- origin.append(gr.Image(label=u"The face we are replacing"))
82
- destination.append(gr.Image(label=u"What do we replace it with?"))
83
  with gr.Row():
84
  thresholds.append(gr.Slider(label=u"Transparency",minimum=0.0,maximum=1.0,value=0.2))
85
  with gr.Row():
 
70
 
71
  with gr.Blocks() as demo:
72
  with gr.Row():
73
+ gr.Markdown("# πŸŽƒ FaceSwap Lite πŸŽƒ")
74
  with gr.Row():
75
+ video=gr.Video(label=u"πŸ–₯️ Target Video,foramt mp4",format="mp4")
76
+ video2=gr.Video(label=u"🎞️ Target Video",interactive=False,format="mp4")
77
 
78
  for i in range(0,num_faces):
79
  with gr.Tab(u"Face #" + f"{i+1}"):
80
  with gr.Row():
81
+ origin.append(gr.Image(label=u"🎯 Target Face from Video"))
82
+ destination.append(gr.Image(label=u"πŸ“Έ Source Face"))
83
  with gr.Row():
84
  thresholds.append(gr.Slider(label=u"Transparency",minimum=0.0,maximum=1.0,value=0.2))
85
  with gr.Row():