Clevera does not crop or stretch the recording. The player keeps the video’s real shape so UI, captions, and title cards stay intact.
Why it happens
The Share embed wrapper is 16:9 (padding-top: 56.25%). Many recordings are not — window captures are often 3:2 or 4:3.
A 3:2 video inside a 16:9 box cannot fill both width and height. The player fits the video without cutting it, so you get black bars on the sides (or top and bottom for a taller video).
Remove the leftover bars
Change the iframe box to match the video. Do not crop or stretch.- In Clevera, open the screencast and note the recording size (for example
1380×960or1440×960). - Copy Share → Embed → Video only.
- In the wrapper
div, replacepadding-top: 56.25%with the value for your ratio, or useaspect-ratioinstead.
1440×960, 1380×960):
padding-top: 66.67%.
Common wrapper values
Formula if your size is not in the table:
(height ÷ width) × 100 = padding-top.
What not to do
- Do not switch to a static MP4 just to control size. You lose LiveSync: the iframe updates when the Clevera video changes; an exported file does not.
- Do not scale the video to “cover” the 16:9 box. That crops the top and bottom.
- Do not stretch the video to 16:9. That distorts the picture.
Still seeing a large empty frame?
If the video is small on all four sides (especially extra space below), that is not an aspect-ratio leftover. Confirm you are using a video-only embed (type=video or mode=video-only), then contact support — the player should fill the iframe, with bars only where the shapes still differ.