How I can do it???
8)
+ Reply to Thread
Results 1 to 9 of 9
-
I think there's not too much to detail about it...
it' simple, I want only to add to my VCD file some text and logo
-
The best way I found is to add text to the avi file before conversion. I am assuming you want to add text over the top of your video. Ulead video studio can do this.
Craig -
hmm, for example you could gives us the information, which video editor you are willing to use or which encoder. Does "text" mean subtitles or is it one text line, that appears the entire running time?
-
I'm currently using TMPGEnc encoder...
I want one text line that appears the entire running time -
Since TMPGenc comes with a limited number of filters, you have to use a video editor like VirtualDub, Avisynth, Ulead video editor or Adobe Premiere. I will try to explain how to do it with Avisynth, because it is my favorite editor / frameserver.
First off there is no native Avisynth logo filter, so we have to use Donald Graft's logo filter for VirtualDub. This filter works only with RGB colors.
If you have installed VirtualDub, copy the filter to the VD\plugins\ subdirectory. Anyway you can copy it whereever you like.
Create a logo (24-bit-depth windows bitmap).
Write your Avisynth script.
Code:avisource("E:\matrix\matrix.avi")#replace with the correct \ path\filename BicubicResize(336,152,0,0.5,2,72,716,432) AddBorders(8,64,8,72) ConvertToRGB#if the source is YUY2 LoadVirtualdubPlugin("C:\Program Files\VirtualDub-1_4_10\plugins" \ +"\logo.vdf","VD_Logo")#replace with the correct path\filename VD_Logo(16,16,255,1,255,255,255,0,"e:\pics\logo2.bmp",0,0,0,0,0,0,0) #what does it mean? In order: position x, position y, alpha blend, \ transparency yes/no, R,G,B,tolerance,filename,animate yes no, \ start,duration, loop,fadein,fadeoutend,fadeoutlength ConvertToYUY2
If you want to add only a text line, you can use Avisynth's subtitle filter.
Code:avisource("E:\matrix\matrix.avi")#replace with the correct \ path\filename BicubicResize(336,152,0,0.5,2,72,716,432) AddBorders(8,64,8,72) Subtitle("made by hardrock",16,16,0,1000,"Arial",24,$FF0000) Subtitle("have fun",16,46,0,1000,"Arial",24,$FF0000) #what does it mean? in order: text, position x, position y, \ 1st frame,lastframe, \ "font name",point size,text color as hexadecimal \ RGB values but start with a $ instead of #. If you want a \ 2nd or more lines, youhave to chain several subtitle \ filters together. ConvertToYUY2#if the source is RGB
Hope it helps. -
You can use VirtualDub and the logo filter. Maybe you will find that the easier way because it is a GUI. This is pretty easy editing and you can frameserve with VD to TMPGEnc. Avisynth is the way to go if you want to do more advanced edits and frameserve.
Similar Threads
-
Adding logo
By kenryuakuma in forum Newbie / General discussionsReplies: 0Last Post: 4th Nov 2011, 01:49 -
Text Logo Sub Help
By kenryuakuma in forum SubtitleReplies: 26Last Post: 16th Oct 2010, 19:31 -
Adding a text logo to a video file without re-saving it to another file?
By coxanhvn in forum EditingReplies: 4Last Post: 19th Dec 2008, 15:03 -
Adding animated logo to an avi file
By andy_blah in forum EditingReplies: 17Last Post: 27th Aug 2008, 21:03 -
Adding text over original text
By stixster in forum EditingReplies: 3Last Post: 17th Jun 2008, 05:14