Imagine you're a radio play-by-play announcer at a basketball game. You can't talk over the referee's whistle or the coach's timeout call. You have to pick which plays matter most to the story of the game, compress your description to fit the gap between stoppages, and sequence everything so the listener tracks the narrative without ever feeling lost. That's exactly the problem this paper formalizes for movie audio description — and the key insight is that treating those three decisions (what, when, how) as separate problems is what makes existing AD systems mediocre. The committed claim: audio description generation for blind and visually impaired audiences should be modeled as a joint constrained optimization problem, not a local video-to-text generation task. The authors argue that prior automatic AD systems assume someone has already decided what to describe and where to place the description — which is the hard part. Their system couples all three decisions: salience estimation (what visual information matters to the narrative), temporal scheduling (when you can speak without stepping on dialogue), and compression (how to say it fast enough to fit the gap). The architecture is a hybrid: large language models handle the soft parts (proposing visual elements, estimating narrative salience, generating compressed text), and a mixed-integer linear program (MILP) handles the hard combinatorial part (jointly selecting and scheduling descriptions across a scene subject to temporal constraints). This is not end-to-end neural. The MILP is classical operations research — the same math that schedules airline crews and factory floors. The LLM proposes; the optimizer disposes. That division of labor is the paper's structural bet. Evaluated on REFRAMED, a benchmark for realistic movie AD, the system establishes new state-of-the-art on narrative QA and temporally grounded metrics. The ablations are where the real signal lives: explicit temporal constraints drive placement gains, while salience estimation controls narrative content retention. Critically, gains concentrate on temporal and narrative measures rather than n-gram overlap — meaning the system is getting better at the right things (what and when) rather than just producing text that looks like reference descriptions word-by-word. Prompted LLMs without the optimization layer make worse decisions about both content selection and timing. The integrity picture is decent but bounded. REFRAMED is a community benchmark, not an author-created evaluation set, which is good. But the validation is still automatic metrics plus ablations — no human evaluation from blind or visually impaired users is reported, which is a notable gap for an accessibility paper. The comparison is against prompted LLMs, not against the strongest specialized AD systems if any exist beyond this benchmark. The paper is honest that a significant gap to professional human describers remains. The milestone question is interesting. The paper doesn't name a concrete next number, but the structural gap is clear: current systems are evaluated on short scenes from a limited movie set. The real unlock would be full-movie AD generation evaluated by actual BVI users in real viewing conditions. That's probably 2-3 years out, contingent on longer-context LLMs and user studies that are expensive and ethically complex to run. The obvious experiment not run is end-to-end evaluation with BVI audiences — likely a combination of cost, IRB complexity, and this being a computational linguistics paper rather than an HCI study. This paper matters because it reframes the AD problem from 'generate better captions' to 'solve a scheduling problem with narrative constraints.' That reframing is more important than any single metric gain. If you work on accessibility, video understanding, or constrained text generation, the MILP-over-LLM-proposals architecture is a pattern worth studying — it's a clean example of using classical optimization to impose hard constraints that neural systems struggle with natively.