Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I created a new demo that uses a really simple python2.7 tornado server that live streams the h265 video via binary websocket. I'm really interested in this project.
Get tornado with 'pip2 install tornado'. Then just start the demo by visiting localhost:8080. This will initialize a websocket connection that will stream the video via websocket for a given chunk size and fps (hard coded in the lib right now). Still needs some work, maybe some api for fps that the client app can control. When I got this up and running I got excited and wanted to share, but it arguably still needs a bit of work. It doesn't properly flush the video and seems to lag when run unbounded (fps > processor can decode). I've just set the fps to 30 for now. Maybe a pull request is premature, but thought it would be nice to get a second set of eyes on this sooner than later. Is this something you guys would be interested in accepting if I polished it up?