├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── captacity ├── __init__.py ├── assets │ └── fonts │ │ ├── Bangers-Regular-LICENSE.txt │ │ ├── Bangers-Regular.ttf │ │ ├── Knewave-Regular-LICENSE.txt │ │ ├── Knewave-Regular.ttf │ │ ├── PoetsenOne-Regular-LICENSE.txt │ │ └── PoetsenOne-Regular.ttf ├── cli.py ├── segment_parser.py ├── text_drawer.py └── transcriber.py ├── requirements.txt ├── scripts ├── build.sh └── publish.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/README.md -------------------------------------------------------------------------------- /captacity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/__init__.py -------------------------------------------------------------------------------- /captacity/assets/fonts/Bangers-Regular-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/assets/fonts/Bangers-Regular-LICENSE.txt -------------------------------------------------------------------------------- /captacity/assets/fonts/Bangers-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/assets/fonts/Bangers-Regular.ttf -------------------------------------------------------------------------------- /captacity/assets/fonts/Knewave-Regular-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/assets/fonts/Knewave-Regular-LICENSE.txt -------------------------------------------------------------------------------- /captacity/assets/fonts/Knewave-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/assets/fonts/Knewave-Regular.ttf -------------------------------------------------------------------------------- /captacity/assets/fonts/PoetsenOne-Regular-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/assets/fonts/PoetsenOne-Regular-LICENSE.txt -------------------------------------------------------------------------------- /captacity/assets/fonts/PoetsenOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/assets/fonts/PoetsenOne-Regular.ttf -------------------------------------------------------------------------------- /captacity/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/cli.py -------------------------------------------------------------------------------- /captacity/segment_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/segment_parser.py -------------------------------------------------------------------------------- /captacity/text_drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/text_drawer.py -------------------------------------------------------------------------------- /captacity/transcriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/captacity/transcriber.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | moviepy 2 | pillow 3 | openai 4 | -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- 1 | cd $(dirname "$(realpath "$0")")/../ 2 | twine upload dist/* 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unconv/captacity/HEAD/setup.py --------------------------------------------------------------------------------