Avisynth Note – Insert a Logo/Picture Before the Actual Video
September 12th, 2009
No comments
See the following code snippet:
# load the actual video video = AVISource("X:/stuff/episode.avi") # make a logo video from a picture logo = ImageSource("X:/stuff/logo.jpg", end=200).ConvertTOYV12().AssumeFPS(video) # add blank audio to the logo video logo = AudioDub(logo, BlankClip(video, length=200)) # Splice the logo video and the actual video together logo ++ video |