1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-08 07:00:10 +02:00
video.js/docs/legacy-docs/guides/tracks.html
Gary Katsevman 4dd000c809
docs: deploy docs using netlify (#4774)
This adds in the legacy docs into the repo and enables automatic deployment via netlify. The netlify-docs.js script will error out the build on netlify on master if we're not on a tagged commit so that it won't redeploy the docs unless there's a new release. If we're not on master or on master with a tagged commit, it will process with the deploy.
Also, this removes the API docs from being published with npm, fixes #4609.
2017-12-04 17:42:07 -05:00

27 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="../css/guides.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,600,600italic' rel='stylesheet' type='text/css'><link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/styles/solarized_light.min.css" />
<script type="text/javascript" src="//use.edgefonts.net/source-code-pro.js"></script>
</head>
<body>
<div id="sidenav" class="sidenav"></div>
<div id="main" class="main">
<h1 id="tracks">Tracks</h1>
<p>There are currently three types of tracks</p>
<ul>
<li><a href="./audio-tracks.html">AudioTracks</a> - allows the selection of alternative AudioTracks for a video</li>
<li><a href="./video-tracks.html">VideoTracks</a> - allows the selection of an alternative VideoTrack for a video</li>
<li><a href="./text-tracks.html">TextTracks</a> - Text Tracks are used to display subtitles and captions, and add a menu for navigating between chapters in a video.</li>
</ul>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/highlight.min.js"></script>
<script src="../js/guides.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>