Skip to content

Commit b4fed7c

Browse files
authored
Merge pull request #438 from 20XIJI/main
修复302和elevenlabs云端转录会出现重复文本问题
2 parents 526e858 + 10516a5 commit b4fed7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/all_whisper_methods/elevenlabs_transcribe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,4 @@ def transcribe_audio_elevenlabs(raw_audio_path: str, vocal_audio_path: str, star
172172

173173
# Save result to file
174174
with open("output/transcript.json", "w", encoding="utf-8") as f:
175-
json.dump(result, f, ensure_ascii=False, indent=4)
175+
json.dump(result, f, ensure_ascii=False, indent=4)

0 commit comments

Comments
 (0)