vid-streamer
vid-streamer copied to clipboard
VidStreamer.js: A simple streamer for Flash and HTML5-style videos. Supports HTTP pseudostreaming and works with JW Player's bitrate switching.
.m4v files are Apple's version of MPEG4 and according to http://en.wikipedia.org/wiki/M4V their mime.type is video/x-m4v
Some files with special encoding are not able to stream. ```bash TypeError: The header content contains invalid characters ``` This setting: ```json { insertContentDisposition : false } ``` desactive the...
This pull request fixes a memory leak I observed during my testing of vid-streamer.
Error: EMFILE: too many open files happened return stream.pipe(res); Maybe change to below code can resolve this problem https://github.com/jshttp/on-finished stream.pipe(res) onFinished(res, function (err) { destroy(stream) }); take this load test...
I'd like to add video live streaming, probably using [Apple's HTTP live streaming architecture](https://developer.apple.com/library/ios/#documentation/networkinginternet/conceptual/streamingmediaguide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008332-CH1-DontLinkElementID_39), as that seems to be the most widely supported. I'm not sure about cutting up videos,...
Hello, I tried to stream a .avi file but it gets downloaded instead of streamed. .mp4 files works like a charm. Thanks
Adding following lines before stream.pipe to detect if stream pipe stop when user close browser. ``` stream.on('data', function(chunk) { console.log(''ding",chunk); }) ```
Such requests mean "fetch n bytes from the end of the file". Currently such requests cause an exception.
This module works great in HTML5, however in flash, you can't seek to positions not yet downloaded - it doesn't cut the moov atoms, therefore throws an error in playback...
Hi, I would like to propose an additional (optional) feature that has great benefit for this module. # Background: I have been building a demo product using Node-Webkit/NW.js and this...