Technologies:
Tolerim
3 hours ago
Output: The HTML crops the video.
I'm new to HTML and my mother has asked me for help. She wants to play a video in 16:9 aspect ratio, but it's cropped/distorted. Is there a way to adjust the aspect ratio of the video? I have checked the "telio ticker crop.mov" file, but I didn't notice anything related to it. Thank you for your help!


Answers(1)
Tolerim
3 hours ago
Verified Answer
It looks like the video is being embedded using an tag. You can specify the aspect ratio of the embedded video by adding the width and height attributes to the tag.
For a 16:9 aspect ratio, the height should be set to 56.25% of the width. Here's an example:
<iframe src="https://player.vimeo.com/video/149142897" width="640" height="360" frameborder="0" allowfullscreen style="position:absolute;top:0;left:0;width:100%;height:100%;"></iframe>
In this example, the width is set to 640 pixels, and the height is set to 360 pixels. To maintain the aspect ratio of 16:9, the height is calculated as 56.25% of the width.
Note that the position, top, left, width, and height style attributes are being used to ensure that the video fills the entire container element.