How to add logo to video
Posted: 29 Jan 2014 17:39
by joeko2
Hi I open video file in VLC player. Then I clicked "Tools" then "Effects and filters" "Video Effect" "Overlay". Logo was added to video. Then I wanted to save the video "CTRL-r" When I open video after converting there is no logo. How to solve this? Thanks.
Re: How to add logo to video
Posted: 29 Jan 2014 22:52
by Arite
You can do it using the commandline. See here:
https://wiki.videolan.org/How_to_add_logo/
If you're not familiar with commandline see
here.
So for example:
Code: Select all
vlc --sub-filter logo --logo-file logo.png input.mkv :sout=#transcode{vcodec=h264,venc=x264{qp=6},scale=Auto,sfilter=logo}:file{dst=out.mp4,no-overwrite}
Will add the logo "logo.png" to the top-left of the file "input.mkv", trancode the video using x264 with the logo filter enabled, and write the output to "out.mp4".
Arite.