aheckmann / gridfs-stream

Easily stream files to and from MongoDB
MIT License
615 stars 120 forks source link

Implemented a feature to get partial data from a read stream #37

Closed xissy closed 10 years ago

xissy commented 10 years ago

Implemented a feature to get partial data from a read stream.

Personally, I wrote this code to stream H.264 videos with Express web framework. To support H.264 video streaming in Google Chrome, I should have implemented HTTP 206 Partial Content response. This code fits nicely with that.

I changed inner mongodb module from 1.1.11 to 1.4.0. In previous version, data event is not called when using seek() function.

aheckmann commented 10 years ago

cool. please rebase.

xissy commented 10 years ago

Done!

xissy commented 10 years ago

I solved the conflict with the latest commit of master branch - 3c73d2846ddd1d59c309903ecf97e417dfcd0786. You can merge this immediately to your master.

aheckmann commented 10 years ago

thanks!