Comment ajouter un filigrane dans la vidéo MP4 à l'aide de 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