increase timeout

This commit is contained in:
freddyaboulton
2024-10-25 12:17:20 -07:00
parent e6273fc531
commit ecfcc109c0

View File

@@ -31,7 +31,7 @@ async def player_worker_decode(
while not thread_quit.is_set():
try:
# Get next frame
frame = await asyncio.wait_for(next_frame(), timeout=5)
frame = await asyncio.wait_for(next_frame(), timeout=60)
if frame is None:
if quit_on_none: