├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── addon.js ├── configure.html ├── cryptoConfig.js ├── docker-compose.yml ├── lruCache.js ├── package.json ├── reddit_post.md ├── server.js ├── serverless.js ├── src ├── css │ └── styles.css ├── html │ ├── direct-config.html │ └── xtream-config.html ├── index.html └── js │ ├── configure-common.js │ ├── direct-config.js │ ├── providers │ ├── directProvider.js │ └── xtreamProvider.js │ └── xtream-config.js └── vercel.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/README.md -------------------------------------------------------------------------------- /addon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/addon.js -------------------------------------------------------------------------------- /configure.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cryptoConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/cryptoConfig.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lruCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/lruCache.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/package.json -------------------------------------------------------------------------------- /reddit_post.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/server.js -------------------------------------------------------------------------------- /serverless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/serverless.js -------------------------------------------------------------------------------- /src/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/src/css/styles.css -------------------------------------------------------------------------------- /src/html/direct-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/src/html/direct-config.html -------------------------------------------------------------------------------- /src/html/xtream-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/src/html/xtream-config.html -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/configure-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/src/js/configure-common.js -------------------------------------------------------------------------------- /src/js/direct-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/src/js/direct-config.js -------------------------------------------------------------------------------- /src/js/providers/directProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/src/js/providers/directProvider.js -------------------------------------------------------------------------------- /src/js/providers/xtreamProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/src/js/providers/xtreamProvider.js -------------------------------------------------------------------------------- /src/js/xtream-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/src/js/xtream-config.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inside4ndroid/M3U-XCAPI-EPG-IPTV-Stremio/HEAD/vercel.json --------------------------------------------------------------------------------