
I'd like to display captions outside of the video player on Safari(iOS/Mac) and Edge.
I would like to confirm the following thing.
<Precondition>
- Playing a movie with JW7 by progressive download.
- Browsers: IE11, Edge, Chrome(Win/Mac), Safari(Mac), Safari(iOS)
<Goal>
- Display captions outside of the video player.
<Problem>
- Can't do that on Safari(iOS/Mac) and Edge.
<Confirmation>
- Is this all right on the license?
As a temporary measure, I'd like to modify a part(#) of the library to solve this problem only in our environment.
# how to modify ( src/js/providers/html5.js )
function renderNatively (configRenderNatively) {
// if (utils.isIOS() || utils.isSafari() || utils.isEdge()) {
// return true;
// }
// return configRenderNatively && utils.isChrome();
return false;
}
Or Is there another way to solve it?