זאת הפקודהffmpeg -i "input.mp4" -i watermark.png -filter_complex "overlay=10:10" -codec:a copy output.mp4
Explanation:
הסבר:
אתם שם את הוידאו והתמונה של הלוגו שאתה רוצה.
קובע את המיקום שזה יופיע על המסך ב overlay
משנה את input.mp4 לשם הקובץ שלך
input.mp4: The input video file.
watermark.png: The image file for the watermark (make sure it's in PNG format or a compatible format).
-filter_complex "overlay=10:10": This places the watermark at the top-left corner (10px from the top and 10px from the left). You can adjust these values for more precise positioning.
-codec:a copy: This copies the audio codec without re-encoding it, ensuring faster processing and no loss of audio quality.
output.mp4: The output file with the watermark added.
אתה יכול לשאול את CHATGPT בכל שאלה בנושא