├── Makefile ├── README.md ├── lib ├── bootstrap.min.css ├── font │ ├── vjs.eot │ ├── vjs.svg │ ├── vjs.ttf │ └── vjs.woff ├── jquery.min.js ├── video-js.css └── video.js └── play /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/README.md -------------------------------------------------------------------------------- /lib/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/lib/bootstrap.min.css -------------------------------------------------------------------------------- /lib/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/lib/font/vjs.eot -------------------------------------------------------------------------------- /lib/font/vjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/lib/font/vjs.svg -------------------------------------------------------------------------------- /lib/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/lib/font/vjs.ttf -------------------------------------------------------------------------------- /lib/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/lib/font/vjs.woff -------------------------------------------------------------------------------- /lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/lib/jquery.min.js -------------------------------------------------------------------------------- /lib/video-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/lib/video-js.css -------------------------------------------------------------------------------- /lib/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/lib/video.js -------------------------------------------------------------------------------- /play: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/IPFS_Demo/HEAD/play --------------------------------------------------------------------------------