├── .gitignore ├── LICENSE.txt ├── README.md ├── data_list.zip ├── requirements.txt ├── teaser.gif ├── videos_crop.py ├── videos_download.py ├── videos_download_and_crop.sh └── videos_split.sh /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcwang0509/TalkingHead-1KH/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcwang0509/TalkingHead-1KH/HEAD/README.md -------------------------------------------------------------------------------- /data_list.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcwang0509/TalkingHead-1KH/HEAD/data_list.zip -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcwang0509/TalkingHead-1KH/HEAD/requirements.txt -------------------------------------------------------------------------------- /teaser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcwang0509/TalkingHead-1KH/HEAD/teaser.gif -------------------------------------------------------------------------------- /videos_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcwang0509/TalkingHead-1KH/HEAD/videos_crop.py -------------------------------------------------------------------------------- /videos_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcwang0509/TalkingHead-1KH/HEAD/videos_download.py -------------------------------------------------------------------------------- /videos_download_and_crop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcwang0509/TalkingHead-1KH/HEAD/videos_download_and_crop.sh -------------------------------------------------------------------------------- /videos_split.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcwang0509/TalkingHead-1KH/HEAD/videos_split.sh --------------------------------------------------------------------------------