Commit
·
baf63f8
1
Parent(s):
ffa3aaf
improve readme
Browse files
README.md
CHANGED
|
@@ -11,3 +11,5 @@ license: cc-by-nc-4.0
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
| 11 |
---
|
| 12 |
|
| 13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
| 14 |
+
|
| 15 |
+
A multilingual automatic speech transcription tool using [faster-whisper](https://github.com/SYSTRAN/faster-whisper). Supports translation to english and user setting of max words per line.
|
app.py
CHANGED
|
@@ -4,7 +4,7 @@ from src.transcriber import transcriber
|
|
| 4 |
def main():
|
| 5 |
with gr.Blocks(analytics_enabled=False, title='multilang-asr-transcriber') as demo:
|
| 6 |
gr.Markdown('# multilang-asr-transcriber')
|
| 7 |
-
gr.Markdown('### A multilingual automatic speech transcription tool using [faster-whisper](https://github.com/SYSTRAN/faster-whisper). Supports translation to english and user setting of max words per line.'
|
| 8 |
video_file = gr.File(file_types=["video"],type="filepath")
|
| 9 |
max_words_per_line = gr.Number(value=6, label="Max words per line")
|
| 10 |
task = gr.Dropdown(choices=["transcribe", "translate"], value="transcribe", label="Select Task")
|
|
|
|
| 4 |
def main():
|
| 5 |
with gr.Blocks(analytics_enabled=False, title='multilang-asr-transcriber') as demo:
|
| 6 |
gr.Markdown('# multilang-asr-transcriber')
|
| 7 |
+
gr.Markdown('### A multilingual automatic speech transcription tool using [faster-whisper](https://github.com/SYSTRAN/faster-whisper). Supports translation to english and user setting of max words per line.')
|
| 8 |
video_file = gr.File(file_types=["video"],type="filepath")
|
| 9 |
max_words_per_line = gr.Number(value=6, label="Max words per line")
|
| 10 |
task = gr.Dropdown(choices=["transcribe", "translate"], value="transcribe", label="Select Task")
|