Hello,
I have used the filters below to filter and scale my video but the result is video with 23.976 fps but the original one is 29.970 fps. Is it good to keep the fps 23.976 or i have to keep the original 29.970 fps ?!
Best Regards,Code:AviSource("01.avi") AssumeTFF() TFM() TDecimate() Deblock() UnDot() McTemporalDenoise(settings="MEDIUM") nnedi3_rpow2(2) LanczosResize(1024,960) BilinearResize(1024,768) aWarpSharp(depth=32)
+ Reply to Thread
Results 1 to 24 of 24
-
-
Thanks jagabo,
Can i reverse TDecimate() filter work with out re-filter the video again ?! -
-
What i want to do is to scale my original video from 640x480 to 1024x768. After that i will add 2nd sound track from 25 pfs video file to it. This is the main idea.
-
Movies aren't shot at 29.97 fps. They're shot at 24 fps. If this is a movie it's probably been screwed up if it's a 29.97 fps AVI. You need to deterimine exactly what you have then decide to handle it. Maybe you can post a short sample here.
-
That video is 29.97 fps but every 5th frame is a duplicate. The best way to handle it is to remove that duplicate frame with TDecimate, leaving 23.976 fps. If you're going to mux it with a PAL audio track you'll probably have to change the frame rate to 25 fps with AssumeFPS. So your script will look like:
Code:AviSource("01.avi") TDecimate() AssumeFPS(25) Deblock() UnDot() McTemporalDenoise(settings="MEDIUM") nnedi3_rpow2(2) LanczosResize(1024,960) BilinearResize(1024,768) aWarpSharp(depth=32)
-
Thanks jagabo,
Is it the best way to change the audio sample rate to match the video file or it is fine to change video frame rate ?! -
You can do it either way. I'd change the video frame rate to match the audio length -- since it's just a matter of adding AssumeFPS() to your script. Unless the NTSC and PAL versions of the episode are different (videos are often edited for content in different countries).
-
Ok, you said every 5th frame is a duplicate. Can you explain in more details. please ?!
-
I'm not jagabo but it's not so hard to explain. It's anime, apparently, so there are lots of duplicate frames anyway. But in places where every frame is supposed to be unique - a slow panning shot, maybe - there are repeated frames making for jerky playing video. This is evidence that the source is really 23.976fps and duplicates should be removed throughout using the method he suggested.
LanczosResize(1024,960)
BilinearResize(1024,768)
Is there any particular reason you're resizing twice? And is the source so bad that it needs deblocking? The Deblock filter is pretty destructive.
-
Thanks manono,
I used jagabo method tell me in other post and i'm no sure if it good or not for this video source
I'm not sure if i want Deblock or UnDot filters but this script a lot of people recommend it to me so i use it and gave me a very good result. Is it bad something the video don't need it ?! What if i need it after the re-sizing the video ?!Last edited by SB4; 4th Aug 2013 at 18:11.
-
Try using HQDeRing() instead of UnDot(). Look at resizing in nnedi3_rpow2() only:
nnedi3_rpow2(2, cshift="LanczosResize", fwidth=1024, fheight=768) -
Ok, there is two HQDeRing() filters. The first one use MaskTools v1.4.9 and the second one use MaskTools v2. Which one i have to use...?!
-
I have used the one use MaskTools v2. Is there any difference if i used HQDeRing & Deblock filters after or before re-seizing...?!
-
-
Can i ask one more question. please ?!
I want to know What is the mean of Debanding, Deblocking, Dehaloing & Deringing ?!
I need to know if my video need it or not in more details... ?! -
Banded:
Not Banded:
8x8 Blocks from over compression (4x enlarged):
Deblocked (4x enlarged):
A blurry image (4x enlargement):
When a sharpening filter creates overshoots (notice how there's a dark band to the left of the transition, and a light band to the right, a DeHalo filter tries to fix this):
instead of (no sharpen filter does this well):
Ringing artifacts (8x enlarged, note the small dots):
After HQDeRing():
Last edited by jagabo; 5th Aug 2013 at 17:04.
-
Hello again
I have question. In the image below is it need Deblocking, Deringing or just Denoise filter...?!
-
It needs deblocking. It may need deringing -- it's hard to tell from the subject matter. But since you uploaded a JPG image one can't tell how much of the problems are from the JPG compression and how much was in the original video.
Similar Threads
-
How to convert mpeg4 video (h 264) 25 fps to 23.98 fps?
By Novato07 in forum Video ConversionReplies: 1Last Post: 1st Jul 2013, 05:30 -
Sync - Resample audio from video source of 29 FPS to 25 FPS
By Chastepe in forum AudioReplies: 6Last Post: 17th Oct 2012, 10:35 -
Is the FPS of a MiniDV camera higher than the FPS of DVD video?
By granturissimus in forum Newbie / General discussionsReplies: 8Last Post: 9th Jan 2011, 05:40 -
FAVC Changed My Video's A/R From 16:9 to 4:3
By moviebuff2 in forum Newbie / General discussionsReplies: 21Last Post: 28th Oct 2008, 21:12 -
Sync 29.970 FPS audio to 23.976 FPS video?
By LCO1971 in forum Newbie / General discussionsReplies: 3Last Post: 13th Sep 2008, 15:23