LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   unable to add image to video in avidemux (https://www.linuxquestions.org/questions/linux-general-1/unable-to-add-image-to-video-in-avidemux-4175537374/)

mia_tech 03-20-2015 02:30 PM

unable to add image to video in avidemux
 
I'm trying to overlap or add an image to a video in 3gp format in avidemux like showing in this video tutorial; however, when I open the video->filters I'm not showing the "logo" under "miselanious" here's the video tutorial I'm folowing
http://www.funtechtips.com/2013/05/h...ideo-tutorial/

the video format i'm using is in 3gp and avi

eklavya 03-30-2015 09:46 AM

If you want to overlay an image on video, you can use ffmpeg command.
Suppose you want to overlay an logo image on bottom right of the video, run this command.
Code:

ffmpeg -i /path/of/video.avi  -vf "movie=/path/of/image/logo.png [img]; [in][img] overlay=main_w-overlay_w-10:main_h-overlay_h-10" -vcodec libx264 /path/of/output/video.avi


All times are GMT -5. The time now is 02:48 AM.