Advertisement
Guest User

Untitled

a guest
Jan 9th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <script src="https://cdn.jsdelivr.net/webtorrent/latest/webtorrent.min.js"></script>
  2.  
  3. <script>
  4. jQuery(document).ready(function() {
  5. var WebTorrent = require('webtorrent')
  6. var client = new WebTorrent()
  7. // ZOE AWS Test
  8. var torrentId = 'magnet:?xt=urn:btih:838c5d9505072327af03b3fa05f43f0a9a07f2c6=****tracker.openwebtorrent.com'
  9. client.add(torrentId, function (torrent) {
  10. // Torrents can contain many files. Let's use the first.
  11. var file = torrent.files[0]
  12. // Display the file by adding it to the DOM.
  13. // Supports video, audio, image files, and more!
  14. file.appendTo('body')
  15. })});
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement