We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As shown in the photo, timestamps do not appear for languages other than the selected language. Is there a way to resolve this?
`args = cli()
model = whisperx.load_model("deepdml/faster-whisper-large-v3-turbo-ct2", device=args.device, device_index=list(range(2)), compute_type=args.compute_type) audio = whisperx.load_audio(audio_path) # 오디오 파일 로드 result = model.transcribe(audio, batch_size=args.batch_size) language_code = result["language"] model_a, metadata = load_align_model(language_code=language_code, device=args.device) result = align(result["segments"], model_a, metadata, audio, device=args.device, return_char_alignments=False) return result, language_code`
The text was updated successfully, but these errors were encountered:
한국어 load_align_model과 영어 load_align_model 나눠서 사용하셔야 해요.
Sorry, something went wrong.
No branches or pull requests
As shown in the photo, timestamps do not appear for languages other than the selected language. Is there a way to resolve this?
`args = cli()
The text was updated successfully, but these errors were encountered: