I'm tring to use videojs in my web,but there are many unexpected situations. can someone help me?
shown in figure
Related code snippet:
<!DOCTYPE html>
<html>
<head>
<script src="https://vjs.zencdn.net/7.5.5/video.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
</head>
<body>
<div style="background: #000000; height:500px;">
<video id="my_video"
class="video-js"
controls
preload="auto"
width="100%"
height="100%"
data-setup="{}"
style="margin:0 auto; padding: 0 auto;">
<source id="video_src" src="${sessionScope.currentLesson.getVideo_path() }" type="video/mp4" />
</video>
</div>
</body>