-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
on the configuration page, so users can set an iframe source (and optionally height and width),
see https://flowplayer.org/docs/embedding.html#iframe-embedding . The contents will go into the embed: config object, like
embed: {
// embed including quality selector
iframe: "//flowplayer.org/standalone/multires/drive-iframe.html",
width: "864px",
height: "364px" // 360 + 4 ! player height + room for slim timeline
}
If an iframe is set, also add the fullscreen options to the global configuration? ) @blacktrash any negative side effects?
/*
additional global configuration to handle fullscreen behaviour of embedded
iframes
*/
flowplayer.conf = {
// allow iframe go fullscreen
fullscreen: true,
// fullscreen from iframe on tablets
native_fullscreen: true
};