So I can add a blank clip like this:
But then only the blankclip will be encoded. How do I add the blankclip onto the end of the video?Code:BlankClip(length=3000, width=1920, height=1080, fps=50, color=$000000)
+ Reply to Thread
Results 1 to 5 of 5
-
-
If you're opening the source in AvISynth too:
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.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 -
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 13:50.
-
Import an image file with the text you want then overlay it onto the blank clip.
Or just forget the blank clip and use ImageSource to make your blank clip with text.Code:image = ImageSource(...) Overlay(blank, image, ...)
Last edited by jagabo; 22nd Jan 2016 at 16:39.
Similar Threads
-
Batch Video Joining (same video at beginning and end, different middle)
By mrloudcry in forum EditingReplies: 2Last Post: 11th Dec 2015, 19:18 -
Snipping off the end of a video
By anghammarad in forum Newbie / General discussionsReplies: 2Last Post: 8th Dec 2015, 20:35 -
Can someone add batch encoding to this x265 ffmp front end (written in ahk)
By ezcapper in forum Video ConversionReplies: 0Last Post: 5th Jul 2015, 15:13 -
End Zone video
By sgirard in forum Newbie / General discussionsReplies: 2Last Post: 20th Dec 2014, 15:57 -
low end quadro is 5 times faster than high end gaming card
By deadrats in forum ComputerReplies: 4Last Post: 7th Apr 2011, 16:42


Quote