liqian 1 year ago
parent
commit
f68146af37
1 changed files with 1 additions and 0 deletions
  1. 1 0
      asr_task.py

+ 1 - 0
asr_task.py

@@ -54,6 +54,7 @@ def asr_process(project, table, dt):
                         video_file = os.path.join(video_folder, filename)
                         # 1. asr识别
                         asr_res_initial = get_whisper_asr(video=video_file)
+                        print(video_id, asr_res_initial)
                         # 2. 识别结果写入文件
                         asr_path = os.path.join(asr_folder, f"{video_id}.txt")
                         with open(asr_path, 'w', encoding='utf-8') as wf: