├── .gitignore ├── align_faces.py ├── create_video_from_images.py ├── generate_random_images.py ├── infinite_zoom.py ├── interactive_story_telling_poc.md ├── lib └── utils.py ├── notebooks └── align_faces.ipynb ├── playground.ipynb ├── prompts └── story_system_prompt1.md ├── readme.md ├── story2illustration.py ├── video2frames.py ├── video2gif.py ├── video2video.py ├── video_inverse_loop.py └── videos ├── cry_smile_boy.gif └── cry_smile_boy.mp4 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/.gitignore -------------------------------------------------------------------------------- /align_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/align_faces.py -------------------------------------------------------------------------------- /create_video_from_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/create_video_from_images.py -------------------------------------------------------------------------------- /generate_random_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/generate_random_images.py -------------------------------------------------------------------------------- /infinite_zoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/infinite_zoom.py -------------------------------------------------------------------------------- /interactive_story_telling_poc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/interactive_story_telling_poc.md -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/lib/utils.py -------------------------------------------------------------------------------- /notebooks/align_faces.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/notebooks/align_faces.ipynb -------------------------------------------------------------------------------- /playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/playground.ipynb -------------------------------------------------------------------------------- /prompts/story_system_prompt1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/prompts/story_system_prompt1.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/readme.md -------------------------------------------------------------------------------- /story2illustration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/story2illustration.py -------------------------------------------------------------------------------- /video2frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/video2frames.py -------------------------------------------------------------------------------- /video2gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/video2gif.py -------------------------------------------------------------------------------- /video2video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/video2video.py -------------------------------------------------------------------------------- /video_inverse_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/video_inverse_loop.py -------------------------------------------------------------------------------- /videos/cry_smile_boy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/videos/cry_smile_boy.gif -------------------------------------------------------------------------------- /videos/cry_smile_boy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanwang000/genAI_storyteller/HEAD/videos/cry_smile_boy.mp4 --------------------------------------------------------------------------------