docs: retime four films to 1.5x playback - #34
Closed
DivyamTalwar wants to merge 1 commit into
Closed
DivyamTalwar wants to merge 1 commit into
DivyamTalwar wants to merge 1 commit into
Conversation
Problem The README gallery opens on films that run 78-84 seconds each. That is a long hold for a reader skimming the page, and longer than most social platforms show before a viewer drops. Approach Retimed four of the thirty films to 1.5x. Each source is 30fps, so 30 x 1.5 = 45fps exactly and every frame survives the retime with no drops and no duplicates. Encoded at CRF 18 from ~230-400 kbps sources, so the re-encode over-allocates relative to the original and loses nothing visible. All four are video-only, so no audio retime was needed. +faststart is set for web and social playback. 01-first-run 83.63s -> 55.78s 2509 frames 02-operators 77.97s -> 52.00s 2339 frames 04-gates 78.67s -> 52.47s 2360 frames 11-runs 83.63s -> 55.78s 2509 frames Verification ffprobe confirms 45fps, 1280x800, yuv420p and the expected frame count on all four. check:qa-docs and check:brand both pass. No README prose claims a duration for any of these four - the only duration claims on the page are the 12.0s .png loops and film 27's on-screen exit marker, neither of which is touched. Every README link resolves unchanged. Impact Four of thirty films now play at 1.5x; the remaining twenty-six are untouched and still run at their original speed. Poster frames and loop stills are unaffected, since retiming does not change frame content.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replaces four of the thirty README films with 1.5x-speed versions. The originals ran 78–84 seconds each, which is a long hold for a reader skimming the gallery and longer than most social platforms show before a viewer drops.
01-first-run.mp402-operators.mp404-gates.mp411-runs.mp4Why the frame count is unchanged
Every source is 30fps, and 30 × 1.5 = 45fps exactly. That means the retime is a pure timestamp remap — every frame carries through, with no drops and no duplicates, so there is no motion judder. A source at, say, 25fps would not divide cleanly and would have forced a compromise.
All four films are video-only, so no audio retime was required.
Encoding
CRF 18 from sources in the 230–400 kbps range, meaning the encoder over-allocates relative to the original and loses nothing visible.
+faststartis set for web and social playback. Output is 1280×800 yuv420p, unchanged from source.How to verify
Risk and rollback
Low. These are binary doc assets with no code path. Every README link resolves unchanged — the filenames are identical, only the content is faster. Poster frames and loop stills are unaffected, since retiming does not alter frame content. Rollback is
git revert.No README prose claims a duration for any of these four films. The only duration claims on the page are the 12.0s
.pngloops and film 27's on-screenexit 0 · 9.0smarker, neither of which is touched.Scope
Four of thirty films. The remaining twenty-six still run at their original speed.
Verified
ffprobeconfirms 45fps, 1280×800, yuv420p and the expected frame count on all fourcheck:qa-docs— passcheck:brand— pass