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 upIs it possible to append data when downloading video data #860
Comments
This comment has been minimized.
This comment has been minimized.
|
You might want to take a look at #826. |
This comment has been minimized.
This comment has been minimized.
|
Torrents are immutable. You can build a mutable data store on top of torrents, but that's out of scope for webtorrent. |
This comment has been minimized.
This comment has been minimized.
|
This thread has been automatically locked because it has not had recent activity. To discuss futher, please open a new issue. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, I am making up a p2p video service. Normally, Isplit big video data into serveal pieces. Webtorrent works well on single video, but I wonder if there is a way I can directly add data to the end of downloaded video instead reload video player. I have tried mediasource API, but I don't know how to merge it into webtorrent. Can I deal with downloaded data directly(add or read to that stream)? Or can I choose where to download if the speed of peer is too low?
Thanks a lot!