Hi
I've just started making dvd out of my home video of family and stuff.
Is there any good program to make end credits.
I want text and maby pictures and sound on it, and
it the text should scroll down, like a real end credits on
a movie.
Is there a simple way to do it???
thanks
from
Norway
+ Reply to Thread
Results 1 to 15 of 15
-
-
If you want to use something simple and free there's Windows Movie Maker.
-
While some people will say this is waaaaay too hard, AVISynth can do this for you:
https://www.videohelp.com/forum/userguides/99389.php#textrollIf in doubt, Google it. -
Adobe Premiere Pro 1.5 has yet to fail it. Titles also provide a lot of ways to create credits.
-
Asked a while ago, and loads of suggestions in here:
www.videohelp.com/forum/viewtopic.php?t=264833There is some corner of a foreign field that is forever England: Telstra Stadium, Sydney, 22/11/2003.
Carpe diem.
If you're not living on the edge, you're taking up too much room. -
Originally Posted by jimmalenko
Avisynth is definitely the way to go and well worth your time to learn. It's free and powerful.
-
I just started playing around with AVISynth last week. It was very confusing when I first started, but it's making more sense now.
I copied the exact code of Rolling text (upwards), changed the AviSource and saved the script. When I "play" it in WMP, I get an error. "Script error: syntax error." It lists the path name and then says "line2, column 0."
Here is the first part of my script. What should I look at changing? I just wanted to see it work before attempting to use it in one of my projects.
Code:AVISource("D:ben.avi") Animate(400,600,"subtitle","editor.......Bob",100,500,400,600,"Arial", 40,$FFFFFF,"editor.......Bob",100,100,400,600,"Arial",40,$FFFFFF) Animate(420,620,"subtitle","camera.......Jim",100,500,420,620,"Arial", 40,$FFFFFF,"camera.......Jim",100,100,420,620,"Arial",40,$FFFFFF) Animate(440,640,"subtitle","regie.......susi",100,500,440,640,"Arial", 40,$FFFFFF,"regie.......susi",100,100,440,640,"Arial",40,$FFFFFF) Animate(460,660,"subtitle","producer......Ed",100,500,460,660,"Arial", 40,$FFFFFF,"producer......Ed",100,100,460,660,"Arial",40,$FFFFFF) Animate(480,680,"subtitle","drinks.......Mag",100,500,480,680,"Arial", 40,$FFFFFF,"drinks.......Mag",100,100,480,680,"Arial",40,$FFFFFF)
44E -
Is the code for your first Animate command, on line 2, all on line 2? If not then that's your problem. You need a line continuation character, which is a \ to spread the command across multiple lines.
-
Originally Posted by rkr1958
Originally Posted by rkr1958
Is it me, or am I expecting too much from someone's sample code? Why would anyone put up sample code for a noob that needs to be edited or reformatted? Obviously, the path and file names need to be edited, but if I new the correct code/format to use, then I wouldn't need the sample code.I know, no one gets paid to do this and I do appreciate everyone's help. I just thought it was odd.
44E -
I just copied and pasted your code, adjusted each line to eliminate word wrap, changed the source video and it worked for me. How long is "ben.avi" and are you looking at frames 400-680 to see the credits?
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Originally Posted by gadgetguy
I can kinda see what's going on in the code, as far as your 400-680 reference. Let's just look at one line.
Code:Animate(400,600,"subtitle","editor.......Bob", 100,500,400,600,"Arial",40,$FFFFFF,"editor.......Bob",100,100,400,600,"Arial",40,$FFFFFF)
44E -
The short answer is yes, change the 400s to 40s.
The long answer is that the animate function allows you define the frame range and filter that you want to use and the start parameters and end parameters of that filter. You can think of the animate function as a "wrapper" around the filter to apply it to a range of frames and give starting and ending parameters for the filter. So in this case, the subtitle filter wants the position and the frame range. So you are defining the starting position and the ending position and you end up defining the frame range three times (Once for animate, and start and end for the subtitle filter)."Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Very good info, gadgetguy. Thank you!
I'm a Michigander too.44E
Similar Threads
-
End Credits Music Question
By Simmons in forum AudioReplies: 0Last Post: 18th Jun 2011, 17:14 -
low end quadro is 5 times faster than high end gaming card
By deadrats in forum ComputerReplies: 4Last Post: 7th Apr 2011, 15:42 -
How to remove end credits from a music video
By Dinu Bandyopadhyay in forum EditingReplies: 1Last Post: 28th Oct 2007, 20:22 -
Logos in Credits
By ehmjay in forum MacReplies: 6Last Post: 13th Sep 2007, 21:27 -
Low End Video Card w/ adapter vs. Low End DVD player
By enter8 in forum Media Center PC / MediaCentersReplies: 6Last Post: 20th Aug 2007, 15:45