Previous response had warnings:
WARNINGS: - Extra text detected before JSON object
- Extra text detected after JSON object

New Terminal Output:

root@d7299c7f5982:/app# python3 -c "
> import subprocess
> result = subprocess.run(['python3', '/app/termzip_ansi.py', '/app/frames.tza'], capture_output=True)
> data = result.stdout
>
> # Count different byte types
> esc_count = data.count(b'\x1b')
> lf_count = data.count(b'\n')
> cr_count = data.count(b'\r')
> bs_count = data.count(b'\b')
> tab_count = data.count(b'\t')
> delim_count = data.count(b'\x1e')
>
> print(f'Total bytes: {len(data)}')
> print(f'ESC (0x1b): {esc_count}')
> print(f'LF (0x0a): {lf_count}')
> print(f'CR (0x0d): {cr_count}')
> print(f'BS (0x08): {bs_count}')
> print(f'TAB (0x09): {tab_count}')
> print(f'Delimiter (0x1e): {delim_count}')
> print(f'Other printable: {len(data) - esc_count - lf_count - cr_count - bs_count - tab_count - delim_count}')
> "
Total bytes: 289902
ESC (0x1b): 9054
LF (0x0a): 6649
CR (0x0d): 0
BS (0x08): 70606
TAB (0x09): 369
Delimiter (0x1e): 1200
Other printable: 202024
root@d7299c7f5982:/app#
