http://www.videojs.com/から video-js-4.2.1.zip をダウンロードし、demo.html でビデオのソース ファイルを変更しましたが、ロードされません。完全な http:// アドレスを入力しましたが、まだ機能しません。http://www.videojs.com/のデモ ビデオでのみ機能します。それを機能させる方法は?
敬具、ヴァシル・ルシアン・ブジョール
PS。コードは次のとおりです (ポスターの png を追加し、元のコードからキャプションを削除し、名前を demo.html から index.html に変更しました):
<!DOCTYPE html>
<html>
<head>
<title>Video</title>
<!-- Chang URLs to wherever Video.js files will be hosted -->
<link href="video-js.css" rel="stylesheet" type="text/css">
<!-- video.js must be in the <head> for older IEs to work. -->
<script src="video.js"></script>
<!-- Unless using the CDN hosted version, update the URL to the Flash SWF -->
<script>
videojs.options.flash.swf = "video-js.swf";
</script>
</head>
<body>
<video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" width="640" height="360"
poster="principal.png"
data-setup="{}">
<source src="/wildelife.mp4" type='video/mp4' />
<source src="/wildelife.webm" type='video/webm' />
</video>
</body>
</html>