├── .devcontainer └── devcontainer.json ├── README.md ├── app.py ├── apt.txt ├── fonts ├── Merriweather-Black.ttf ├── Merriweather-BlackItalic.ttf ├── Merriweather-Bold.ttf ├── Merriweather-BoldItalic.ttf ├── Merriweather-Italic.ttf ├── Merriweather-Light.ttf ├── Merriweather-LightItalic.ttf ├── Merriweather-Regular.ttf ├── Merriweather.zip └── OFL.txt ├── horse.jpg ├── packages.txt └── requirements.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/app.py -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/apt.txt -------------------------------------------------------------------------------- /fonts/Merriweather-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/Merriweather-Black.ttf -------------------------------------------------------------------------------- /fonts/Merriweather-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/Merriweather-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /fonts/Merriweather-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/Merriweather-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/Merriweather-Italic.ttf -------------------------------------------------------------------------------- /fonts/Merriweather-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/Merriweather-Light.ttf -------------------------------------------------------------------------------- /fonts/Merriweather-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/Merriweather-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /fonts/Merriweather.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/Merriweather.zip -------------------------------------------------------------------------------- /fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/fonts/OFL.txt -------------------------------------------------------------------------------- /horse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/horse.jpg -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- 1 | libgl1-mesa-glx 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tansihmittal/textbehindvideo/HEAD/requirements.txt --------------------------------------------------------------------------------