cara menambahkan tanda air dalam video mp4 menggunakan python
# where is the python code ? :D
import subprocess
def add_watermark(FilePath, Start, End, WatermarkImage, OutputFilePath):
subprocess.call('ffmpeg -i ' + FilePath + ' -i ' + WatermarkImage + ' -filter_complex "overlay=' + End + ':' + Start + '" ' + OutputFilePath + ')
whoopsie