Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Nenel-FX

2
Posts
A member registered May 08, 2021

Recent community posts

I used a program created by min based on (avisynth) to remove duplicate frames without interpolating exclusively for anime and drawings. note this effect in order to use an interpolation program after removing duplicates for that the Flowframes in the mpdecimate code must have a limit on the maximum number of duplicate removal for this it would have to have the option to modify the mpdecimate code line or fix this code for exclusively for anime

mpdecimate=hi=64*12:lo=320*1.00:max=8

example had the option in (Frame De-Duplication Mode)

Anime De-Duplication with this code

note the program to remove duplicate frames without interpolating

it is still in development but as it is based on avisynth Flowframes has native support since it uses ffmpeg natively supports .avs (avisynth) files.

hello man I looked at the code of (Flowframes.exe)

and looked for the FFMPEG line. the code of "mpdecimate" has no limit for removing duplicate frames.mpdecimate = hi = 64 * 32: lo = 64 * 32: frac = 0.1

would have to add a limit for removing duplicate frames.

in the case for "animes"

example code for anime: "mpdecimate = hi = 64 * 32: lo = 64 * 32: frac = 0.1: max = 8" or max = 6. or give the option to edit the "mpdecimate" line.

I interpolated an anime scene and saw that it was necessary to limit the number of duplicate frames removed.

I feared modifying the code with the "010 editor" and modifying the code to: mpdecimate = hi = 64 * 12: lo = 320 * 1.00: max = 8

in case the "010 editor" does not let you add characters then I had to add a code with the same number of characters, otherwise the file would corrupt.

video with the original Flowframes.exe

video with the modified Flowframes.exe: mpdecimate=hi=64*12:lo=320*1.00:max=8