| 
					
				 | 
			
			
				@@ -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: 
			 |