digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Capturing / Recording (http://www.digitalfaq.com/archives/capture/)
-   -   Adding text logos on top of captured videos? (http://www.digitalfaq.com/archives/capture/1338-adding-text-logos.html)

andybno1 10-15-2002 05:23 PM

Adding text logos on top of captured videos?
 
Hi,

how do I put text over the top of my caps to say I done the cap?

kwag 10-15-2002 07:03 PM

Re: text in videos?
 
Quote:

Originally Posted by andybno1
Hi,

how do I put text over the top of my caps to say I done the cap?

Use an .avs script and add something like this: subtitle("Hello, this is my title!")
Here's the .avs I used to make one of the mpegs of the KVCD Compatibility CD-R:

LoadPlugin("C:\encoding\MPEG2DEC.dll")
LoadPlugin("C:\encoding\decomb.dll")
mpeg2source("K:\sample.d2v")
Telecide()
Decimate()
subtitle(" KVCDx3 528x480 Template Modified to 544x480")
BilinearResize(528,384,30,0,660,480)
#TemporalSmoother(2,2)
AddBorders( 8,48,8,48 )

That's it! If you want to get more fancy, check www.avisynth.org

-kwag

andybno1 10-16-2002 07:52 AM

cheers kwag

andybno1 11-08-2002 08:02 PM

is it possible to put text onto a captured avi file whilst its recording? If not how do I put it on after capping?

VILLA21 11-09-2002 04:24 PM

Add Logo
 
If you want to add your Logo at the top left/right corner of your captured avi"s use the Logo filter for VirtualDub:
http://sauron.mordor.net/dgraft/logo.html

or if u use AVI2SVCD:
"...To add a logo is very easy and can be done in just few seconds. Do the following:

1) make the logo as a 24 bits bmp file, with n(x)m resolution. (my advice is to use m and n smaller than 100). Save this logo as, for example, mylogo.bmp;

2) open notepad and write a text with the following informations:

---------------------------------------------------------------------
1st_frame,last_frame,0,x_PLLTC,y_PLLTC,logoname.bm p
---------------------------------------------------------------------

where PLLTC means "position of the logo's left top corner". For example, if the movie has 100000 frames and you need to put a logo at the right botton corner of the screen, from the start to the middle of its length, you will write:

--------------------------------------
10,50000,0,400,400,mylogo.bmp
--------------------------------------

save this file as, for example, addlogo.txt;

3) now, start the DVD2SVCD encoding, checkmarking "edit when dvd2avi processing is done" at frameserve tab;

4)when the avisynth script edition pop up, add the following line:

-----------------------------------------------------------------
LoadPlugin("DRIVE:\path_to_dvd2svcd_folder\DVD2SVC D\AVISYN~1.DLL")
AvisynthSubtitler("DRIVE:\path_to_addlogo_file\"," addlogo.txt")
------------------------------------------------------------------

this can be done even if you are using permanent subtitles, as for example:

--------------------------------------------------------------------
LoadPlugin("C:\ARQUIV~1\DVD2SVCD\MPEG2Dec\mpeg2dec .dll")
LoadPlugin("C:\ARQUIV~1\DVD2SVCD\AVISYN~1.DLL")
mpeg2source("C:\DOCUME~1\MEUSDO~1\doct\DVD2AV~1.D2 V")
BilinearResize(448,448)
AddBorders(16,16,16,16)
AvisynthSubtitler("C:\DOCUME~1\MEUSDO~1\doctort\", "PermSubs.txt")
AvisynthSubtitler("C:\DOCUME~1\MEUSDO~1\doctort\", "addlogo.txt")
--------------------------------------------------------------------

5) save the avs file and open it with mediaplayer to verify if it is fine..."

It"s posted in the Doom"s forum months ago by "Mozart"

Hope that helps... :)

andybno1 11-09-2002 05:34 PM

cheers for that but I don't want to add a image, I want to put text ontop of the captured avi file.


All times are GMT -5. The time now is 12:31 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.