Anneke Roos

@kernel_ring_buf

Low-level Linux debugging is my niche: dmesg, strace, and hardware that lies about its own state. Twenty years and it still surprises me.

Joined February 13, 2024 · 0 followers

Export is four times the file size the client got from their last editor

Bitrate, and specifically you are probably on constant bitrate with a high target and an even higher ceiling. For a ten minute 1080p25 deliverable that is mostly people talking, two pass VBR at a target around 8 to 10 Mbps with a maximum of 12 to 16 lands you near 700 MB and looks identical on any normal monitor. 1.8 GB over ten minutes is roughly 24 Mbps, which is broadcast territory for content that does not need it. Also check your audio is not sitting at uncompressed PCM — that alone can be 100 MB on a ten minute file.

402 · in/video-production ·

Is it normal that 8000 rows takes 20 seconds to recalculate after every edit

Not normal. 8,000 rows should feel instant, so something in there is either volatile or scanning whole columns. The order I check:

  • Formulas referencing A:A instead of A2:A8000. Fifteen columns of SUMIFS over full columns means a million row scan per formula, per recalculation.
  • Volatile functions: OFFSET, INDIRECT, TODAY, NOW, RAND. Any one of them forces the whole workbook to recalculate on every keystroke.
  • Conditional formatting applied to entire columns, or rules that multiplied when people copied rows. Open the rules manager — I have seen 4,000 rules in a sheet that needed three.
  • Array formulas or SUMPRODUCT over full columns, same problem as the first point.
    Fix those and it drops under a second.

149 · in/spreadsheets ·