Video2ARKit Plugin for Maya
Go to file
indigo a2bf3236b0 Update 2025-12-29 10:12:09 +08:00
.vscode Init Repo 2025-12-24 07:49:25 +08:00
cmake/modules Init Repo 2025-12-24 07:49:25 +08:00
src Update 2025-12-29 10:12:09 +08:00
.gitignore Update source code and add resources 2025-12-29 09:04:25 +08:00
CMakeLists.txt Init Repo 2025-12-24 07:49:25 +08:00
CMakePresets.json Init Repo 2025-12-24 07:49:25 +08:00
README.md Update source code and add resources 2025-12-29 09:04:25 +08:00
requirements.txt Update source code and add resources 2025-12-29 09:04:25 +08:00

README.md

Video2ARKit for Maya

Use google mediapipe to convert video to ARKit blendshape in maya

Requirement

  • Maya 2023+
  • Python 3.9+

Build and Install

mayapy -m pip install -r requirements.txt

Set MAYA_MODULE_PATH to Video2ARKit.mod directory in Maya.env

# Maya.env
MAYA_MODULE_PATH=[plugin_install_dir]/Video2ARKit

Usage

The model file is in Video2ARKit/models/face_landmarker.task folder.

The source link is Face Landmarker, download the face_landmarker.task and place into Video2ARKit/models folder.

Load Plugin

from maya import cmds
cmds.loadPlugin("Video2ARKit.py")

Convert Video to ARKit blendshape .json

from maya import cmds
cmds.a2vCmds(videoPath=r'C:\MyVideo.mp4', outputPath=r'C:\Output.json')