Pijush2023 commited on
Commit
63a5f70
·
verified ·
1 Parent(s): 49d906d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +33 -4
app.py CHANGED
@@ -463,8 +463,37 @@ base_audio_drive = "/data/audio"
463
 
464
  # Resampling code with 16000 Hz
465
 
466
- import numpy as np
467
- from scipy.signal import resample
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
468
 
469
  def transcribe_function(stream, new_chunk):
470
  try:
@@ -473,7 +502,7 @@ def transcribe_function(stream, new_chunk):
473
  print(f"Error chunk structure: {type(new_chunk)}, content: {new_chunk}")
474
  return stream, "", None
475
 
476
- # Resample to 16000 Hz
477
  target_sr = 16000
478
  if sr != target_sr:
479
  num_samples = int(len(y) * float(target_sr) / sr)
@@ -904,7 +933,7 @@ with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
904
 
905
 
906
  demo.queue()
907
- demo.launch(share=True)
908
 
909
 
910
 
 
463
 
464
  # Resampling code with 16000 Hz
465
 
466
+ # import numpy as np
467
+ # from scipy.signal import resample
468
+
469
+ # def transcribe_function(stream, new_chunk):
470
+ # try:
471
+ # sr, y = new_chunk[0], new_chunk[1]
472
+ # except TypeError:
473
+ # print(f"Error chunk structure: {type(new_chunk)}, content: {new_chunk}")
474
+ # return stream, "", None
475
+
476
+ # # Resample to 16000 Hz
477
+ # target_sr = 16000
478
+ # if sr != target_sr:
479
+ # num_samples = int(len(y) * float(target_sr) / sr)
480
+ # y = resample(y, num_samples)
481
+ # sr = target_sr
482
+
483
+ # y = y.astype(np.float32) / np.max(np.abs(y))
484
+
485
+ # if stream is not None:
486
+ # stream = np.concatenate([stream, y])
487
+ # else:
488
+ # stream = y
489
+
490
+ # result = pipe_asr({"array": stream, "sampling_rate": sr}, return_timestamps=False)
491
+
492
+ # full_text = result.get("text", "")
493
+
494
+ # return stream, full_text, result
495
+
496
+ #Resample part -1
497
 
498
  def transcribe_function(stream, new_chunk):
499
  try:
 
502
  print(f"Error chunk structure: {type(new_chunk)}, content: {new_chunk}")
503
  return stream, "", None
504
 
505
+ # Ensure the sample rate is 16000 Hz
506
  target_sr = 16000
507
  if sr != target_sr:
508
  num_samples = int(len(y) * float(target_sr) / sr)
 
933
 
934
 
935
  demo.queue()
936
+ demo.launch(show_error=True)
937
 
938
 
939