├── .gitignore ├── LICENSE ├── README.md ├── createVideoWithMoviepy.py ├── dist └── .gitkeep ├── requirements.txt ├── src ├── font │ └── NotoSansCJKsc-Medium.otf ├── music │ └── .gitkeep └── subtitles │ └── .gitkeep └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuevven/createVideoWithMoviepy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuevven/createVideoWithMoviepy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuevven/createVideoWithMoviepy/HEAD/README.md -------------------------------------------------------------------------------- /createVideoWithMoviepy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuevven/createVideoWithMoviepy/HEAD/createVideoWithMoviepy.py -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuevven/createVideoWithMoviepy/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/font/NotoSansCJKsc-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuevven/createVideoWithMoviepy/HEAD/src/font/NotoSansCJKsc-Medium.otf -------------------------------------------------------------------------------- /src/music/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subtitles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuevven/createVideoWithMoviepy/HEAD/utils.py --------------------------------------------------------------------------------