I'm trying to convert a video from 29 fps to 59 with ChangeFPS (to make it fluid and smooth) in Avisynth, but the result of the video is completely accelerated, could anyone help me with a script for this?
+ Reply to Thread
Results 1 to 13 of 13
-
-
Before changefps("ntsc_double") put a line above it with assumefps("ntsc_video"). If the video is vfr it will lose sync but for cfr wit should work fine.
if all else fails read the manual -
-
ChangeFPS should normally decimate/repeat frames to give the new rate. It wouldn't change the
speed, nor would it make motion look any smoother -
What is your entire script?
if all else fails read the manual -
-
SetFilterMTMode ("QTGMC", 2)
FFMPEGSource2("video.avi", atrack=-1)
ConverttoYV12()
temporaldegrain()
FineSharp()
Sharpen(0.2)
aWarpSharp(depth=03)
deflicker()
DeScratch(mindif=5, asym=10, maxgap=3, maxwidth=3, minlen=90, maxlen=2048, maxangle=5, blurlen=15, keep=30, border=2, modeY=3, modeU=3, modeV=3, mindifUV=0, mark=false, minwidth=1)
TTempSmooth()
Lanczos4Resize(1920,1080) -
If your video is interlaced you can just bob-deinterlace it
Code:AssumeTFF() #or BFF if the source is bottom field first QTGMC() #or use a bobber of your choice
Last edited by Sharc; 17th Nov 2023 at 01:36. Reason: typo
-
-
Are you sure it is progressive? Or is it telecined film? If so you would have to IVTC (Inverse Telecine) it at first.
For framerate conversion see:
http://avisynth.nl/index.php/FrameRateConverter
http://avisynth.nl/index.php/RIFELast edited by Sharc; 17th Nov 2023 at 08:42.
-
FFMPEGSource2("video.avi", atrack=-1)
ConverttoYV12()
temporaldegrain()
FineSharp()
Sharpen(0.2)
aWarpSharp(depth=03)
deflicker()
DeScratch(mindif=5, asym=10, maxgap=3, maxwidth=3, minlen=90, maxlen=2048, maxangle=5, blurlen=15, keep=30, border=2, modeY=3, modeU=3, modeV=3, mindifUV=0, mark=false, minwidth=1)
TTempSmooth()
Lanczos4Resize(1920,1080)
- DeFlicker should be first
- DeScratch should be second
- TemporalDegrain and TTempSmooth are similar. Use just one, for example TemporalDegrain2 with TR=3
- 3 different sharpeners to obtain what?
- Lanczos4Resize can be replaced by Nnedi3
- sharpen after denoise
- sharpen before of after upscale according to your source and preference
Similar Threads
-
Audio from 25 fps in 23,976 fps video always out of sync even if converted
By Huggy in forum AudioReplies: 5Last Post: 2nd May 2023, 04:05 -
Change FPS playback speed of mp4 Video without converting it
By DReffects in forum Video ConversionReplies: 2Last Post: 19th Apr 2022, 14:33 -
VSDC - Playback Issues With Sped Up Video
By JonathanStone in forum EditingReplies: 0Last Post: 26th Jan 2022, 16:50 -
Reboot: would TBC help converting old VHS cam vids w sped-up voices?
By LouGee in forum Video ConversionReplies: 0Last Post: 3rd May 2020, 13:04 -
How to Voice over a video section that is sped up and/or split?
By DataDude in forum Newbie / General discussionsReplies: 4Last Post: 17th Mar 2020, 06:39