-1

我想将Webtorrent实现到Ionic 4应用程序中。我已经设法完美地播放.m3u8流。我现在需要的只是我不太熟悉的webtorrent部分。

我正在为.m3u8<video src='url.m3u8'></video>流使用标签,它似乎在 Ionic 4 中运行良好。我希望能够下载 torrent 视频文件并使用标签或视频播放器组件在 Ionic 上流式传输/播放视频。<video>

请我需要一些帮助。我一直在尝试所有我知道的和可以在网上找到的东西,但到目前为止没有任何帮助。任何帮助,将不胜感激。


先感谢您。




edited: Sun, May 26th, 2019 at 7:59:02 PM

这是我在尝试实现时遇到的错误。任何人都知道可能是什么问题。

这是我的代码的快照。

图片在这里

告诉我你们的想法。

先感谢您。

4

1 回答 1

0

好的,经过几天尝试不同的方法,我找到了解决方案。顺便说一句,真的很容易。

这是一张 图片


这是我使用的代码。

    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。我尝试使用其他磁力链接,但它没有做任何事情。我猜它与磁铁网址的生成方式有关。

于 2019-05-27T22:02:07.420 回答