Spaces:
Running
Running
rejection 2 step implementation in phase 2
Browse files
components/review_dashboard_page.py
CHANGED
@@ -122,12 +122,12 @@ class ReviewDashboardPage:
|
|
122 |
try:
|
123 |
log.info(f"Downloading voice for review: {filename_to_load}")
|
124 |
# Show progress to user
|
125 |
-
gr.Info(f"Loading audio file: {filename_to_load}")
|
126 |
|
127 |
sr, wav = LOADER.load_audio(filename_to_load)
|
128 |
|
129 |
log.info(f"Successfully loaded audio: {filename_to_load} (SR: {sr}, Length: {len(wav)} samples)")
|
130 |
-
gr.Info(f"✅ Audio loaded successfully!")
|
131 |
|
132 |
return (sr, wav), (sr, wav.copy()), gr.update(value=(sr, wav), autoplay=True)
|
133 |
except TimeoutError as e:
|
|
|
122 |
try:
|
123 |
log.info(f"Downloading voice for review: {filename_to_load}")
|
124 |
# Show progress to user
|
125 |
+
# gr.Info(f"Loading audio file: {filename_to_load}")
|
126 |
|
127 |
sr, wav = LOADER.load_audio(filename_to_load)
|
128 |
|
129 |
log.info(f"Successfully loaded audio: {filename_to_load} (SR: {sr}, Length: {len(wav)} samples)")
|
130 |
+
# gr.Info(f"✅ Audio loaded successfully!")
|
131 |
|
132 |
return (sr, wav), (sr, wav.copy()), gr.update(value=(sr, wav), autoplay=True)
|
133 |
except TimeoutError as e:
|