Cant't view vid in preview mode in github mobile (unlike github web) ? - EXTPIXEL #188443
-
Select Topic AreaQuestion Bodyhello , i can't view vid in preview mode which i can in web but has been unable to in mobile pic in mobile and web , both shows in preview mode |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
|
Welcome to the GitHub Community, @NubPlayz, we're happy you're here! You are more likely to get a useful response if you are posting your question(s) in the applicable category. Check out this Guide on how to post in the right category. It'll ensure your questions and discussions reach the right people faster! This particular discussion belongs in the |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
|
Hi This usually happens because the GitHub mobile app and the mobile browser preview renderer do not support all embedded media formats the same way the desktop web version does. A few things to check: Video format How it’s embedded If you're using raw HTML like If it’s just a file uploaded to the repo, GitHub mobile may not render it inline and instead require opening it directly. File size limits GitHub App vs Mobile Browser Chrome/Safari mobile browser Desktop mode in mobile browser Private repo / auth state If images preview fine on both web and mobile but videos do not, that strongly suggests it’s a mobile rendering limitation rather than a repository issue. As a workaround, you can: Link directly to the video file instead of relying on preview. Host the video on a platform like YouTube and embed the link. Keep videos small and in standard MP4 format. |
Beta Was this translation helpful? Give feedback.


Hi
This usually happens because the GitHub mobile app and the mobile browser preview renderer do not support all embedded media formats the same way the desktop web version does.
A few things to check:
Video format
Make sure the video is in a widely supported format like .mp4 (H.264 codec). Some formats preview fine on desktop but won’t render in mobile preview.
How it’s embedded
If you're using raw HTML like
If it’s just a file uploaded to the repo, GitHub mobile may not render it inline and instead require opening it directly.
File size limits
Large video files may preview on desktop but fail silently on mobile due to memory or bandwidth limits.
GitHub App vs Mobile Browser
The GitHub …