This repository was archived by the owner on Feb 12, 2024. It is now read-only.
This repository was archived by the owner on Feb 12, 2024. It is now read-only.
Ability to read offsets #348
Closed
Description
In order to do video playback properly I need to be able to seek through parts of a file.
So, what I basically need is a version of ipfs.cat
that has offset support. Something like:
ipfs.seek(hash, offset, length, (err, exporter) => {
if (err) throw err
exporter.pipe(destinationStream)
})