Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -20,7 +20,7 @@ def process_meeting(api_key, topic, audio_file):
|
|
| 20 |
|
| 21 |
# Set the filename to the uploaded audio file's name without extension
|
| 22 |
ffname, _ = os.path.splitext(audio_file.name)
|
| 23 |
-
audio_file_path = ffname + ".
|
| 24 |
|
| 25 |
# Save the uploaded audio file
|
| 26 |
with open(audio_file_path, 'wb') as f:
|
|
|
|
| 20 |
|
| 21 |
# Set the filename to the uploaded audio file's name without extension
|
| 22 |
ffname, _ = os.path.splitext(audio_file.name)
|
| 23 |
+
audio_file_path = ffname + ".m4a"
|
| 24 |
|
| 25 |
# Save the uploaded audio file
|
| 26 |
with open(audio_file_path, 'wb') as f:
|