Spaces:
Runtime error
Runtime error
SaladSlayer00
commited on
Commit
•
a385d52
1
Parent(s):
7346bf8
the new app with translation support, youtube and summarizaiton, pdf, tts
Browse files- app.py +112 -0
- requirements.txt +9 -0
app.py
ADDED
@@ -0,0 +1,112 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import pytube as pt
|
3 |
+
from transformers import pipeline
|
4 |
+
import os
|
5 |
+
from huggingface_hub import HfFolder
|
6 |
+
from gtts import gTTS
|
7 |
+
from fpdf import FPDF
|
8 |
+
from pdfminer.high_level import extract_text
|
9 |
+
|
10 |
+
|
11 |
+
# Initialize pipelines for transcription, summarization, and translation
|
12 |
+
transcription_pipe = pipeline(model="SaladSlayer00/another_local", token=HfFolder.get_token())
|
13 |
+
summarizer = pipeline("summarization", model="it5/it5-efficient-small-el32-news-summarization")
|
14 |
+
translator = pipeline("translation", model="Helsinki-NLP/opus-mt-it-en")
|
15 |
+
|
16 |
+
def process_audio(file_path):
|
17 |
+
text = transcription_pipe(file_path)["text"]
|
18 |
+
summary = summarizer(text, min_length=25, max_length=50)[0]["summary_text"]
|
19 |
+
translation = translator(summary)[0]["translation_text"]
|
20 |
+
return text, summary, translation
|
21 |
+
|
22 |
+
def download_youtube_audio(yt_url):
|
23 |
+
yt = pt.YouTube(yt_url)
|
24 |
+
stream = yt.streams.filter(only_audio=True).first()
|
25 |
+
file_path = stream.download(filename="temp_audio.mp3")
|
26 |
+
return file_path
|
27 |
+
|
28 |
+
def youtube_transcription(yt_url):
|
29 |
+
audio_path = download_youtube_audio(yt_url)
|
30 |
+
results = process_audio(audio_path)
|
31 |
+
os.remove(audio_path) # Clean up the downloaded file
|
32 |
+
return results
|
33 |
+
|
34 |
+
def transcribe_and_process(rec=None, file=None):
|
35 |
+
if rec is not None:
|
36 |
+
audio = rec
|
37 |
+
elif file is not None:
|
38 |
+
audio = file
|
39 |
+
else:
|
40 |
+
return "Provide a recording or a file."
|
41 |
+
|
42 |
+
return process_audio(audio)
|
43 |
+
|
44 |
+
def save_text_to_pdf(text, filename="output.pdf"):
|
45 |
+
# Create instance of FPDF class
|
46 |
+
pdf = FPDF()
|
47 |
+
|
48 |
+
# Add a page
|
49 |
+
pdf.add_page()
|
50 |
+
|
51 |
+
# Set font: Arial, bold, 12
|
52 |
+
pdf.set_font("Arial", size=12)
|
53 |
+
|
54 |
+
# Add a cell
|
55 |
+
pdf.multi_cell(0, 10, text)
|
56 |
+
|
57 |
+
# Save the pdf with name .pdf
|
58 |
+
pdf.output(filename)
|
59 |
+
|
60 |
+
return filename
|
61 |
+
|
62 |
+
|
63 |
+
def pdf_to_text(file_path):
|
64 |
+
text = extract_text(file_path)
|
65 |
+
audio_file = "tts_audio.wav"
|
66 |
+
myobj = gTTS(text=text, lang='en', slow=False)
|
67 |
+
myobj.save(audio_file)
|
68 |
+
return audio_file
|
69 |
+
|
70 |
+
def audio_to_pdf(file_path):
|
71 |
+
text, summary, translation = process_audio(file_path)
|
72 |
+
pdf_file = save_text_to_pdf(translation)
|
73 |
+
tts_audio_file = pdf_to_text(pdf_file) # Generate TTS audio from the PDF
|
74 |
+
return translation, pdf_file, tts_audio_file
|
75 |
+
|
76 |
+
def pdf_to_audio(file_path):
|
77 |
+
text = extract_text(file_path)
|
78 |
+
myobj = gTTS(text=text, lang='en', slow=False)
|
79 |
+
audio_file = "output_audio.wav"
|
80 |
+
myobj.save(audio_file)
|
81 |
+
return audio_file
|
82 |
+
|
83 |
+
app = gr.Blocks()
|
84 |
+
|
85 |
+
with app:
|
86 |
+
gr.Markdown("### Whisper Small Italian Transcription, Summarization, and Translation")
|
87 |
+
gr.Markdown("Talk, upload an audio file or enter a YouTube URL for processing.")
|
88 |
+
|
89 |
+
with gr.Tab("Audio Processing"):
|
90 |
+
with gr.Row():
|
91 |
+
audio_input = gr.Audio(label="Upload Audio or Record", type="filepath")
|
92 |
+
audio_process_button = gr.Button("Process Audio")
|
93 |
+
audio_transcription, audio_summary, audio_translation = gr.Textbox(label="Transcription"), gr.Textbox(label="Summary"), gr.Textbox(label="Translation")
|
94 |
+
audio_process_button.click(fn=transcribe_and_process, inputs=audio_input, outputs=[audio_transcription, audio_summary, audio_translation])
|
95 |
+
|
96 |
+
|
97 |
+
with gr.Tab("YouTube Processing"):
|
98 |
+
with gr.Row():
|
99 |
+
yt_input = gr.Textbox(label="YouTube URL")
|
100 |
+
yt_process_button = gr.Button("Process YouTube Video")
|
101 |
+
yt_transcription, yt_summary, yt_translation = gr.Textbox(label="Transcription"), gr.Textbox(label="Summary"), gr.Textbox(label="Translation")
|
102 |
+
yt_process_button.click(fn=youtube_transcription, inputs=yt_input, outputs=[yt_transcription, yt_summary, yt_translation])
|
103 |
+
|
104 |
+
with gr.Tab("Italian Audio to English PDF"):
|
105 |
+
with gr.Row():
|
106 |
+
audio_input = gr.Audio(label="Upload Italian Audio", type="filepath")
|
107 |
+
translate_process_button = gr.Button("Translate and Save as PDF")
|
108 |
+
translation_textbox, pdf_download, tts_audio = gr.Textbox(label="Translation"), gr.File(label="Download PDF"), gr.Audio(label="TTS Audio")
|
109 |
+
translate_process_button.click(fn=audio_to_pdf, inputs=audio_input, outputs=[translation_textbox, pdf_download, tts_audio])
|
110 |
+
|
111 |
+
|
112 |
+
(app.launch())
|
requirements.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio
|
2 |
+
pytube
|
3 |
+
transformers
|
4 |
+
os
|
5 |
+
huggingface_hub
|
6 |
+
gtts
|
7 |
+
fpdf
|
8 |
+
pdfminer
|
9 |
+
pdfminer-six
|