gmmarc
gmmarc
Thanks @ToLuSt ! Just in case somebody else using **npm** runs into this issue in the future, this didn't work for me: `npm install lunr-languages` This did work: `npm install...
For people facing this issue without GPU, here's how you can change it to CPU. In https://github.com/EtienneAb3d/WhisperHallu/blob/main/transcribeHallu.py#L110, set device to `cpu`: ```python model = whisper.load_model(modelSize,device=torch.device("cpu")) ``` Same thing in https://github.com/EtienneAb3d/WhisperHallu/blob/main/transcribeHallu.py#L265:...
This is how I workaround it: 1. Add a listener on the `play` event 2. Set the volume to 0 and mute 3. Remove the listener so it doesn't mute...
I was able to avoid all data transfer costs from S3 by setting up an S3 VPC Endpoint. TL;DR the Remotion Lambda accesses the S3 URL via the AWS’s internal...