Reputation: 11598
I recently heard about WebTorrent and decided to try one of those audio player javascript demos to see if I could make it play a random MP3 from BitTorrent network.
It didn't work and I contacted the author to find out that those are "two separate networks".
This made me wonder - how much do those two networks have in common?
For example, do they use the same .torrent file specification and one file can be found both under WebTorrent and BitTorrent under the same InfoHash?
Are there any torrent discovery websites like ThePirateBay for WebTorrent that I could use to see what's already there?
Upvotes: 4
Views: 1122
Reputation: 1274
WebTorrent is based in BitTorrent, they follow the same torrent file spec.
WebTorrent in the browser can only connect to WebRTC peers, WebTorrent in NodeJS can only connect to TCP/UDP peers. WebTorrent Hybrid (NodeJS) client can connect to both using a headless electron process. WebTorrent Desktop is a desktop app that can connect to both networks.
You might be interested in reading the FAQ
There's no website for WebRTC-network torrents discovery, yet.
Upvotes: 4