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

From VideoLAN Wiki
Jump to navigation Jump to search
m (Reverted edits by Kekelka (Talk); changed back to last version by Dionoea)
Line 1: Line 1:
 
{{howto|add a logo on your video using the logo filter}}
 
{{howto|add a logo on your video using the logo filter}}
  
hi:)
+
= Idea =
i think you need to try VidLogo...its very comfy to use and simple.
+
This How To just explains how to use the logo filter in order to add a logo on your videos, like a TV.
i use it already for 2month and do not complane)
+
 
GLuck:)
+
== 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'' }

Revision as of 09:31, 26 December 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 }