Hello!
I'd like to insert more flow player video into one Grid, but i can't do this, because the <head> part of the html.
A standalone solution seems like this: http://e-cityguide.eu/player/D1517512.html
<!doctype html>
<head>
<link rel="stylesheet" type="text/css" href="skin/minimalist.css">
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="flowplayer.min.js"></script>
<style>
body { font: 12px "Myriad Pro", "Lucida Grande", sans-serif; text-align: center; padding-top: 5%; }
.flowplayer { max-width: 600px; }
</style>
</head>
<style>
/* site specific styling */
body {
font: 12px "Myriad Pro", "Lucida Grande", "Helvetica Neue", sans-serif;
text-align: center;
padding-top: 1%;
color: #999;
background-color: #333333;
}
.flowplayer .fp-logo {
display: block;
opacity: 1 !important;
left: 15px;
bottom: 10px;
/* left: auto; avoid logo being stuck on left side */
/* right: 3%; */
}
</style>
<body>
<div
class="flowplayer is-live is-splash no-mute no-volume no-time play-button"
data-analytics="UA-63714289-1" title="E-Cityguide Siófok"
data-fullscreen="false"
data-rtmp="rtmp://stream.e-cityguide.eu:1935/live"
data-ratio="0.75"
data-live="true"
data-debug="true"
data-logo="http://e-cityguide.eu/player/logo_small.png"
data-key="$122740922856083">
<video>
<source type="application/x-mpegurl" src="http://stream.e-cityguide.eu:1935/live/D1517512.stream/playlist.m3u8">
<source type="video/flash" src="D1517512.stream">
</video>
</div>
</body>
If i paste it to a Custom HTML slide it doesn't works. I can play it with embed solution, but if i embed many videos it start to bee very slow, and it need so many memory. So i'd like to load the scripts, just one time, and this after only the videos, like on this page.
If you have any idea, please help me...