├── .gitignore ├── App ├── icon.ico └── output.txt ├── Docs ├── Example │ ├── Sounds │ │ └── 27.mp3 │ └── Videos │ │ └── 16.mp4 ├── logo.png └── video_example.mp4 ├── Engine ├── MakeVideo.py ├── Utils │ └── ProximaNovaSemibold.otf ├── YoutubeShorts │ └── upload_video.py ├── __init__.py ├── auto.py ├── cutVideo.py ├── getShortestLength.py └── write_output.py ├── LICENSE ├── README.md ├── requirements.txt ├── silent_autopost.cmd └── silent_autopost.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/.gitignore -------------------------------------------------------------------------------- /App/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/App/icon.ico -------------------------------------------------------------------------------- /App/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Docs/Example/Sounds/27.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Docs/Example/Sounds/27.mp3 -------------------------------------------------------------------------------- /Docs/Example/Videos/16.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Docs/Example/Videos/16.mp4 -------------------------------------------------------------------------------- /Docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Docs/logo.png -------------------------------------------------------------------------------- /Docs/video_example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Docs/video_example.mp4 -------------------------------------------------------------------------------- /Engine/MakeVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Engine/MakeVideo.py -------------------------------------------------------------------------------- /Engine/Utils/ProximaNovaSemibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Engine/Utils/ProximaNovaSemibold.otf -------------------------------------------------------------------------------- /Engine/YoutubeShorts/upload_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Engine/YoutubeShorts/upload_video.py -------------------------------------------------------------------------------- /Engine/__init__.py: -------------------------------------------------------------------------------- 1 | # To mark the Engine folder as a Python package # -------------------------------------------------------------------------------- /Engine/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Engine/auto.py -------------------------------------------------------------------------------- /Engine/cutVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Engine/cutVideo.py -------------------------------------------------------------------------------- /Engine/getShortestLength.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Engine/getShortestLength.py -------------------------------------------------------------------------------- /Engine/write_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/Engine/write_output.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/requirements.txt -------------------------------------------------------------------------------- /silent_autopost.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/silent_autopost.cmd -------------------------------------------------------------------------------- /silent_autopost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrecuAlexandru/silent_autopost/HEAD/silent_autopost.py --------------------------------------------------------------------------------