├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── asset ├── baseline │ └── data.json └── js │ ├── index.js │ └── lipsync-engine.js ├── favicon.ico ├── index.html └── third_party ├── facemesh ├── LICENSE └── triangulation.js └── opencv ├── LICENSE └── opencv.js /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/README.md -------------------------------------------------------------------------------- /asset/baseline/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/asset/baseline/data.json -------------------------------------------------------------------------------- /asset/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/asset/js/index.js -------------------------------------------------------------------------------- /asset/js/lipsync-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/asset/js/lipsync-engine.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/index.html -------------------------------------------------------------------------------- /third_party/facemesh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/third_party/facemesh/LICENSE -------------------------------------------------------------------------------- /third_party/facemesh/triangulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/third_party/facemesh/triangulation.js -------------------------------------------------------------------------------- /third_party/opencv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/third_party/opencv/LICENSE -------------------------------------------------------------------------------- /third_party/opencv/opencv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/lipsync/HEAD/third_party/opencv/opencv.js --------------------------------------------------------------------------------