Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. movie = AVISource("movie.avi").ConvertToRGB24().ChangeFPS(60)
  2. resizedmovie = movie.PointResize(768,720)
  3. LOGO1 = AVISource("LOGO1.avi").ConvertToRGB24()
  4. reLOGO1 = LOGO1.PointResize(768,720)
  5. LOGO2 = AVISource("LOGO2Sub.avi").ConvertToRGB24().ChangeFPS(60)
  6. final = reLOGO1 + LOGO2 + resizedmovie
  7. Subtitle("Testing", y=400, align=8, first_frame=2, last_frame=10, size=13.0, text_color=$30FFFFFF, halo_color=$00000000, lsp=1)
  8. final.ConvertToYV24(chromaresample="point", matrix="PC.601")
  9. final.ConvertToYV12(chromaresample="lanczos4", matrix="PC.601")
  10. return final
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement