jhj0517

Results 61 comments of jhj0517

still happens to me when I build a bundle. cupertino icons is not included in my pubsec. I don't know if it's because of this or not, but after upgrading...

>> when you add a large file or a large amount of files, you can't download it and it keeps uploading. When you upload files with `gr.Files`, gradio uploads them...

@SeongGyu1216 Don't worry, I'll deal with it. With #78, the filename truncation doesn't happen anymore in local environments. You can use the latest version of the project by removing the...

The most likely reason is that your PC is preventing `gradio` from uploading large files to the `C:\Users\NameOfUser\AppData\Local\Temp\` folder. I don't know why the files cannot be uploaded. To reproduce...

I'm not sure about your issue but if I understand correctly, you can deploy your API with gradio. I'd recommend seeing this [documentation](https://www.gradio.app/guides/sharing-your-app)

Hi, I don't understand how SadTalker is related to this, but it would definitely be more convenient if users could install ffmpeg directly through `install.bat`. But since ffmpeg provides different...

Hi. The model folder structure looks like 1. whisper ``` ./models/ └── Whisper/ └── large-v3.pt └── large-v2.pt └── ... ``` 2. faster-whisper ``` ./models/ └── Whisper/ └── faster-whisper/ └── models--Systran--faster-whisper-large-v3/...

Hi, sorry for late reply. I've added `--faster_whisper_model_dir` and `--whisper_model_dir` arg in #154. Usage: ``` python app.py --faster_whisper_model_dir "C:\Whisper-WebUI\my_faster_whisper_model_path" ``` Or if you start the Web UI with `user-start-webui.bat`, you...

Thank you for comments. I think the idea of making a generator version is also a good one. By yielding in the `transcribe` method instead of returning, the following code...

Yea it seems that the latest version of faster-whisper ([version 1.0.0](https://github.com/SYSTRAN/faster-whisper/releases/tag/v1.0.0)) is not compatible with some CUDA versions. I'm using CUDA 11.8 and faced the same problem. As a temporary...