├── .gitignore ├── README.md └── samples ├── LICENSE ├── common ├── .eslintrc ├── UDCConnection.js ├── app.js ├── components.js ├── main.js ├── ricohapi-bosh.js └── thetaview.js ├── config_template.js ├── gulpfile.js ├── oneway-broadcast ├── README.md ├── gulpfile.js ├── index.html ├── package.json └── src │ ├── .eslintrc │ ├── headless.js │ └── log-hook.js ├── oneway-watch ├── README.md ├── gulpfile.js ├── index.html ├── package.json └── styles │ └── style.css ├── package.json ├── twoway ├── README.md ├── gulpfile.js ├── index.html ├── package.json └── styles │ └── style.css └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | npm-debug.log 4 | config.js 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/README.md -------------------------------------------------------------------------------- /samples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/LICENSE -------------------------------------------------------------------------------- /samples/common/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/common/.eslintrc -------------------------------------------------------------------------------- /samples/common/UDCConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/common/UDCConnection.js -------------------------------------------------------------------------------- /samples/common/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/common/app.js -------------------------------------------------------------------------------- /samples/common/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/common/components.js -------------------------------------------------------------------------------- /samples/common/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/common/main.js -------------------------------------------------------------------------------- /samples/common/ricohapi-bosh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/common/ricohapi-bosh.js -------------------------------------------------------------------------------- /samples/common/thetaview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/common/thetaview.js -------------------------------------------------------------------------------- /samples/config_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/config_template.js -------------------------------------------------------------------------------- /samples/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/gulpfile.js -------------------------------------------------------------------------------- /samples/oneway-broadcast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-broadcast/README.md -------------------------------------------------------------------------------- /samples/oneway-broadcast/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-broadcast/gulpfile.js -------------------------------------------------------------------------------- /samples/oneway-broadcast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-broadcast/index.html -------------------------------------------------------------------------------- /samples/oneway-broadcast/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-broadcast/package.json -------------------------------------------------------------------------------- /samples/oneway-broadcast/src/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-broadcast/src/.eslintrc -------------------------------------------------------------------------------- /samples/oneway-broadcast/src/headless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-broadcast/src/headless.js -------------------------------------------------------------------------------- /samples/oneway-broadcast/src/log-hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-broadcast/src/log-hook.js -------------------------------------------------------------------------------- /samples/oneway-watch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-watch/README.md -------------------------------------------------------------------------------- /samples/oneway-watch/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-watch/gulpfile.js -------------------------------------------------------------------------------- /samples/oneway-watch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-watch/index.html -------------------------------------------------------------------------------- /samples/oneway-watch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-watch/package.json -------------------------------------------------------------------------------- /samples/oneway-watch/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/oneway-watch/styles/style.css -------------------------------------------------------------------------------- /samples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/package.json -------------------------------------------------------------------------------- /samples/twoway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/twoway/README.md -------------------------------------------------------------------------------- /samples/twoway/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/twoway/gulpfile.js -------------------------------------------------------------------------------- /samples/twoway/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/twoway/index.html -------------------------------------------------------------------------------- /samples/twoway/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/twoway/package.json -------------------------------------------------------------------------------- /samples/twoway/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/twoway/styles/style.css -------------------------------------------------------------------------------- /samples/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camera360developers/video-streaming-sample-app/HEAD/samples/webpack.config.js --------------------------------------------------------------------------------