-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An idea for a useful new feature #8
Comments
Isn't this the same thing what you want? |
RIFE mode seems to be very limited. Max 3 frames, no model selection. |
The required feature is out of the scope of this plugin. I attached a modified version of your script. It takes array for X and N. It has also added arg
|
Thanks, but unfortunately this does not solve the main problem I get with a large number of swaps. I thought that placing such operations in the RIFE.dll library would eliminate this problem and it would be possible to freely swap a large number of frames. Edit:
I changed some code because my AVS (latest) doesn't recognize the "continue" command |
Did you try RemapFrames or FrameSel+FrameRep? |
RemapFrames doesn't seem to work properly when inside a function. It takes frames from "last" instead of sourceClip. |
Many people as I see on the videohelp.com forum use RIFE to remove corrupted frames or entire sequences of frames.
I have a suggestion/idea to add such a function:
RIFE_ReplaceFrames(src, from_frame, number_of_frames, model (optionally)
where:
src = video
from_frame = from which frame to insert interpolated frames
number_of_frames = number of frames to replace
and/or
RIFE_ReplaceFrames(src, file="frames.txt")
where in the file there would be frame numbers to replace:
100,1 (1 frame with number 100)
101,2 (frames 101 and 102)
200,5 (frames from 200 to 204)
#300,5 (comment, ignore this line)
[...]
I have such a script in AviSynth, but it only works for about 10-15 frames in the script. Above that, a large increase in memory usage causes AviSynth error.
The text was updated successfully, but these errors were encountered: