0

このコードを使用して torrent をダウンロードします。

var torrentStream = require('torrent-stream');

var engine = torrentStream('magnet:?xt=urn:btih:44A91362AFFF802F9058993B109C544ACC6B4813');

engine.on('ready', function(e) {
    engine.files.forEach(function(file) {
        console.log('filename:', file.name);
        var stream = file.createReadStream();
        // stream is readable stream to containing the file content
    });
});

この torrent は utorrent で正しくダウンロードされますが、nodejs では動作しません (何も起こりません)。理由はありますか?p2p ネットワークがブートストラップされていない可能性がありますか? これどうやってするの?

ありがとう

4

1 に答える 1