-
Notifications
You must be signed in to change notification settings - Fork 95
File is too big
When launching a specific module, you might encounter the "File is too big" message. This could indicate an issue with file loading into the .wunjo/tmp
directory. This problem could stem from browser peculiarities or memory cache limitations or RAM. If you've encountered this problem, you may need to adjust the file loading time to suit your needs.
To customize the file loading time, open the file general_utils.py and locate the check_tmp_file_uploaded
method. You can modify the parameters within this method:
def check_tmp_file_uploaded(file_path, retries=10, delay=30):
"""
Checks for the existence of a file with a specified number of attempts and a delay between attempts.
:param file_path: Path to the file to check.
:param retries: Number of attempts.
:param delay: Delay in seconds between attempts.
:return: True if the file exists, False otherwise.
"""
for _ in range(retries):
if os.path.exists(file_path):
return True
time.sleep(delay)
return False
In this code, retries
refer to the number of attempts to check file upload to .wunjo/tmp
, while delay
signifies the waiting time between each attempt.
Utilize these parameters to tailor your application's behavior according to your requirements.
Additionally, don't forget that you can reduce the file resolution or split it into several small ones for faster loading and processing.
If you have limit browser size, then u need to increase your limitation, for example like in this link.
- Home
- English
- How to install the application
- How to change the default directory for the .wunjo folder
- How to add another application language
- Speech documentation
- How manually install model for text to speech
- How to synthesize text to speech
- How to clone a voice
- How to translate speech to text
- Deepfake documentation
- How to manually set models for deepfake animation of the face and lips
- How to animate a face from an image
- How to animate lip movement under audio
- How to face swap target video face on source face from photo
- How to use retouch to improve quality deepfake or remove object
- How to get segmentation mask
- How to use deepfake emotion
- How to use video editor tools
- Diffusion documentation
- How use video to video by text prompt
- How to use the GPU in the application
- File is too big
- Support the Project
- Acknowledgements
- Author
- Русский
- Как установить приложение
- Как изменить директорию по умолчанию для папки .wunjo
- Как добавить другой язык приложения
- Документация по речи
- Как вручную установить модель преобразования текста в речь
- Как синтезировать речь из текста
- Как клонировать голос
- Как перевести речь в текст
- Документация по дипфейкам
- Как вручную установить модели для дипфейка анимации лица и губ
- Как анимировать лицо из изображения
- Как анимировать движение губ под аудио
- Как поменять лицо целевого видео на исходное лицо с фотографии
- Как использовать ретушь для улучшения качества дипфейка или удаления объектов с видео
- Как получить маску объектов
- Как изменить эмоции человека на видео
- Как использовать инструменты видеоредактора
- Документация по diffusion
- Как изменить видео текстовым запросом
- Как использовать GPU в приложении
- Файл слишком большой
- Поддержите проект
- Благодарности
- Автор