Overview
When you are trying to embed a live video stream in the Video tile, the apply button is greyed out/disabled, causing you to not be able to publish the video tile.
Solution
This occurs when you are trying to embed a video that's not supported by Embedly. The workaround in such cases is to use the Custom HTML tile to display the embedded video in an iframe.
Sample HTML code (for reference purposes only):
<html>
<head>
<style>
body {
color: #5e5e5e;
font: 13px "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
</style>
<script type="text/javascript">document.cookieNotAllowed = 'document.cookieNotAllowed is not allowed';</script>
<script type="text/javascript">document.cookieNotAllowed = 'document.cookie is not allowed';</script>
</head>
<body>
<iframe src="https://example.jivesoftwae.com/player/player.php?alias=a1b2c3d4e5f6" width="150" height="300">
</iframe>
</body>
</html>
You can customize the code as needed for your embedded video including the width and height of the video.
Comments
0 comments
Please sign in to leave a comment.