├── .dockerignore ├── .env.example ├── .github ├── dependabot.yml └── workflows │ └── deploy_backend.yml ├── .gitignore ├── .vscode └── launch.json ├── Dockerfile ├── LICENSE ├── README.md ├── __init__.py ├── app ├── base.py ├── config.py ├── effects.py ├── image_gen.py ├── pexel.py ├── prompt_gen.py ├── reels_maker.py ├── story_teller.py ├── subtitle_gen.py ├── synth_gen.py ├── tiktokvoice.py ├── utils │ ├── __init__.py │ ├── path_util.py │ └── strings.py └── video_gen.py ├── bin ├── README.md └── magick ├── examples ├── example1.mp4 ├── example2.mp4 └── example3.mp4 ├── fly.toml ├── fonts └── bold_font.ttf ├── images └── watermark.png ├── poetry.lock ├── pyproject.toml ├── reelsmaker.py ├── storyteller.py └── tests ├── test_prompt_gen.py └── test_reels_maker.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | __pycache__/ 3 | .envrc 4 | tmp -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/.env.example -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/.github/workflows/deploy_backend.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/base.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/config.py -------------------------------------------------------------------------------- /app/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/effects.py -------------------------------------------------------------------------------- /app/image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/image_gen.py -------------------------------------------------------------------------------- /app/pexel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/pexel.py -------------------------------------------------------------------------------- /app/prompt_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/prompt_gen.py -------------------------------------------------------------------------------- /app/reels_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/reels_maker.py -------------------------------------------------------------------------------- /app/story_teller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/story_teller.py -------------------------------------------------------------------------------- /app/subtitle_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/subtitle_gen.py -------------------------------------------------------------------------------- /app/synth_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/synth_gen.py -------------------------------------------------------------------------------- /app/tiktokvoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/tiktokvoice.py -------------------------------------------------------------------------------- /app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/utils/path_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/utils/path_util.py -------------------------------------------------------------------------------- /app/utils/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/utils/strings.py -------------------------------------------------------------------------------- /app/video_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/app/video_gen.py -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/magick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/bin/magick -------------------------------------------------------------------------------- /examples/example1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/examples/example1.mp4 -------------------------------------------------------------------------------- /examples/example2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/examples/example2.mp4 -------------------------------------------------------------------------------- /examples/example3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/examples/example3.mp4 -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/fly.toml -------------------------------------------------------------------------------- /fonts/bold_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/fonts/bold_font.ttf -------------------------------------------------------------------------------- /images/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/images/watermark.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reelsmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/reelsmaker.py -------------------------------------------------------------------------------- /storyteller.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_prompt_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/tests/test_prompt_gen.py -------------------------------------------------------------------------------- /tests/test_reels_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steinathan/reelsmaker/HEAD/tests/test_reels_maker.py --------------------------------------------------------------------------------