diff --git a/backend/gradio_webrtc/utils.py b/backend/gradio_webrtc/utils.py index be360a3..7348eb2 100644 --- a/backend/gradio_webrtc/utils.py +++ b/backend/gradio_webrtc/utils.py @@ -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: diff --git a/pyproject.toml b/pyproject.toml index f031b0b..0f8ab2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "hatchling.build" [project] name = "gradio_webrtc" -version = "0.0.7" +version = "0.0.8" description = "Stream images in realtime with webrtc" readme = "README.md" license = "apache-2.0"