2014-08-18 20:43:30 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- Set Page Language Here -->
|
|
|
|
<html lang="es">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>VideoJS Languages Demo</title>
|
|
|
|
|
2015-06-06 03:10:39 +02:00
|
|
|
<!-- Load the source files -->
|
2018-01-30 18:17:41 +02:00
|
|
|
<link href="../dist/video-js.css" rel="stylesheet" type="text/css">
|
2017-06-27 01:51:05 +02:00
|
|
|
<script src="../dist/video.js"></script>
|
2014-08-18 20:43:30 +03:00
|
|
|
|
|
|
|
<!-- Add support for Spanish 'es' -->
|
2022-07-27 19:27:38 +02:00
|
|
|
<script src="../dist/lang/es.js"></script>
|
2014-08-18 20:43:30 +03:00
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-10-10 21:30:20 +02:00
|
|
|
<video id="vid1" class="video-js" controls preload="auto" width="640" height="264" data-setup=''>
|
2014-08-18 20:43:30 +03:00
|
|
|
<!--
|
2020-11-16 22:13:27 +02:00
|
|
|
<source src="https://video-js.zencoder.com/oceans-clip.mp4" type='video/mp4'>
|
|
|
|
<source src="https://video-js.zencoder.com/oceans-clip.webm" type='video/webm'>
|
|
|
|
<source src="https://video-js.zencoder.com/oceans-clip.ogv" type='video/ogg'>
|
2014-08-18 20:43:30 +03:00
|
|
|
-->
|
|
|
|
</video>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var player = videojs("vid1");
|
|
|
|
player.controlBar.show();
|
|
|
|
player.error(1);
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|