Track tasks and feature requests
Join 40 million developers who use GitHub issues to help identify, assign, and keep track of the features and bug fixes your projects need.
Sign up for free See pricing for teams and enterprisesPossible to get streamable URL? #1628
Comments
This comment has been minimized.
This comment has been minimized.
|
What i think you want is actually |
This comment has been minimized.
This comment has been minimized.
|
Exactly what @jimmywarting said. There's not way to just get a URL to pass to your video player since the file has not been downloaded yet. We have to listen for seek events on the player, and prioritize downloaded pieces of the video that the user is trying to watch. We may be able to solve this with the use of a Service Worker but it is currently not possible. If you are running in Node.js you can use |
Is it possible to get a streamable URL from a torrent. The file.appendTo function can stream the file. But to get the blobUrl the file needs to be fully downloaded first. Is there a way to get a streamable URL that i can hand to a custom player?
I'm writing an react app that has a custom player i use for synchronizing video with other ppl. It just needs a URL to play. Is that possible?