v1 = LSMashVideoSource("D:\1.mp4")
how can i specify at what frame to start playback?
+ Reply to Thread
Results 1 to 3 of 3
-
-
http://avisynth.nl/index.php/Trim
Trim(start frame, end frame)
Numbers are inclusive
Use end frame = 0 if you want the until end
e.g start on frame 100, until the end of clip
Code:v1 = LSMashVideoSource("D:\1.mp4") v1 = v1.Trim(100,0) Return v1
-
Add:
v1 = Trim(v1, frame, 0)
return v1
Of course your number instead of "frame".
Oops. Already helped...
Similar Threads
-
Using Avisynth to play specific clips in sequence?
By Asterra in forum Newbie / General discussionsReplies: 1Last Post: 9th Dec 2022, 08:48 -
I-frame cutting sometimes results with video start at previous I-frame.
By TempUser_ in forum EditingReplies: 3Last Post: 25th Oct 2021, 01:40 -
Partial frame stab() as basis for whole frame? (Avisynth)
By lordsmurf in forum RestorationReplies: 28Last Post: 11th Sep 2020, 10:36 -
Set subtitles to start at a specific time code using Subtitle Edit
By seorimpaek in forum SubtitleReplies: 1Last Post: 28th Jul 2020, 22:03 -
AviSynth: Use the first frame of the delayed video instead of a black one.
By irn-bru in forum EditingReplies: 2Last Post: 27th Aug 2018, 10:47