├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cli.js ├── client ├── build.js ├── fake-video.html ├── index.html ├── loader.js └── sw.js ├── feed └── readme.md ├── lib ├── streamMaker.js └── wtManifest.js ├── package.json └── tests └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/cli.js -------------------------------------------------------------------------------- /client/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/client/build.js -------------------------------------------------------------------------------- /client/fake-video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/client/fake-video.html -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/client/index.html -------------------------------------------------------------------------------- /client/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/client/loader.js -------------------------------------------------------------------------------- /client/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/client/sw.js -------------------------------------------------------------------------------- /feed/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/feed/readme.md -------------------------------------------------------------------------------- /lib/streamMaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/lib/streamMaker.js -------------------------------------------------------------------------------- /lib/wtManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/lib/wtManifest.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/package.json -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pldubouilh/live-torrent/HEAD/tests/test.js --------------------------------------------------------------------------------