├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── app.js ├── dist └── .gitignore ├── es6_public ├── .babelrc ├── .jshintrc ├── index.es6 ├── install.es6 ├── player.es6 └── video.es6 ├── lib ├── activityLog.js └── findFfmpeg.js ├── package.json ├── public ├── images │ └── forkme_right_orange_ff7600.png └── javascripts │ ├── index.js │ ├── index.js.map │ ├── install.js │ ├── install.js.map │ ├── player.js │ ├── player.js.map │ ├── video.js │ └── video.js.map ├── routes ├── assets.js ├── hls.js ├── index.js ├── info.js ├── install.js ├── mjpeg.js ├── mp4.js ├── progress.js └── users.js ├── screenshots ├── screenshot1_0.0.8.png └── screenshot2_0.0.8.png ├── sockets ├── install.js ├── jpeg.js ├── m3u8.js ├── mse.js ├── progress.js └── stderr.js └── views ├── activity.ejs ├── error.ejs ├── exit.ejs ├── index.ejs ├── install.ejs └── video.ejs /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | *.iml 4 | *.json 5 | ffmpeg* -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/app.js -------------------------------------------------------------------------------- /dist/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /es6_public/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/es6_public/.babelrc -------------------------------------------------------------------------------- /es6_public/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/es6_public/.jshintrc -------------------------------------------------------------------------------- /es6_public/index.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/es6_public/index.es6 -------------------------------------------------------------------------------- /es6_public/install.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/es6_public/install.es6 -------------------------------------------------------------------------------- /es6_public/player.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/es6_public/player.es6 -------------------------------------------------------------------------------- /es6_public/video.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/es6_public/video.es6 -------------------------------------------------------------------------------- /lib/activityLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/lib/activityLog.js -------------------------------------------------------------------------------- /lib/findFfmpeg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/lib/findFfmpeg.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/package.json -------------------------------------------------------------------------------- /public/images/forkme_right_orange_ff7600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/public/images/forkme_right_orange_ff7600.png -------------------------------------------------------------------------------- /public/javascripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/public/javascripts/index.js -------------------------------------------------------------------------------- /public/javascripts/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/public/javascripts/index.js.map -------------------------------------------------------------------------------- /public/javascripts/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/public/javascripts/install.js -------------------------------------------------------------------------------- /public/javascripts/install.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/public/javascripts/install.js.map -------------------------------------------------------------------------------- /public/javascripts/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/public/javascripts/player.js -------------------------------------------------------------------------------- /public/javascripts/player.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/public/javascripts/player.js.map -------------------------------------------------------------------------------- /public/javascripts/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/public/javascripts/video.js -------------------------------------------------------------------------------- /public/javascripts/video.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/public/javascripts/video.js.map -------------------------------------------------------------------------------- /routes/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/routes/assets.js -------------------------------------------------------------------------------- /routes/hls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/routes/hls.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/routes/info.js -------------------------------------------------------------------------------- /routes/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/routes/install.js -------------------------------------------------------------------------------- /routes/mjpeg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/routes/mjpeg.js -------------------------------------------------------------------------------- /routes/mp4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/routes/mp4.js -------------------------------------------------------------------------------- /routes/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/routes/progress.js -------------------------------------------------------------------------------- /routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/routes/users.js -------------------------------------------------------------------------------- /screenshots/screenshot1_0.0.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/screenshots/screenshot1_0.0.8.png -------------------------------------------------------------------------------- /screenshots/screenshot2_0.0.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/screenshots/screenshot2_0.0.8.png -------------------------------------------------------------------------------- /sockets/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/sockets/install.js -------------------------------------------------------------------------------- /sockets/jpeg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/sockets/jpeg.js -------------------------------------------------------------------------------- /sockets/m3u8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/sockets/m3u8.js -------------------------------------------------------------------------------- /sockets/mse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/sockets/mse.js -------------------------------------------------------------------------------- /sockets/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/sockets/progress.js -------------------------------------------------------------------------------- /sockets/stderr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/sockets/stderr.js -------------------------------------------------------------------------------- /views/activity.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/views/activity.ejs -------------------------------------------------------------------------------- /views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/views/error.ejs -------------------------------------------------------------------------------- /views/exit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/views/exit.ejs -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/install.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/views/install.ejs -------------------------------------------------------------------------------- /views/video.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinGodell/ffmpeg-streamer/HEAD/views/video.ejs --------------------------------------------------------------------------------