我试过找出来,但不能。我正在按照这里的步骤进行操作 - 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或磁铁链接一起使用?