Live data from Hacker News

Realtime streaming from torrents in the browser

iflix.io

11–20 of 96 posts

Re: Realtime streaming from torrents in the browser

#11
post #6

Haven't got this to work yet. I'd love to see a BT streaming solution not as a centralized service, but as a locally running app. Does such a thing exist?

the machine is a 10 dollar digital ocean droplet, it's curently at it's peak, this can be packed(and it will be) with node webkit

So, this is a server side solution?

Re: Realtime streaming from torrents in the browser

#12
I created (and later closed) a similar service using mega.co.nz instead of torrents. The main problem I see with your approach is that you serve video from your server (and presumably do the torrent fetch server side). This opens you up to liability, makes you responsible for DMCA take downs and puts the workload on the server.

In contrast NimbusVid was entirely client side. The drawback was that the source data needed to be a web friendly seekable format; you couldn't play an arbitrary video file.

Re: Realtime streaming from torrents in the browser

#17

Haven't got this to work yet. I'd love to see a BT streaming solution not as a centralized service, but as a locally running app. Does such a thing exist?

Not possible currently with web technologies because browsers don't let javascript connect to arbitrary TCP servers. The webtorrent project aims to make torrent clients compatible with WebRTC, so when that gets widespread adoption it should be possible.

Re: Realtime streaming from torrents in the browser

#18

I created (and later closed) a similar service using mega.co.nz instead of torrents. The main problem I see with your approach is that you serve video from your server (and presumably do the torrent fetch server side). This opens you up to liability, makes you responsible for DMCA take downs and puts the workload on the server. In contrast NimbusVid was entirely client side. The drawback was that the source data need…

> The drawback was that the source data needed to be a web friendly seekable format; you couldn't play an arbitrary video file.

Maybe I should revive the VLC web plugin and the torrent input plugin :)

Re: Realtime streaming from torrents in the browser

#19
post #18

I created (and later closed) a similar service using mega.co.nz instead of torrents. The main problem I see with your approach is that you serve video from your server (and presumably do the torrent fetch server side). This opens you up to liability, makes you responsible for DMCA take downs and puts the workload on the server. In contrast NimbusVid was entirely client side. The drawback was that the source data need…

> The drawback was that the source data needed to be a web friendly seekable format; you couldn't play an arbitrary video file. Maybe I should revive the VLC web plugin and the torrent input plugin :)

i was thinking about using the vlc web plugin :) for avi/vmw

Re: Realtime streaming from torrents in the browser

#20
post #18

I created (and later closed) a similar service using mega.co.nz instead of torrents. The main problem I see with your approach is that you serve video from your server (and presumably do the torrent fetch server side). This opens you up to liability, makes you responsible for DMCA take downs and puts the workload on the server. In contrast NimbusVid was entirely client side. The drawback was that the source data need…

> The drawback was that the source data needed to be a web friendly seekable format; you couldn't play an arbitrary video file. Maybe I should revive the VLC web plugin and the torrent input plugin :)

Plugins aren't a great solution, people don't want to install them.
Post reply on HN