0

SharePoint 2010 웹 사이트에서 일부 비디오 스트리밍을 위해 jwplayer를 사용하고 있습니다.JWPLAYER가 IE11에서 작동하지 않습니다.

<!-- 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> 

하는 크롬과 가장자리에 완벽하게 작동하지만, IE11에서 작동하지 않습니다 : 아래

내가 셰어에 포함 된 코드입니다. 나는 다음과 같은 오류를 얻을 자바 스크립트 콘솔에서

: enter image description here

답변

0

나는 문제를 해결하고 나는 해결책을 공유하고 싶습니다.

SharePoint 2010에서 JWPLAYER를 사용하고 SharePoint에서 IE에 ie8처럼 동작하도록 메타 태그를 제공하고있었습니다. JWPlayer가 ie8을 더 이상 지원하지 않으므로 비디오를 재현 할 수 없었습니다. 메타 태그를 제거하고 JWPlayer는 계속 작동합니다.