I want my videos to be like these so people could have a better viewing experience:
https://www.youtube.com/watch?v=oIfYKm_vSfQ
https://www.youtube.com/watch?v=-dEaQIjJL7Q
https://www.youtube.com/watch?v=tLNYGZ3duko
https://www.youtube.com/watch?v=j0Wb_ROabWU
How do I convert videos to 60FPS to match the ones that I linked?
+ Reply to Thread
Results 1 to 12 of 12
-
-
Avisynth RIFE, you need plugin and models downloaded, it is a model based ai, so you download and can specify your model (for anime etc.). That gives better results than older SVP (which is faster though).
Principle is to have a true progressive video in your avisynth script, then you change format to RGB float, then using rife to interpolate and then changing video format back to your output format.
For rgb conversion use zimg/z.lib plugin not build in Avisynth format changer. You need to download it.
Code:# check manual, your colorspace_op depends on your video input: z_ConvertFormat(pixel_type="RGBPS", colorspace_op="709:709:709:l=>rgb:709:709:f") # check other argument choices (you might just need, factor_num=5, factor_den=2 : Rife() #back to your video format: z_ConvertFormat(pixel_type="YUV420P8", colorspace_op="rgb:709:709:f=>709:709:709:l")
Last edited by _Al_; 30th Nov 2023 at 10:02.
-
-
If video is interlaced, you need to deinterlace it first. But video might just need ivtc to be progressive, it depends on source. Click on those links for downloads. Those web sites provide explanations.
sorry, forgot important part, you need Nvidia card to use rifeLast edited by _Al_; 30th Nov 2023 at 10:42.
-
But is this better than MVTools2, SVPFlow, and all versions of SVP? What should I do after putting in the script in VirtualDub2?
-
rife is at least a generation better than svp if not more,
If having your script working in VirtualDub2 (you got first frame image on screen), then export that script into your output video. File /Save File, set video, audio, then filename, save as a type, click Save button -
Post #1...Those are all cartoons. Do adults really watch those?
Extraordinary claims require extraordinary evidence -Carl Sagan -
How do I find the colorspace_op of my input video? How do I download the models for rife? https://github.com/Asd-g/AviSynthPlus-RIFE/tree/main/models
Last edited by Jay123210599; 30th Nov 2023 at 12:46.
-
Go to the main page of that plugin, where you see green 'Code' button: https://github.com/Asd-g/AviSynthPlus-RIFE click that button and select download zip. Maybe you have to be registered. Unzip. Move that models directory where you need.
colorspace_op parameter changes input video MATRIX COEFFICIENT:TRANSFER CHARACTERISTIC:COLOR PRIMARIES:PIXEL RANGE
into a video with new MATRIX COEFFICIENT:TRANSFER CHARACTERISTIC:COLOR PRIMARIES:PIXEL RANGE, for that RGB float , full range
check that manual I posted for available values. Example, if you have m2v mpeg source from some dvd, those matrix, transfer and primaries might be "470bg", and video is most likely limited range, so "l", so your colorspace_op would be:
colorspace_op="470bg:470bg:470bg:l=>rgb:470bg:470b g:f"
If your source is from a web, you can use mediainfo, load your input and it will tell you those parameters. -
Similar Threads
-
Bitrate Viewer ... but for H265 / HEVC
By kalemvar1 in forum Video ConversionReplies: 5Last Post: 17th Jan 2024, 18:21 -
RecommendA good viewer or player for editing
By loninappleton in forum SubtitleReplies: 8Last Post: 11th Oct 2023, 17:32 -
Decode android video viewer
By alanonymous in forum Video Streaming DownloadingReplies: 0Last Post: 25th Sep 2021, 06:24 -
Bitrate Viewer has stopped working... all of a sudden
By Dioxaz in forum Newbie / General discussionsReplies: 0Last Post: 15th May 2019, 17:40 -
Custom viewer will not move to seek bar
By Budman1 in forum ProgrammingReplies: 0Last Post: 6th Feb 2019, 22:59