Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authoril3ven <vaibhavchanana@yahoo.co.in>2021-07-27 03:21:54 +0300
committerGitHub <noreply@github.com>2021-07-27 03:21:54 +0300
commit224d47be894c05c81db011c6f30b686c381f8dd2 (patch)
treea68cfab7c1b68bcc5a6caaebc15c3718c112d67a /docs
parentd2fc4fcbc1f9b8dc281736e1dc5cb9d5392b9524 (diff)
chore(docs): added tutorials for integrating WebTorrent with js video players (#1979)
* Added tutorials for integrating WebTorrent with video players * chore(docs): fix code Co-authored-by: Alex <alxmorais8@msn.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorials.md102
1 files changed, 102 insertions, 0 deletions
diff --git a/docs/tutorials.md b/docs/tutorials.md
new file mode 100644
index 0000000..72966bf
--- /dev/null
+++ b/docs/tutorials.md
@@ -0,0 +1,102 @@
+# WebTorrent Tutorials
+
+## Integrate WebTorrent with Video Players
+
+WebTorrent can be used to stream videos. WebTorrent can render the incoming video to an HTML `<video>` element. Below are some examples for various video players.
+
+### [Default HTML5 Video Player](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video)
+
+Code example:
+
+```html
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Web Torrent Tutorial</title>
+ <meta charset="UTF-8" />
+ <script src="//cdn.jsdelivr.net/webtorrent/latest/webtorrent.min.js"></script>
+ </head>
+ <body>
+ <video id="video-container" controls="true"></video>
+ <script>
+ const client = new WebTorrent();
+ const torrentId =
+ "magnet:?xt=urn:btih:08ada5a7a6183aae1e09d831df6748d566095a10&dn=Sintel&tr=udp%3A%2F%2Fexplodie.org%3A6969&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Ftracker.empire-js.us%3A1337&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=wss%3A%2F%2Ftracker.btorrent.xyz&tr=wss%3A%2F%2Ftracker.fastcast.nz&tr=wss%3A%2F%2Ftracker.openwebtorrent.com&ws=https%3A%2F%2Fwebtorrent.io%2Ftorrents%2F&xs=https%3A%2F%2Fwebtorrent.io%2Ftorrents%2Fsintel.torrent";
+
+ client.add(torrentId, function (torrent) {
+ // Torrents can contain many files. Let's use the .mp4 file
+ const file = torrent.files.find(function (file) {
+ return file.name.endsWith(".mp4");
+ });
+
+ // Render to a <video> element by providing an ID. Alternatively, one can also provide a DOM element.
+ file.renderTo("#video-container", {}, () => {
+ console.log("Ready to play!");
+ });
+ });
+ </script>
+ </body>
+</html>
+
+```
+
+### [Video.js](https://videojs.com/)
+
+Video.js is an open source HTML5 & Flash video player. We include the dependencies for `video.js` using CDN. A normal `<video>` element is converted to `video.js` by passing `class="video-js"` and `data-setup="{}"`. For more information visit the [docs](https://docs.videojs.com/tutorial-setup.html).
+
+**Note**: Unlike in the Default HTML5 Video Player example we don't directly pass the ID of the `<video>` element but pass `` `video#${id}_html5_api` `` (JS String Literal). It is because `video.js` wraps the `<video>` element in a `<div>`.
+
+Original code:
+
+```html
+<video
+ id="video-container"
+ class="video-js"
+ data-setup="{}"
+ controls="true"
+></video>
+```
+
+Code rendered on the browser:
+
+```html
+<div>
+ <video id="video-container_html5_api"></video>
+</div>
+```
+
+Code example:
+
+```html
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Web Torrent Tutorial</title>
+ <meta charset="UTF-8" />
+ <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/video.js/7.8.1/video-js.min.css" />
+ <script src="//cdnjs.cloudflare.com/ajax/libs/video.js/7.8.1/video.min.js"></script>
+ <script src="//cdn.jsdelivr.net/webtorrent/latest/webtorrent.min.js"></script>
+ </head>
+ <body>
+ <video id="video-container" class="video-js" data-setup="{}" controls="true"></video>
+ <script>
+ const client = new WebTorrent();
+ const torrentId =
+ "magnet:?xt=urn:btih:08ada5a7a6183aae1e09d831df6748d566095a10&dn=Sintel&tr=udp%3A%2F%2Fexplodie.org%3A6969&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Ftracker.empire-js.us%3A1337&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337&tr=wss%3A%2F%2Ftracker.btorrent.xyz&tr=wss%3A%2F%2Ftracker.fastcast.nz&tr=wss%3A%2F%2Ftracker.openwebtorrent.com&ws=https%3A%2F%2Fwebtorrent.io%2Ftorrents%2F&xs=https%3A%2F%2Fwebtorrent.io%2Ftorrents%2Fsintel.torrent";
+
+ client.add(torrentId, function (torrent) {
+ // Torrents can contain many files. Let's use the .mp4 file
+ const file = torrent.files.find(function (file) {
+ return file.name.endsWith(".mp4");
+ });
+
+ // Render to a <video> element by providing an ID. Alternatively, one can also provide a DOM element.
+ file.renderTo("video#video-container_html5_api", {}, () => {
+ console.log("Ready to play!");
+ });
+ });
+ </script>
+ </body>
+</html>
+
+```