[FREE] TikTok Video Crawler/Downloader + Editor (No Watermark, Metadata Remover, and Additional Features)
Hello Guys,
I would like to share my Tiktok Tool.
Features:
- Crawl all Videos from a channel you choose
- Download all Videos from this channel without watermark
- Edit the Videos with FFMPEG (Config can be changed + Demo Config & Instruction)
- Save Raw & Edited Videos


1. You’ll need Python installed (I’ve used Python 3.10.11)
2. You’ll need to install all the requirements with pip
3. You can use the start.bat to start the script or do it manually.
Note
Code:
I wouldn’t recommend this tool to reupload to Tiktok since the videos get flagged as reupload and not going to be shown on the fyp
You might use this tool to reupload to YT I guess?
Virustotal
Code:
https://www.virustotal.com/gui/file/b90225987bdd042cca09a1efb5e34e9848f2d1dbf5fbcd388753a44145522997
https://www.virustotal.com/gui/file/f52719f891bb9fd04c31200ca2e04666a35ef0c9827152f79bbc5690a41e9659
https://www.virustotal.com/gui/file/083fb5b7ade90cfdb9293626c3094f4f17376d1e0c0fe6abcc7be0b0a4f7073e
Example Config
Code:
“filters”: {
“scale”: “iw*1.02:ih*1.02”, // Slight upscale (2%)
“crop”: “iw:ih-6”, // Crop 6px from bottom (removes watermark)
“eq”: “brightness=0.03:contrast=1.07”, // Slightly brighter & more contrast
“setpts”: “1.01*PTS”, // Slows video by 1%
“extra”: “” // Placeholder for additional filters
}
“ffmpeg”: {
“preset”: “fast”, // Fast encoding
“crf”: “23”, // Good balance of quality/size
“audio_bitrate”: “128k”, // Standard audio quality
“remove_metadata”: true // Strips timestamps/device info
}
If you have any recommendation I could implement them.