Spaces:
Sleeping
Sleeping
Update app.py (#2)
Browse files- Update app.py (ecaaa4ba11e5d53ea5ca74d2738df3fb1058d49a)
Co-authored-by: Hunter S <[email protected]>
app.py
CHANGED
@@ -7,7 +7,7 @@ import os
|
|
7 |
import firebase_admin
|
8 |
from firebase_admin import credentials, firestore
|
9 |
from datetime import datetime
|
10 |
-
import json
|
11 |
|
12 |
# Initialize Firebase
|
13 |
firebase_config = json.loads(os.environ.get('firebase_creds'))
|
@@ -15,7 +15,6 @@ cred = credentials.Certificate(firebase_config) # Your Firebase JSON key file
|
|
15 |
firebase_admin.initialize_app(cred)
|
16 |
db = firestore.client()
|
17 |
|
18 |
-
|
19 |
# Load the ASR model and processor
|
20 |
MODEL_NAME = "eleferrand/xlsr53_Amis"
|
21 |
processor = Wav2Vec2Processor.from_pretrained(MODEL_NAME)
|
@@ -43,21 +42,46 @@ def transcribe(audio_file):
|
|
43 |
|
44 |
def transcribe_both(audio_file):
|
45 |
"""
|
46 |
-
|
47 |
-
|
|
|
|
|
48 |
"""
|
|
|
49 |
transcription = transcribe(audio_file)
|
50 |
-
|
|
|
51 |
|
52 |
-
def store_correction(original_transcription, corrected_transcription):
|
53 |
"""
|
54 |
-
Stores the
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
"""
|
56 |
try:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
correction_data = {
|
58 |
'original_text': original_transcription,
|
59 |
'corrected_text': corrected_transcription,
|
60 |
-
'timestamp': datetime.now().isoformat()
|
|
|
|
|
|
|
|
|
61 |
}
|
62 |
db.collection('transcription_corrections').add(correction_data)
|
63 |
return "Correction saved successfully!"
|
@@ -67,30 +91,30 @@ def store_correction(original_transcription, corrected_transcription):
|
|
67 |
def prepare_download(audio_file, original_transcription, corrected_transcription):
|
68 |
"""
|
69 |
Prepares a ZIP file containing:
|
70 |
-
- The uploaded audio file (
|
71 |
-
-
|
72 |
-
-
|
73 |
-
Returns the
|
74 |
"""
|
75 |
if audio_file is None:
|
76 |
return None
|
77 |
|
78 |
zip_filename = "results.zip"
|
79 |
with zipfile.ZipFile(zip_filename, "w") as zf:
|
80 |
-
# Add the audio file (
|
81 |
if os.path.exists(audio_file):
|
82 |
zf.write(audio_file, arcname="audio.wav")
|
83 |
else:
|
84 |
print("Audio file not found:", audio_file)
|
85 |
|
86 |
-
#
|
87 |
orig_txt = "original_transcription.txt"
|
88 |
with open(orig_txt, "w", encoding="utf-8") as f:
|
89 |
f.write(original_transcription)
|
90 |
zf.write(orig_txt, arcname="original_transcription.txt")
|
91 |
os.remove(orig_txt)
|
92 |
|
93 |
-
#
|
94 |
corr_txt = "corrected_transcription.txt"
|
95 |
with open(corr_txt, "w", encoding="utf-8") as f:
|
96 |
f.write(corrected_transcription)
|
@@ -98,46 +122,47 @@ def prepare_download(audio_file, original_transcription, corrected_transcription
|
|
98 |
os.remove(corr_txt)
|
99 |
return zip_filename
|
100 |
|
101 |
-
# Build the Gradio Blocks interface
|
102 |
-
with gr.Blocks(
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
|
|
141 |
|
142 |
# Launch the demo
|
143 |
-
demo.launch(share=True)
|
|
|
7 |
import firebase_admin
|
8 |
from firebase_admin import credentials, firestore
|
9 |
from datetime import datetime
|
10 |
+
import json
|
11 |
|
12 |
# Initialize Firebase
|
13 |
firebase_config = json.loads(os.environ.get('firebase_creds'))
|
|
|
15 |
firebase_admin.initialize_app(cred)
|
16 |
db = firestore.client()
|
17 |
|
|
|
18 |
# Load the ASR model and processor
|
19 |
MODEL_NAME = "eleferrand/xlsr53_Amis"
|
20 |
processor = Wav2Vec2Processor.from_pretrained(MODEL_NAME)
|
|
|
42 |
|
43 |
def transcribe_both(audio_file):
|
44 |
"""
|
45 |
+
Transcribes the audio and returns:
|
46 |
+
- the original transcription (for the non-editable textbox),
|
47 |
+
- the transcription (pre-filled for the editable textbox), and
|
48 |
+
- the processing time (in seconds).
|
49 |
"""
|
50 |
+
start_time = datetime.now()
|
51 |
transcription = transcribe(audio_file)
|
52 |
+
processing_time = (datetime.now() - start_time).total_seconds()
|
53 |
+
return transcription, transcription, processing_time
|
54 |
|
55 |
+
def store_correction(original_transcription, corrected_transcription, audio_file, processing_time):
|
56 |
"""
|
57 |
+
Stores the transcriptions and additional metadata in Firestore.
|
58 |
+
Saves:
|
59 |
+
- original & corrected text,
|
60 |
+
- timestamp,
|
61 |
+
- processing time,
|
62 |
+
- audio metadata (duration & file size, if available),
|
63 |
+
- a placeholder for the audio URL, and
|
64 |
+
- the model name.
|
65 |
"""
|
66 |
try:
|
67 |
+
audio_metadata = {}
|
68 |
+
if audio_file and os.path.exists(audio_file):
|
69 |
+
# Load audio for metadata calculations
|
70 |
+
audio, sr = librosa.load(audio_file, sr=16000)
|
71 |
+
duration = librosa.get_duration(y=audio, sr=sr)
|
72 |
+
file_size = os.path.getsize(audio_file)
|
73 |
+
audio_metadata = {
|
74 |
+
'duration': duration,
|
75 |
+
'file_size': file_size
|
76 |
+
}
|
77 |
correction_data = {
|
78 |
'original_text': original_transcription,
|
79 |
'corrected_text': corrected_transcription,
|
80 |
+
'timestamp': datetime.now().isoformat(),
|
81 |
+
'processing_time': processing_time,
|
82 |
+
'audio_metadata': audio_metadata,
|
83 |
+
'audio_url': None,
|
84 |
+
'model_name': MODEL_NAME
|
85 |
}
|
86 |
db.collection('transcription_corrections').add(correction_data)
|
87 |
return "Correction saved successfully!"
|
|
|
91 |
def prepare_download(audio_file, original_transcription, corrected_transcription):
|
92 |
"""
|
93 |
Prepares a ZIP file containing:
|
94 |
+
- The uploaded audio file (as audio.wav),
|
95 |
+
- a text file with the original transcription, and
|
96 |
+
- a text file with the corrected transcription.
|
97 |
+
Returns the ZIP file's path.
|
98 |
"""
|
99 |
if audio_file is None:
|
100 |
return None
|
101 |
|
102 |
zip_filename = "results.zip"
|
103 |
with zipfile.ZipFile(zip_filename, "w") as zf:
|
104 |
+
# Add the audio file (renamed inside the zip)
|
105 |
if os.path.exists(audio_file):
|
106 |
zf.write(audio_file, arcname="audio.wav")
|
107 |
else:
|
108 |
print("Audio file not found:", audio_file)
|
109 |
|
110 |
+
# Add the original transcription as a text file
|
111 |
orig_txt = "original_transcription.txt"
|
112 |
with open(orig_txt, "w", encoding="utf-8") as f:
|
113 |
f.write(original_transcription)
|
114 |
zf.write(orig_txt, arcname="original_transcription.txt")
|
115 |
os.remove(orig_txt)
|
116 |
|
117 |
+
# Add the corrected transcription as a text file
|
118 |
corr_txt = "corrected_transcription.txt"
|
119 |
with open(corr_txt, "w", encoding="utf-8") as f:
|
120 |
f.write(corrected_transcription)
|
|
|
122 |
os.remove(corr_txt)
|
123 |
return zip_filename
|
124 |
|
125 |
+
# Build the Gradio Blocks interface with improved styling
|
126 |
+
with gr.Blocks(css="""
|
127 |
+
.container { max-width: 800px; margin: auto; }
|
128 |
+
.title { text-align: center; }
|
129 |
+
""") as demo:
|
130 |
+
with gr.Column(elem_classes="container"):
|
131 |
+
gr.Markdown("<h1 class='title'>ASR Demo with Editable Transcription</h1>")
|
132 |
+
with gr.Row():
|
133 |
+
audio_input = gr.Audio(sources=["upload", "microphone"], type="filepath", label="Upload or Record Audio")
|
134 |
+
transcribe_button = gr.Button("Transcribe Audio", variant="primary")
|
135 |
+
with gr.Row():
|
136 |
+
original_text = gr.Textbox(label="Original Transcription", interactive=False, lines=5)
|
137 |
+
corrected_text = gr.Textbox(label="Corrected Transcription", interactive=True, lines=5)
|
138 |
+
# Hidden state to hold processing time
|
139 |
+
proc_time_state = gr.State()
|
140 |
+
with gr.Row():
|
141 |
+
save_button = gr.Button("Save Correction to Database", variant="primary")
|
142 |
+
save_status = gr.Textbox(label="Save Status", interactive=False)
|
143 |
+
with gr.Accordion("Download Options", open=False):
|
144 |
+
with gr.Row():
|
145 |
+
download_button = gr.Button("Download Results (ZIP)")
|
146 |
+
download_output = gr.File(label="Download ZIP")
|
147 |
+
|
148 |
+
# Set up actions
|
149 |
+
transcribe_button.click(
|
150 |
+
fn=transcribe_both,
|
151 |
+
inputs=audio_input,
|
152 |
+
outputs=[original_text, corrected_text, proc_time_state]
|
153 |
+
)
|
154 |
+
|
155 |
+
save_button.click(
|
156 |
+
fn=store_correction,
|
157 |
+
inputs=[original_text, corrected_text, audio_input, proc_time_state],
|
158 |
+
outputs=save_status
|
159 |
+
)
|
160 |
+
|
161 |
+
download_button.click(
|
162 |
+
fn=prepare_download,
|
163 |
+
inputs=[audio_input, original_text, corrected_text],
|
164 |
+
outputs=download_output
|
165 |
+
)
|
166 |
|
167 |
# Launch the demo
|
168 |
+
demo.launch(share=True)
|