2

我试着找出来,但找不到。我正在按照这里的步骤进行操作——https: //webtorrent.io/intro。我在文件中有以下代码。

<html>
<head>
<title>
StreamTest
</title>
<script type="text/javascript" src="webtorrent.min.js"></script>

<script>
var client = new WebTorrent()

var torrentId = 'magnet:?xt=urn:btih:6a9759bffd5c0af65319979fb7832189f4f3c35d'

client.add(torrentId, function (torrent) {
  // Torrents can contain many files. Let's use the first.
  var file = torrent.files[0]

  // Display the file by adding it to the DOM. Supports video, audio, image,     etc. files
  file.appendTo('body')
})
</script>
</head>
<body>
<h2>Torrent Stream Test</h2>
</body>
</html>

此代码适用于 infohash — 6a9759bffd5c0af65319979fb7832189f4f3c35d 但是当我使用其他信息哈希或磁力链接时,它不起作用。其他信息哈希的示例是 80096C11147EEE4D2B6B6AC0B96C951E48298BE3

任何想法,为什么它不能与其他 infohash 或磁力链接一起使用?

4

0 回答 0