VideoHelp Forum




+ Reply to Thread
Results 1 to 5 of 5
  1. So I can add a blank clip like this:

    Code:
    BlankClip(length=3000, width=1920, height=1080, fps=50, color=$000000)
    But then only the blankclip will be encoded. How do I add the blankclip onto the end of the video?
    Quote Quote  
  2. If you're opening the source in AvISynth too:

    Code:
    source = WhateverSource("SourceVideo.ext")
    blank = BlankClip(source, length=x) # a blank clip with the same properties as source
    source ++ blank // append blank to source
    If not, just create a blank clip with the correct properties, encode it with the same codec and settings as your source video. Then append the blank clip to the source video with an appropriate editor/muxer.
    Quote Quote  
  3. Any idea how I can add a paragraph of text left aligned to the blank clip? I can use subtitle but I have to manually wrap it. Is there anything that will autowrap text?
    Last edited by VideoFanatic; 22nd Jan 2016 at 12:50.
    Quote Quote  
  4. Import an image file with the text you want then overlay it onto the blank clip.

    Code:
    image = ImageSource(...)
    Overlay(blank, image, ...)
    Or just forget the blank clip and use ImageSource to make your blank clip with text.
    Last edited by jagabo; 22nd Jan 2016 at 15:39.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!