14 lines
393 B
Text
14 lines
393 B
Text
import vapoursynth as vs
|
|
import awsmfunc as sgf
|
|
core = vs.get_core()
|
|
|
|
#1 Import
|
|
src = core.ffms2.Source('./One Punch Man S02E02 2019 1080p Bluray REMUX AVC DTS-HD MA 2.0 Dual Audio -ZR-.mkv')
|
|
|
|
#Resize-720
|
|
resized = sgf.CropResize(clip=src, height=720, top=0, bottom=0)
|
|
|
|
#4 Select extract
|
|
#extract = sgf.SelectRangeEvery(clip=resized, every=4000, length=40, offset=10000)
|
|
|
|
resized.set_output()
|