Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upHow start seed torrents throught webttorrent-tracker #1133
Closed
Comments
This comment has been minimized.
This comment has been minimized.
|
This comment has been minimized.
This comment has been minimized.
|
This issue appears stale since it has been open for a while with no activity. I'm going to close it for now. If this is still issue, please feel free to leave a comment or open a new issue. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It is necessary to understand the sequence of actions for distributing torrents through the webtorrent-tracker.
For example: the tracker is running on port 8111, create the torrent with the create-torrent command with the --announce parameter
create-torrent --urlList 'https://myhost.com/converted.mp4' converted.mp4 > converted.torrent'.Torrent file created..
Then start seed this new torrent file with command:
webtorrent seed https://myhost.com/converted.mp4.torrent --announce http://myhost.com:8111/announceand got error (or not):
How the webseed works fine. But the number of peers does not increase with the increase in seeders - shows 1 peer - webseed only(.
What did I miss here?