好的,经过几天尝试不同的方法,我找到了解决方案。顺便说一句,真的很容易。
这是一张
图片
这是我使用的代码。
import { WebTorrent } from 'webtorrent';
declare var WebTorrent: WebTorrent;
....
playVideo() {
const client = WebTorrent();
const magnetURL = 'https://webtorrent.io/torrents/sintel.torrent';
client.add(magnetURL, function (torrent) {
// document.getElementById('hash').textContent = 'Client downloading: ' + torrent.infoHash;
torrent.files.forEach(function (file) {
torrent.on('download', function (bytes) {
document.getElementById('download').textContent = 'just downloaded: ' + bytesToSize(bytes);
document.getElementById('tdownload').textContent = 'total downloaded: ' + bytesToSize(torrent.downloaded);
document.getElementById('sdownload').textContent = 'download speed: ' + bytesToSize(torrent.downloadSpeed);
document.getElementById('pdownload').textContent = toPercentage(torrent.progress);
});
torrent.files.find(function (file) {
return file.name.endsWith('.mp4') || file.name.endsWith('.avi') || file.name.endsWith('.mkv') || file.name.endsWith('.mpeg');
});
file.renderTo('#video', function (err, element) {
presentToast(magnetURL);
});
});
});
function presentToast(text: string) {
this.presentToast(text);
}
function bytesToSize(bytes) {
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
if (bytes === 0) { return '0 Bytes'; }
const i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
return Math.round(bytes / Math.pow(1024, i), 2) + ' ' + sizes[i];
}
function toPercentage(dec) {
dec = dec.toString();
const a = dec.split('.');
dec = a[1];
dec = dec.substr(0, 4);
return dec = (dec / 100) + '%';
}
}
我有两个问题。我只能在sintel.mp4 达到99.89% 时播放它,但我希望能够在下载时对其进行流式传输。我的第二个问题是我只能下载和播放 Sintel.torrent。我尝试使用其他磁力链接,但它没有做任何事情。我猜它与磁铁网址的生成方式有关。