如何使用torrent磁链作为视频嵌入链接&用它来在网站上显示视频?

时间:2017-10-28 08:09:42

标签: php html torrent

2 个答案:

答案 0 :(得分:0)

您当然可以简单地使用https://webtorrent.io

工作示例:

var WebTorrent = require('webtorrent')

var client = new WebTorrent()

// Sintel, a free, Creative Commons movie
var 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
  var file = torrent.files.find(function (file) {
    return file.name.endsWith('.mp4')
  })

  // Display the file by adding it to the DOM.
  // Supports video, audio, image files, and more!
  file.appendTo('body')
})

答案 1 :(得分:-1)

这是可能的,但据我所知,它不能使用常规方法(HTML / Javascript / PHP)完成。我所知道的唯一方法是使用Java applet。虽然它确实有效,但它并不是那么有效,取决于你打算用它做什么。无论如何,Bitlet得到了这个工作。他们成功地用Java实现了Bittorrent协议。您可以在Github here.

上查看他们的代码