├── Dockerfile ├── LICENSE ├── README.md ├── chinese-localization-for-plex.py ├── clp-all.bat ├── clp-all.command ├── clp-new.bat ├── clp-new.command ├── compose.yaml ├── config ├── config.ini └── tags.json ├── requirements.txt ├── start.sh └── template ├── config.ini └── tags.json /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/README.md -------------------------------------------------------------------------------- /chinese-localization-for-plex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/chinese-localization-for-plex.py -------------------------------------------------------------------------------- /clp-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/clp-all.bat -------------------------------------------------------------------------------- /clp-all.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/clp-all.command -------------------------------------------------------------------------------- /clp-new.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/clp-new.bat -------------------------------------------------------------------------------- /clp-new.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/clp-new.command -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/compose.yaml -------------------------------------------------------------------------------- /config/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/config/config.ini -------------------------------------------------------------------------------- /config/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/config/tags.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pypinyin 2 | requests 3 | flask -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/start.sh -------------------------------------------------------------------------------- /template/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/template/config.ini -------------------------------------------------------------------------------- /template/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/chinese-localization-for-plex/HEAD/template/tags.json --------------------------------------------------------------------------------