├── .gitignore ├── PyCriUsm ├── __init__.py ├── demux.py ├── fast_core.pyx ├── key.py ├── keys.json └── util.py ├── README.md ├── keygen ├── Genshin │ ├── README.md │ └── get_keys.py ├── README.md ├── StarRail │ ├── 1.4 │ │ ├── GetVideoVersionKeyScRsp.json │ │ └── VideoConfig.json │ ├── 1.5 │ │ ├── GetVideoVersionKeyScRsp.json │ │ └── VideoConfig.json │ ├── 1.6 │ │ ├── GetVideoVersionKeyScRsp.json │ │ └── VideoConfig.json │ ├── 2.0 │ │ ├── GetVideoVersionKeyScRsp.json │ │ └── VideoConfig.json │ ├── 2.1 │ │ ├── GetVideoVersionKeyScRsp.json │ │ └── VideoConfig.json │ ├── 2.2 │ │ ├── GetVideoVersionKeyScRsp.json │ │ └── VideoConfig.json │ ├── README.md │ └── get_keys.py └── main.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/.gitignore -------------------------------------------------------------------------------- /PyCriUsm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/PyCriUsm/__init__.py -------------------------------------------------------------------------------- /PyCriUsm/demux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/PyCriUsm/demux.py -------------------------------------------------------------------------------- /PyCriUsm/fast_core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/PyCriUsm/fast_core.pyx -------------------------------------------------------------------------------- /PyCriUsm/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/PyCriUsm/key.py -------------------------------------------------------------------------------- /PyCriUsm/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/PyCriUsm/keys.json -------------------------------------------------------------------------------- /PyCriUsm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/PyCriUsm/util.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/README.md -------------------------------------------------------------------------------- /keygen/Genshin/README.md: -------------------------------------------------------------------------------- 1 | Refer to GI-Cutscene 2 | Work in progress -------------------------------------------------------------------------------- /keygen/Genshin/get_keys.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keygen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/README.md -------------------------------------------------------------------------------- /keygen/StarRail/1.4/GetVideoVersionKeyScRsp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/1.4/GetVideoVersionKeyScRsp.json -------------------------------------------------------------------------------- /keygen/StarRail/1.4/VideoConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/1.4/VideoConfig.json -------------------------------------------------------------------------------- /keygen/StarRail/1.5/GetVideoVersionKeyScRsp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/1.5/GetVideoVersionKeyScRsp.json -------------------------------------------------------------------------------- /keygen/StarRail/1.5/VideoConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/1.5/VideoConfig.json -------------------------------------------------------------------------------- /keygen/StarRail/1.6/GetVideoVersionKeyScRsp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/1.6/GetVideoVersionKeyScRsp.json -------------------------------------------------------------------------------- /keygen/StarRail/1.6/VideoConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/1.6/VideoConfig.json -------------------------------------------------------------------------------- /keygen/StarRail/2.0/GetVideoVersionKeyScRsp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/2.0/GetVideoVersionKeyScRsp.json -------------------------------------------------------------------------------- /keygen/StarRail/2.0/VideoConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/2.0/VideoConfig.json -------------------------------------------------------------------------------- /keygen/StarRail/2.1/GetVideoVersionKeyScRsp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/2.1/GetVideoVersionKeyScRsp.json -------------------------------------------------------------------------------- /keygen/StarRail/2.1/VideoConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/2.1/VideoConfig.json -------------------------------------------------------------------------------- /keygen/StarRail/2.2/GetVideoVersionKeyScRsp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/2.2/GetVideoVersionKeyScRsp.json -------------------------------------------------------------------------------- /keygen/StarRail/2.2/VideoConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/2.2/VideoConfig.json -------------------------------------------------------------------------------- /keygen/StarRail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/README.md -------------------------------------------------------------------------------- /keygen/StarRail/get_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/StarRail/get_keys.py -------------------------------------------------------------------------------- /keygen/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/keygen/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Cython 2 | setuptools 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUnipendix/PyCriUsm/HEAD/setup.py --------------------------------------------------------------------------------