-
Hello! This is my first time trying anything as complicated as this ai program, and I've been running into some trouble. When trying to translate using the described method in the repository, I get the following warning This only works if it's a short clip. When I tried with a larger, 18 minute clip, it wouldnt even finish processing. Is there a way I could better do this? Apologies if this is a dumb question |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi! The first warning may happen if the model download was aborted during the previous try, and the second warning just means the calculation will happen in a slower but higher-precision format. They are both safe to ignore. My guess is that because you're not using a GPU, it's just taking too long to transcribe the audio, especially when there are lots of words spoken in the audio. If you specify If you don't currently have a GPU, you can try the example notebooks like this one on Google Colab which provides a GPU runtime. |
Beta Was this translation helpful? Give feedback.
-
Hello! I have the similar problem as SHA256 checksum does not match, but I have the different situation. The detail is that when I try to translate an audio, the progress bar will automatically stop at about 70%, and show “ConnectionResetError: [WinError 10054] The remote host forced the closure of an existing connection”. Is there a way I could solve this problem? |
Beta Was this translation helpful? Give feedback.
Hi! The first warning may happen if the model download was aborted during the previous try, and the second warning just means the calculation will happen in a slower but higher-precision format. They are both safe to ignore.
My guess is that because you're not using a GPU, it's just taking too long to transcribe the audio, especially when there are lots of words spoken in the audio. If you specify
--model tiny.en
, it will run faster than the defaultsmall
model that you're using.If you don't currently have a GPU, you can try the example notebooks like this one on Google Colab which provides a GPU runtime.