Initial commit

This commit is contained in:
Rich
2023-12-06 14:24:46 +00:00
commit edf0f5e06a
53 changed files with 3665 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
'''
This example shows how you can merge and create new post processing functions
'''
from pyvidplayer2 import Video, PostProcessing
# applies a letterbox, cel shading, and greyscale to video
def custom_process(data):
return PostProcessing.letterbox(PostProcessing.cel_shading(PostProcessing.greyscale(data)))
Video(r"resources\birds.avi", post_process=custom_process).preview()