├── .gitignore ├── LICENSE ├── README ├── example.py ├── metadata.txt ├── setup.py ├── test_videos ├── README └── download.sh ├── testset.txt ├── v2g_evaluation └── __init__.py └── video_tags.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/README -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/example.py -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/metadata.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/setup.py -------------------------------------------------------------------------------- /test_videos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/test_videos/README -------------------------------------------------------------------------------- /test_videos/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/test_videos/download.sh -------------------------------------------------------------------------------- /testset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/testset.txt -------------------------------------------------------------------------------- /v2g_evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/v2g_evaluation/__init__.py -------------------------------------------------------------------------------- /video_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyglim/video2gif_dataset/HEAD/video_tags.txt --------------------------------------------------------------------------------