semakoc hunterschep commited on
Commit
2a0048a
·
verified ·
1 Parent(s): 8e3a22d

Update app.py (#2)

Browse files

- Update app.py (ecaaa4ba11e5d53ea5ca74d2738df3fb1058d49a)


Co-authored-by: Hunter S <[email protected]>

Files changed (1) hide show
  1. app.py +81 -56
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
- Calls the transcribe function and returns the transcription
47
- for both the original (read-only) and the corrected (editable) textboxes.
 
 
48
  """
 
49
  transcription = transcribe(audio_file)
50
- return transcription, transcription
 
51
 
52
- def store_correction(original_transcription, corrected_transcription):
53
  """
54
- Stores the original and corrected transcription in Firestore.
 
 
 
 
 
 
 
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 (saved as audio.wav)
71
- - A text file with the original transcription
72
- - A text file with the corrected transcription
73
- Returns the path to the ZIP file.
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 (saved as audio.wav in the zip)
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
- # Create and add the original transcription file
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
- # Create and add the corrected transcription file
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() as demo:
103
- gr.Markdown("# ASR Demo with Editable Transcription, Firestore Storage, and Download")
104
-
105
- with gr.Row():
106
- audio_input = gr.Audio(sources=["upload", "microphone"], type="filepath", label="Upload or Record Audio")
107
- transcribe_button = gr.Button("Transcribe Audio")
108
-
109
- with gr.Row():
110
- # The original transcription is displayed (non-editable)
111
- original_text = gr.Textbox(label="Original Transcription", interactive=False)
112
- # The corrected transcription is pre-filled with the original, but remains editable.
113
- corrected_text = gr.Textbox(label="Corrected Transcription", interactive=True)
114
-
115
- save_button = gr.Button("Save Correction to Database")
116
- save_status = gr.Textbox(label="Save Status", interactive=False)
117
-
118
- download_button = gr.Button("Download Results (ZIP)")
119
- download_output = gr.File(label="Download ZIP")
120
-
121
- # When the transcribe button is clicked, update both textboxes with the transcription.
122
- transcribe_button.click(
123
- fn=transcribe_both,
124
- inputs=audio_input,
125
- outputs=[original_text, corrected_text]
126
- )
127
-
128
- # When the "Save Correction" button is clicked, store the corrected transcription in Firestore.
129
- save_button.click(
130
- fn=store_correction,
131
- inputs=[original_text, corrected_text],
132
- outputs=save_status
133
- )
134
-
135
- # When the download button is clicked, package the audio file and both transcriptions into a zip.
136
- download_button.click(
137
- fn=prepare_download,
138
- inputs=[audio_input, original_text, corrected_text],
139
- outputs=download_output
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)