Commit
·
b4145ab
1
Parent(s):
5293275
app.py: add google play badge
Browse files
app.py
CHANGED
|
@@ -18,11 +18,22 @@ script_dir = os.path.dirname(os.path.abspath(__file__))
|
|
| 18 |
def main():
|
| 19 |
logging.basicConfig(level=logging.INFO)
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
with gr.Blocks() as demo:
|
| 22 |
gr.Markdown(
|
| 23 |
"""
|
| 24 |
<h1 align="center">Balacoon🦝 Voice Conversion</h1>
|
| 25 |
|
|
|
|
| 26 |
Welcome to the live demo of Balacoon's Voice Conversion service.
|
| 27 |
Check out our [website](https://balacoon.com/demo/#voice-conversion)
|
| 28 |
to learn more.
|
|
@@ -41,6 +52,7 @@ def main():
|
|
| 41 |
[[email protected]](mailto:[email protected])
|
| 42 |
"""
|
| 43 |
)
|
|
|
|
| 44 |
|
| 45 |
with gr.Row():
|
| 46 |
with gr.Column(variant="panel"):
|
|
|
|
| 18 |
def main():
|
| 19 |
logging.basicConfig(level=logging.INFO)
|
| 20 |
|
| 21 |
+
badges = """
|
| 22 |
+
<div style="display: flex">
|
| 23 |
+
<span style="margin-right: 5px">
|
| 24 |
+
|
| 25 |
+
[<img src="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png" width="200" height="77">](https://play.google.com/store/apps/details?id=com.app.vc)
|
| 26 |
+
|
| 27 |
+
</span>
|
| 28 |
+
</div>
|
| 29 |
+
"""
|
| 30 |
+
|
| 31 |
with gr.Blocks() as demo:
|
| 32 |
gr.Markdown(
|
| 33 |
"""
|
| 34 |
<h1 align="center">Balacoon🦝 Voice Conversion</h1>
|
| 35 |
|
| 36 |
+
|
| 37 |
Welcome to the live demo of Balacoon's Voice Conversion service.
|
| 38 |
Check out our [website](https://balacoon.com/demo/#voice-conversion)
|
| 39 |
to learn more.
|
|
|
|
| 52 |
[[email protected]](mailto:[email protected])
|
| 53 |
"""
|
| 54 |
)
|
| 55 |
+
gr.Markdown(badges)
|
| 56 |
|
| 57 |
with gr.Row():
|
| 58 |
with gr.Column(variant="panel"):
|