Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import numpy as np
|
2 |
import gradio as gr
|
3 |
import roop.globals
|
@@ -64,28 +66,35 @@ def swap_face(source_file, target_file, doFaceEnhancer):
|
|
64 |
# HTML code for the ad banners
|
65 |
ad_code = """
|
66 |
<div style="text-align: center;">
|
67 |
-
<iframe
|
68 |
</div>
|
69 |
"""
|
70 |
|
71 |
ad_code2 = """
|
72 |
<div style="text-align: center;">
|
73 |
<a href="https://beta.publishers.adsterra.com/referral/UNXJYTziBP" target="_blank" style="display: inline-block;">
|
74 |
-
<img
|
75 |
</a>
|
76 |
<a href="https://go.fiverr.com/visit/?bta=36184&brand=fiverrcpa&landingPage=https%253A%252F%252Fwww.fiverr.com%252Fcategories%252Fprogramming-tech%252Fai-coding%252Fai-applications%253Fsource%253Dcategory_tree" target="_blank" style="display: inline-block;">
|
77 |
-
<img
|
78 |
</a>
|
79 |
</div>
|
80 |
"""
|
81 |
|
82 |
with gr.Blocks() as app:
|
83 |
-
gr.HTML(ad_code
|
84 |
-
gr.
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
fn=swap_face,
|
86 |
-
inputs=[
|
87 |
-
outputs=
|
88 |
)
|
89 |
-
|
|
|
90 |
|
91 |
app.launch()
|
|
|
1 |
+
# -*- coding:UTF-8 -*-
|
2 |
+
# !/usr/bin/env python
|
3 |
import numpy as np
|
4 |
import gradio as gr
|
5 |
import roop.globals
|
|
|
66 |
# HTML code for the ad banners
|
67 |
ad_code = """
|
68 |
<div style="text-align: center;">
|
69 |
+
<iframe src="https://www.fiverr.com/gig_widgets?id=U2FsdGVkX1+9vQaosK0mq7xGXzIb/5hdFYIQsmHlpeMwFm5gingveDZKXBz2oJwV7ZwvToxseOx/KzKtr77ryB3qTb83/+GvCyI8OKpZcSgM0sDHzEPlZnqNeu8Db4y/IXlAceA1UcYT5Z3cW5vBLrgJ/WOpyMWSiyfwwMmGngjltQBexcivW7ukRd+/0yos7GCbfGjGdnLPHm2LB/CB9w2mA1i8cVv9LU+UUdj/O5KLRXtnychl9wAMkPTpmwMiyuAfUZy0nbK/Xa5O2UecmCvn7wicTr0TCTpLmIxaEh3YftXOVr9e36OGVYTmy5nlsgujkqJPI7wL0dXfon0ru4kvoycC7UD6m/whMoxrWZOf386qV2eEeXzk3vKO/emXUUfSavtofzSBtjLcyAOVhnHJg27PvVPgvFTQdy0o3F1M0DaHYTVW3Ln45MPYvMSH&affiliate_id=36184&strip_google_tagmanager=true" loading="lazy" data-with-title="false" class="fiverr_nga_frame" frameborder="0" height="350" width="100%" referrerpolicy="no-referrer-when-downgrade" data-mode="random_gigs" onload=" var frame = this; var script = document.createElement('script'); script.addEventListener('load', function() { window.FW_SDK.register(frame); }); script.setAttribute('src', 'https://www.fiverr.com/gig_widgets/sdk'); document.body.appendChild(script); " ></iframe>
|
70 |
</div>
|
71 |
"""
|
72 |
|
73 |
ad_code2 = """
|
74 |
<div style="text-align: center;">
|
75 |
<a href="https://beta.publishers.adsterra.com/referral/UNXJYTziBP" target="_blank" style="display: inline-block;">
|
76 |
+
<img decoding="async" alt="banner" src="https://landings-cdn.adsterratech.com/referralBanners/gif/468x120_adsterra_reff.gif">
|
77 |
</a>
|
78 |
<a href="https://go.fiverr.com/visit/?bta=36184&brand=fiverrcpa&landingPage=https%253A%252F%252Fwww.fiverr.com%252Fcategories%252Fprogramming-tech%252Fai-coding%252Fai-applications%253Fsource%253Dcategory_tree" target="_blank" style="display: inline-block;">
|
79 |
+
<img fetchpriority="high" decoding="async" width="468" height="120" src="https://ziverr.xyz/wp-content/uploads/2024/06/PASSIVE-1.gif" class="attachment-large size-large wp-image-1266" alt="">
|
80 |
</a>
|
81 |
</div>
|
82 |
"""
|
83 |
|
84 |
with gr.Blocks() as app:
|
85 |
+
gr.HTML(ad_code)
|
86 |
+
input_image1 = gr.Image()
|
87 |
+
input_image2 = gr.Image()
|
88 |
+
face_enhancer = gr.Checkbox(label="face_enhancer?", info="do face enhancer?")
|
89 |
+
output_image = gr.Image()
|
90 |
+
swap_face_button = gr.Button("Swap Face")
|
91 |
+
|
92 |
+
swap_face_button.click(
|
93 |
fn=swap_face,
|
94 |
+
inputs=[input_image1, input_image2, face_enhancer],
|
95 |
+
outputs=output_image
|
96 |
)
|
97 |
+
|
98 |
+
gr.HTML(ad_code2)
|
99 |
|
100 |
app.launch()
|