csukuangfj commited on
Commit
7a9aed4
·
1 Parent(s): 1ce1efd

minor fixes

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -140,9 +140,9 @@ def process(
140
 
141
  start = time.time()
142
 
143
- audio, sample_rate = read_wave(filename)[0]
144
 
145
- MyPrint("audio", audio.shape)
146
 
147
  sd = get_speaker_diarization(
148
  segmentation_model=speaker_segmentation_model,
 
140
 
141
  start = time.time()
142
 
143
+ audio, sample_rate = read_wave(filename)
144
 
145
+ MyPrint("audio", audio.shape, sample_rate)
146
 
147
  sd = get_speaker_diarization(
148
  segmentation_model=speaker_segmentation_model,