├── .gitignore ├── LICENSE ├── README.md ├── capture.js ├── docs ├── index.html ├── iptv-multicast.m3u └── iptv.m3u ├── out └── .gitignore └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGG/bj-telecom-iptv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGG/bj-telecom-iptv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGG/bj-telecom-iptv/HEAD/README.md -------------------------------------------------------------------------------- /capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGG/bj-telecom-iptv/HEAD/capture.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGG/bj-telecom-iptv/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/iptv-multicast.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGG/bj-telecom-iptv/HEAD/docs/iptv-multicast.m3u -------------------------------------------------------------------------------- /docs/iptv.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGG/bj-telecom-iptv/HEAD/docs/iptv.m3u -------------------------------------------------------------------------------- /out/.gitignore: -------------------------------------------------------------------------------- 1 | *.jpeg 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenGG/bj-telecom-iptv/HEAD/package.json --------------------------------------------------------------------------------