C++ ImGUI Application that can generate videos for tiktok. However, can't upload them.
You can modify sources to add your own generator algorithm.
This application is not finished and probably won't be finished.
I was coding it to understand how C++ works with external libraries.
You can use the code for your projects freely.
Also, it was coded on Mac and not tested on other platforms or devices :/
Enter data which is required for your generator type.
It can be:
After application freeze (everything is done on UI thread) your video will be saved on disk near your binary.
Currently, there is only one generator supported:
- Take random telegram post.
- Choose background video from your disk.
- Choose background audio from your disk.
- App combines these data and generates video for you. Example below:
In directory "Modules" there should be compiled libs of OpenCV (with extra) and tdlib. You can check cmake to understand how they were used.
- Upload generate videos into TikTok. TikTok supports some kind of API, but you need to be verified to use it. You can use some virtual browser like https://github.com/makiisthenes/TiktokAutoUploader does.
- Support more formats. Currently, only .mp4 for video and .aac for video are supported.
- Fix a lot of bugs. Telegram API is not tested. Also, there can be bugs with FFMPEG related code (like combining audio and video)