[FFmpeg-cvslog] Update overlay documentation after movie syntax update.

Stefano Sabatini git
Sun Feb 13 01:16:14 CET 2011


ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Fri Feb 11 13:39:31 2011 +0000| [b423996b573fb78bdcc6ef60f090e75fecb5f595] | committer: Michael Niedermayer

Update overlay documentation after movie syntax update.

Overlay documentation is still using the old unsupported syntax.

Signed-off-by: Mans Rullgard <mans at mansr.com>
(cherry picked from commit aa8ac53b51cd8b9446b50404660685041060fa4f)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b423996b573fb78bdcc6ef60f090e75fecb5f595
---

 doc/filters.texi |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/filters.texi b/doc/filters.texi
index 61d79fa..9b5cd0c 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -657,13 +657,13 @@ Follow some examples:
 overlay=main_w-overlay_w-10:main_h-overlay_h-10
 
 # insert a transparent PNG logo in the bottom left corner of the input
-movie=0:png:logo.png [logo];
+movie=logo.png [logo];
 [in][logo] overlay=10:main_h-overlay_h-10 [out]
 
 # insert 2 different transparent PNG logos (second logo on bottom
 # right corner):
-movie=0:png:logo1.png [logo1];
-movie=0:png:logo2.png [logo2];
+movie=logo1.png [logo1];
+movie=logo2.png [logo2];
 [in][logo1]       overlay=10:H-h-10 [in+logo1];
 [in+logo1][logo2] overlay=W-w-10:H-h-10 [out]
 




More information about the ffmpeg-cvslog mailing list