New Terminal Output:

root@f3f8d6319494:/app# python3 -c "
> import struct
> with open('/app/frames.tza', 'rb') as f:
>     magic = f.read(4)
>     w, h = struct.unpack('<HH', f.read(4))
>     n_frames, max_bytes = struct.unpack('<II', f.read(8))
>     print(f'Magic: {magic}')
>     print(f'Width: {w}, Height: {h}')
>     print(f'Frames: {n_frames}')
>     print(f'Max bytes: {max_bytes}')
>     print(f'Bytes per frame: {w*h}')
>     print(f'Raw total: {n_frames * w * h}')
> "
Magic: b'TZA1'
Width: 80, Height: 24
Frames: 1200
Max bytes: 69000
Bytes per frame: 1920
Raw total: 2304000
root@f3f8d6319494:/app#













