VideoStreaming.lua
Library that implements MontionJPG technique using Lua and Pegasus.lua
Installation
To install video_streaming, run:
$ luarocks install video_streaming
How to use it?
You need to create a instance of Streaming, pass a port and a path to the directory where the images will served:
local Streaming = require 'video_streaming'
local serverVideo = Streaming:new({
port='8080',
dir='images/'
})
serverVideo:start()
Then you will have a localhost server delivering through the path /video_streaming/
Contributing
Install Dependencies
$ make install_dependencies
Running tests
$ make test