whisperai ASR timeout after 3600s [NOT SOLVED]

Post Reply
zemerdon
Site Admin
Posts: 337
Joined: Mon Jan 23, 2023 8:13 pm

whisperai ASR timeout after 3600s [NOT SOLVED]

Post by zemerdon »

Code: Select all

pico /opt/bazarr/bazarr/app/config.py
approx. line 330

# whisperai section
Validator('whisperai.endpoint', must_exist=True, default='http://127.0.0.1:9000', is_type_of=str),
Validator('whisperai.response', must_exist=True, default=5, is_type_of=int, gte=1),
Validator('whisperai.timeout', must_exist=True, default=3600, is_type_of=int, gte=1),
Validator('whisperai.pass_video_name', must_exist=True, default=False, is_type_of=bool),
Validator('whisperai.loglevel', must_exist=True, default='INFO', is_type_of=str,
is_in=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL']),

change

Validator('whisperai.timeout', must_exist=True, default=3600, is_type_of=int, gte=1),

to

Validator('whisperai.timeout', must_exist=True, default=10800, is_type_of=int, gte=1),

save, reboot
Post Reply