Waseem Abbas
Waseem Abbas

Reputation: 81

How to improve download speed of files coming from IPFS?

I've video files that are showing on my Web Page. The average size of a single file is 20 MB. The source of those video files is coming from IPFS. My IPFS URL looks like this:

https://ipfs.io/ipfs/ + ipfsHash

I've got a decent internet speed i.e. 20Mbps. All other video Websites run really fast. I believe there is nothing wrong with my code since just running the IPFS URL in the browser takes a lot of time. If that's all I can get from IPFS, are there any faster decentralized IPFS alternatives?

Upvotes: 3

Views: 2534

Answers (1)

Mick
Mick

Reputation: 25481

IPFS is a distributed peer to peer storage and delivery solution - it requires a certain critical mass to achieve some of its benefits and I would guess to achieve good speeds.

In other words the more people viewing, storing and distributing the video or parts of it, the better it will work.

Its also quite likely that the traditional 'http' websites are using mechanisms like adjustable bit rate (ABR) streaming and low latency fragmented streams, mechanisms created and tuned specifically to speed video delivery on HTTP networks.

Upvotes: 3

Related Questions