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 upStream video in browsers that don't support MediaSource #830
Comments
This comment has been minimized.
This comment has been minimized.
|
In my experience, the only way to go smoothly if there is no MediaSource API available is to create a video elem with the webseed url. Another solution would be to make a video element with the blob URL but I guess you will have to wait for the download and it will not work in iOS with the external video player... |
This comment has been minimized.
This comment has been minimized.
|
Safari actually supports MediaSource, but @jhiesey's I think @yciabaud's workaround sounds good, but if you detect MediaSource support, you'll need to special-case new Safari for now, since it supports MediaSource but |
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. |
I have noticed some browsers that don't support MediaSource or WebRTC (Safari on iOS) are still able to download a video torrent from a HTTP web seed, but cannot append the buffer with the MediaSource API.
It would be great to get torrents streaming on iOS. What are some possible ways around this?