Difference between revisions of "VLC HowTo/Add a logo"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
= Idea = | = Idea = | ||
− | This How To just explains how to use the logo filter in order to add a logo on your videos, like a TV. | + | This How To just explains how to use the logo filter in order to add a logo on your videos, like a TV. |
== Local == | == Local == | ||
Line 7: | Line 7: | ||
== Stream == | == Stream == | ||
<pre>vlc --logo-file ''logo.png'' ''video.avi'' --sout "#transcode{vcodec=...,vb=...,sfilter=logo}:std{...}"</pre> | <pre>vlc --logo-file ''logo.png'' ''video.avi'' --sout "#transcode{vcodec=...,vb=...,sfilter=logo}:std{...}"</pre> | ||
+ | |||
+ | == Save the new video locally == | ||
+ | <pre>vlc --logo-file ''logo.png'' ''video.avi'' --sout "#transcode{vcodec=...,vb=...,sfilter=logo}:std{access=file,dst=''new_video.avi'' }</pre> |
Revision as of 12:29, 6 February 2007
Idea
This How To just explains how to use the logo filter in order to add a logo on your videos, like a TV.
Local
vlc --sub-filter logo --logo-file ''logo.png'' ''video.avi''
Stream
vlc --logo-file ''logo.png'' ''video.avi'' --sout "#transcode{vcodec=...,vb=...,sfilter=logo}:std{...}"
Save the new video locally
vlc --logo-file ''logo.png'' ''video.avi'' --sout "#transcode{vcodec=...,vb=...,sfilter=logo}:std{access=file,dst=''new_video.avi'' }