├── .DS_Store ├── .env.example ├── .gitignore ├── README.md ├── downloaded └── .DS_Store ├── images ├── copy.png ├── original.png └── shorts.png ├── main.py └── src ├── .DS_Store ├── constant.py ├── download_video.py ├── font └── moon_get-Heavy.ttf ├── memory ├── links.json └── uploaded.json ├── start.py ├── uploader_tiktok.py ├── uploader_yt.py ├── util.py └── watermark.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/README.md -------------------------------------------------------------------------------- /downloaded/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/downloaded/.DS_Store -------------------------------------------------------------------------------- /images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/images/copy.png -------------------------------------------------------------------------------- /images/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/images/original.png -------------------------------------------------------------------------------- /images/shorts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/images/shorts.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/main.py -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/constant.py -------------------------------------------------------------------------------- /src/download_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/download_video.py -------------------------------------------------------------------------------- /src/font/moon_get-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/font/moon_get-Heavy.ttf -------------------------------------------------------------------------------- /src/memory/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/memory/links.json -------------------------------------------------------------------------------- /src/memory/uploaded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/memory/uploaded.json -------------------------------------------------------------------------------- /src/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/start.py -------------------------------------------------------------------------------- /src/uploader_tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/uploader_tiktok.py -------------------------------------------------------------------------------- /src/uploader_yt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/uploader_yt.py -------------------------------------------------------------------------------- /src/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/util.py -------------------------------------------------------------------------------- /src/watermark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacko06v/youtube_short_automation/HEAD/src/watermark.py --------------------------------------------------------------------------------