docs: re-encode videos that exceeded Mintlify's 20MB asset limit#721
Merged
Conversation
Assets over 20MB are silently dropped at deploy, so these three videos 404ed on the live site (first-agent, features/api, templates/dash): - agentos-connect-and-chat.mp4: 21.0MB -> 2.9MB - dash-ui-demo.mp4: 22.9MB -> 1.6MB - agentos-api-scroll.mp4: 77.1MB -> 4.4MB Re-encoded with libx264 CRF 26 at 30fps; resolution and duration unchanged. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
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
Mintlify silently drops assets over 20MB at deploy, so three videos 404ed on the live site even though the files exist in the repo and the embeds are intact:
agentos-connect-and-chat.mp4dash-ui-demo.mp4agentos-api-scroll.mp4The connect-and-chat video was over the cutoff by ~3KB, so it has likely never played in production. Verified the limit by testing every file in
videos/: all under 20MB serve 200, all over 404.Re-encoded with libx264 CRF 26 at 30fps. Resolution and duration unchanged; compared same-timestamp frames before/after and UI text stays crisp. These were the only three files in the repo over the limit.
🤖 Generated with Claude Code