├── .dockerignore ├── .env.example ├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── DOCKER_DEPLOYMENT.md ├── Dockerfile ├── README.md ├── client ├── client.css ├── client.ts ├── index.html └── types.ts ├── docker-compose.yml ├── encodingSettings.js ├── package.json ├── src ├── index.ts ├── jellyfin │ ├── client.ts │ ├── index.ts │ └── proxy │ │ ├── proxy.ts │ │ └── proxyManager.ts ├── utils │ └── index.ts └── webserver │ └── index.ts ├── tsconfig.json └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- 1 | .github 2 | dist 3 | node_modules 4 | .env 5 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/.gitignore -------------------------------------------------------------------------------- /DOCKER_DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/DOCKER_DEPLOYMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/README.md -------------------------------------------------------------------------------- /client/client.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/client/client.css -------------------------------------------------------------------------------- /client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/client/client.ts -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/client/index.html -------------------------------------------------------------------------------- /client/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/client/types.ts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /encodingSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/encodingSettings.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/jellyfin/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/src/jellyfin/client.ts -------------------------------------------------------------------------------- /src/jellyfin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/src/jellyfin/index.ts -------------------------------------------------------------------------------- /src/jellyfin/proxy/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/src/jellyfin/proxy/proxy.ts -------------------------------------------------------------------------------- /src/jellyfin/proxy/proxyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/src/jellyfin/proxy/proxyManager.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/webserver/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/src/webserver/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gurrrrrrett3/vrchat-jellyfin/HEAD/vite.config.ts --------------------------------------------------------------------------------