在SharePoint 2010网站上,我使用jwplayer来播放某些视频。
以下是我在SharePoint中包含的代码:
<!-- JW Player Library -->
<script src="http://jwpsrv.com/library/MCK8hplLEeOY0CIACmOLpg.js"></script>
<div id='playerKXSDPIwKERSb'></div>
<!-- Script to display video file in the player div -->
<script type='text/javascript'>
jwplayer('playerKXSDPIwKERSb').setup({
// URL to the video file
file: 'http://localhost/SiteAssets/Pages/testvideo/video.mp4',
// URL to the image that should be shown before the video is started
title: 'Video',
width: '50%',
aspectratio: '16:9'
});
</script>
在Chrome和Edge上工作正常,但不能在IE11上工作。
答案 0 :(得分:0)
我解决了问题,我想分享解决方案。
我在SharePoint 2010中使用JWPLAYER,SharePoint提供了一个元标记,告诉IE表现得像ie8。由于JWPlayer不再支持ie8,我无法重现视频。我删除了元标记,JWPlayer继续工作。