Spaces:
Paused
Paused
Commit ·
1f8e6c3
1
Parent(s): 7ac56a2
Update app.py
Browse files
app.py
CHANGED
|
@@ -133,6 +133,16 @@ iface = gr.Interface(
|
|
| 133 |
],
|
| 134 |
live=False,
|
| 135 |
title="VIDEO TRANSCRIPTION AND TRANSLATION"
|
|
|
|
|
|
|
| 136 |
)
|
| 137 |
|
| 138 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 133 |
],
|
| 134 |
live=False,
|
| 135 |
title="VIDEO TRANSCRIPTION AND TRANSLATION"
|
| 136 |
+
description="""This tool was developed by [@artificialguybr](https://twitter.com/artificialguybr) using entirely open-source tools. Special thanks to Hugging Face for the GPU support. Thanks [@yeswondwer](https://twitter.com/@yeswondwerr) for original code.""",
|
| 137 |
+
allow_flagging=False
|
| 138 |
)
|
| 139 |
|
| 140 |
+
with gr.Blocks() as demo:
|
| 141 |
+
iface.render()
|
| 142 |
+
gr.Markdown("""
|
| 143 |
+
**Note:**
|
| 144 |
+
- Video limit is 15 minute. It will do the transcription and translate of subtitles.
|
| 145 |
+
- The tool uses open-source models for all models. It's a alpha version.
|
| 146 |
+
""")
|
| 147 |
+
demo.queue(concurrency_count=1, max_size=15)
|
| 148 |
+
demo.launch()
|