I'm looking for a good tool to make a rolling credit at the end of a video in the same way as with most commercial movies. It is a video of a choral production and I need to list the performers, producers, contributors, conductor et al at the end in the typical cinematic style rolling credits. I would appreciate any suggestions on good tools for this.
+ Reply to Thread
Results 1 to 8 of 8
-
-
Hi, if you're familiar with avisynth, it's a good free way to do this
Here are some example scripts
https://forum.videohelp.com/topic99389.html#textroll -
I wrote an AviSynth script for rolling credits which uses a bmp image. So you basically lay out your credits in a bmp image and then setup the script. Here it is:
Code:image= ImageReader("credits.bmp",0,1,1) # source is single image 720x2000 return scroll(image) function scroll(image) { vh=height(image) vw=width(image) fh=480 image=addborders(image,0,fh,0,fh) a=vh+fh-1 v=changefps(image,a).trim(0,a) v=animate(0,a,"crop",v,0,0,vw,fh, v,0,a,vw,fh) return interlaced(v)# video #return progressive(v)# film } function interlaced(v) { #v=v.SeparateFields.SelectEvery(4, 1,2) # slow v=v.SeparateFields.SelectEvery(8, 1,4) # fast #v=v.SeparateFields.SelectEvery(16, 1,8) # supa-fast v=weave(v) return v.assumeFPS(29.970) } function progressive(v) { #v=v # progessive film, very slow v=SelectEvery(v,2, 0) # progressive film, slow #v=SelectEvery(v,4, 0) # progressive film, fast #v=SelectEvery(v,8, 0) # progressive film, supa-fast return v.assumeFPS(23.976) }
Darryl -
Believe it or not I remember being in a Studio audience watching a game show taping and at the end of the show they used the simple method of scrolling the text at the end of having all the text on a card and panning the camera from top to bottom.
So many ways to one destination.
If I was doing it that way I'd use one of the inexpensive Chroma Key kits like they sell in the B&M stores. The one advantage would be Now you'd have the Chroma key kit and be able to do other effects. Overlay a announcer pointing out each person as the name is displayed or spoken. -
BluffTitler requires DirectX version June 2007 or later.
BluffTitler costs € 39.95
Similar Threads
-
Rolling Shutter and Deshaking
By blewyn in forum EditingReplies: 8Last Post: 5th Feb 2012, 15:45 -
VHS with interlaced AND rolling FIELDS?
By Heiler in forum RestorationReplies: 22Last Post: 22nd Oct 2011, 17:08 -
rolling/jumping with VHSc
By highaim in forum Newbie / General discussionsReplies: 2Last Post: 25th Jul 2009, 21:03 -
How Do I Split screen Half Rolling Credits-Half Video in Vegas
By Ray & Paula in forum EditingReplies: 1Last Post: 7th Apr 2008, 08:35 -
Vegas rolling text question
By RKelly in forum EditingReplies: 3Last Post: 19th Jun 2007, 01:15