17 lines
492 B
Text
17 lines
492 B
Text
from vapoursynth import core
|
|
import awsmfunc as sgf
|
|
#import fvsfunc as fvf
|
|
|
|
#1 Import
|
|
src = core.ffms2.Source('./[BKL] Imouto Sae Ireba Ii [BD 1080p h264 TrueHD REMUX]/[BKL] Imouto Sae Ireba Ii - 10 [BD 1080p h264 TrueHD REMUX].mkv')
|
|
|
|
#Resize-720
|
|
#descale = fvf.Debilinear(src, 1280, 720)
|
|
resized = sgf.CropResize(clip=src, height=720, top=0, bottom=0)
|
|
|
|
resized.set_output()
|
|
|
|
#4 Select extract
|
|
#ext = sgf.SelectRangeEvery(clip=resized, every=4000, length=40, offset=10000)
|
|
#ext.set_output()
|
|
|