Post subject: Recording the bar
Banned User, Former player
Joined: 12/23/2004
Posts: 1850
Is there a way to record or otherwise insert the screen spacer bar in recorded AVI files? Rotation can be fixed (-rotate=3) but I'm not so sure about the bar.
Perma-banned
Editor, Expert player (2318)
Joined: 5/15/2007
Posts: 3856
Location: Germany
I'd do it with Avisynth, like this: Top = Avisource("original.avi").Crop(0,0,-0,-192) Bottom = Avisource("original.avi").Crop(0,192,-0,-0).AddBorders(0,10,0,0, $000000) Final = StackVertical(Top,Bottom) return Final Of course, you may want to adjust the bar height.