├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── bin └── www ├── index.js ├── lib ├── error-handler.js ├── extract-video.js ├── get-video-link.js ├── get-video.js ├── logger.js ├── parse-query.js ├── proxy.js └── videoplayback.js ├── models └── notes.js ├── npm-debug.log ├── package.json ├── public ├── javascripts │ └── script.js └── stylesheets │ └── style.css ├── routes ├── getlink.js ├── index.js ├── notes.js └── users.js └── views ├── bottom.ejs ├── error.ejs ├── getlink └── index.ejs ├── index.ejs ├── notes ├── notedestroy.ejs ├── noteedit.ejs └── noteview.ejs └── top.ejs /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/app.js -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/bin/www -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/index.js -------------------------------------------------------------------------------- /lib/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/lib/error-handler.js -------------------------------------------------------------------------------- /lib/extract-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/lib/extract-video.js -------------------------------------------------------------------------------- /lib/get-video-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/lib/get-video-link.js -------------------------------------------------------------------------------- /lib/get-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/lib/get-video.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/parse-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/lib/parse-query.js -------------------------------------------------------------------------------- /lib/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/lib/proxy.js -------------------------------------------------------------------------------- /lib/videoplayback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/lib/videoplayback.js -------------------------------------------------------------------------------- /models/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/models/notes.js -------------------------------------------------------------------------------- /npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/npm-debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/package.json -------------------------------------------------------------------------------- /public/javascripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/public/javascripts/script.js -------------------------------------------------------------------------------- /public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/public/stylesheets/style.css -------------------------------------------------------------------------------- /routes/getlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/routes/getlink.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/routes/index.js -------------------------------------------------------------------------------- /routes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/routes/notes.js -------------------------------------------------------------------------------- /routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/routes/users.js -------------------------------------------------------------------------------- /views/bottom.ejs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/views/error.ejs -------------------------------------------------------------------------------- /views/getlink/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/views/getlink/index.ejs -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/notes/notedestroy.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/views/notes/notedestroy.ejs -------------------------------------------------------------------------------- /views/notes/noteedit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/views/notes/noteedit.ejs -------------------------------------------------------------------------------- /views/notes/noteview.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/views/notes/noteview.ejs -------------------------------------------------------------------------------- /views/top.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1542050/google-drive-stream-videos/HEAD/views/top.ejs --------------------------------------------------------------------------------