From 0b12e94be5f4c37643911bd76b0aecf2233fccb8 Mon Sep 17 00:00:00 2001 From: Nick Rossenbach Date: Wed, 9 Oct 2024 13:51:20 +0200 Subject: [PATCH] allow empty file in recordings --- tools/bliss-to-ogg-zip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bliss-to-ogg-zip.py b/tools/bliss-to-ogg-zip.py index 66d64eb0a..82feeed38 100755 --- a/tools/bliss-to-ogg-zip.py +++ b/tools/bliss-to-ogg-zip.py @@ -229,7 +229,7 @@ def main(): for seq in seqs: rec_filename = seq.recording_filename - assert os.path.isfile(rec_filename) + assert os.path.isfile(rec_filename) or args.no_ogg assert seq.start_time < seq.end_time and seq.delta_time > 0 duration = seq.delta_time assert duration > 0