Skip to content

Commit

Permalink
allow empty file in recordings
Browse files Browse the repository at this point in the history
  • Loading branch information
JackTemaki committed Oct 9, 2024
1 parent 52da103 commit 0b12e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/bliss-to-ogg-zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0b12e94

Please sign in to comment.