├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── demo └── demo.gif ├── requirements.txt ├── scripts └── publish.sh ├── setup.py └── shortcap ├── __init__.py ├── add_captions.py ├── assets └── fonts │ └── TitanOne-Regular.ttf ├── cli.py ├── config.py ├── segment_parser.py ├── text_renderer.py ├── transcriber.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/demo/demo.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/scripts/publish.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/setup.py -------------------------------------------------------------------------------- /shortcap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/shortcap/__init__.py -------------------------------------------------------------------------------- /shortcap/add_captions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/shortcap/add_captions.py -------------------------------------------------------------------------------- /shortcap/assets/fonts/TitanOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/shortcap/assets/fonts/TitanOne-Regular.ttf -------------------------------------------------------------------------------- /shortcap/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/shortcap/cli.py -------------------------------------------------------------------------------- /shortcap/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/shortcap/config.py -------------------------------------------------------------------------------- /shortcap/segment_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/shortcap/segment_parser.py -------------------------------------------------------------------------------- /shortcap/text_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/shortcap/text_renderer.py -------------------------------------------------------------------------------- /shortcap/transcriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/shortcap/transcriber.py -------------------------------------------------------------------------------- /shortcap/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacky-xbb/shortcap/HEAD/shortcap/utils.py --------------------------------------------------------------------------------