Embed OneDrive-Video on external website - Don't display captions and other things
The video embedded with iFrame on an external website shows
- Initially: the title of the video and a button: [Watch in stream]
- After playing: two buttons: [Copy video link], [Record video]
Ask:
- Is it not possible to display the image title?
- Can you not display the button?
The buttons only works, if the visitor to the external website is logged in with a Microsoft-Account. - This should not be necessary for an external website.
The embed code provided by OneDrive is rudimentary.
My extension with responsive iFrame:
<div class="video-container"><iframe class="iframe-responsive" src="https://MeinOneDriveLink" allowfullscreen="allowfullscreen"></iframe></div>
.video-container {
position: relative;
overflow: hidden;
max-width: 800 px;
padding-top: 55.94%;
left: 0;
bottom: 0;
right: 0;
}
.iframe-responsive {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0px;
}