Difference between revisions of "VLC HowTo/Add a logo"

From VideoLAN Wiki
Jump to navigation Jump to search
m
m
Line 5: Line 5:
  
 
== Local ==
 
== Local ==
<pre>vlc --sub-filter logo --logo-file ''logo.png'' ''video.avi''</pre>
+
vlc --sub-filter logo --logo-file ''logo.png'' ''video.avi''
  
 
== Stream ==
 
== Stream ==
<pre>vlc --logo-file ''logo.png'' ''video.avi'' --sout "#transcode{vcodec=...,vb=...,sfilter=logo}:std{...}"</pre>
+
vlc --logo-file ''logo.png'' ''video.avi'' --sout "#transcode{vcodec=...,vb=...,sfilter=logo}:std{...}"
  
 
== Save the new video locally ==
 
== 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>
+
vlc --logo-file ''logo.png'' ''video.avi'' --sout "#transcode{vcodec=...,vb=...,sfilter=logo}:std{access=file,dst=''new_video.avi'' }

Revision as of 10:49, 12 February 2007

This page describes how to add a logo on your video using the logo filter. Other "how to" pages

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 }