From e69b42fc19194fe2f60e577fc3408722616c3614 Mon Sep 17 00:00:00 2001 From: Conan Scott Date: Tue, 24 Mar 2026 01:11:13 +0000 Subject: [PATCH] Increase ASR timeout to 300s --- ingest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingest.py b/ingest.py index ae508af..363579e 100644 --- a/ingest.py +++ b/ingest.py @@ -146,7 +146,7 @@ def transcribe_chunk_fish(chunk_path, api_key, start_offset_sec): }, method="POST", ) - with urllib.request.urlopen(req, timeout=120) as resp: + with urllib.request.urlopen(req, timeout=300) as resp: data = json.loads(resp.read().decode()) # Adjust timestamps by the chunk's start offset