Spaces:
Runtime error
Runtime error
File size: 1,661 Bytes
ff32559 afe7ae2 c00a822 e222aea afe7ae2 39fd3f0 846cf91 c00a822 c035be9 f02e809 c00a822 bbbecb9 ab68c73 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
from transformers import pipeline
import gradio as gr
import os
import deepl
import openai
from pytube import YouTube
TARGET_LANG = "EN-GB"
deepl_key = os.environ.get('DEEPL_KEY')
translator = deepl.Translator(deepl_key)
pipe = pipeline(model="torileatherman/whisper_small_sv") # change to "your-username/the-name-you-picked"
def transcribe(audio):
text_sv = pipe(audio)["text"]
print(f"Audio transcribed: {text_sv}")
text_en = translator.translate_text(text_sv, target_lang=TARGET_LANG).text
print(f"Text translated: {text_en}")
return text_sv, text_en
def transcribe_url(url):
youtube = YouTube(str(url))
audio = youtube.streams.filter(only_audio=True).first().download('yt_video')
text_sv = pipe(audio)["text"]
text_en = translator.translate_text(text_sv, target_lang=TARGET_LANG).text
return text_sv, text_en
url_demo = gr.Interface(
fn=transcribe_url,
inputs="text",
outputs=[gr.Textbox(label="Transcribed text"),
gr.Textbox(label="English translation")],
title="Swedish video speech to english text",
description="Transcribing swedish video to text and translating to english!",
)
voice_demo = gr.Interface(
fn=transcribe,
inputs=gr.Audio(source="microphone", type="filepath"),
outputs=[gr.Textbox(label="Transcribed text"),
gr.Textbox(label="English translation")],
title="Swedish recorded speech to english text",
description="Transcribing swedish speech to text and translating to english!",
)
demo = gr.TabbedInterface([url_demo, voice_demo], ["Swedish YouTube Video to English Text", "Swedish Audio to English Text"])
demo.launch() |