+ Reply to Thread
Results 1 to 30 of 49
-
Besides the point, all of you people: "poisondeathray", "jagabo", "AlanHK" and others. You know who you are. It's painfully obvious what you're doing. You have no right to manipulate this forum. It doesn't legally belong to you. Stop stalking me and responding to every single thread I make while blocking REAL users and regulars on this forum from responding to them. Badrick, a little help?
-
-
Sorry, it's only painfully obvious to me that you're a nutcase.
So I'll delete the earlier post I made that answered your question and let all those REAL users and regulars deal with you.
I've added you to my Ignore list so I won't be tempted to answer any of your posts in future.
Bye.Last edited by AlanHK; 12th Feb 2010 at 10:43.
-
That's 29.97 fps interlaced video (59.94 fields per second) that was compressed as if it was progressive. You can force deinterlacing during playback in a media player or deinterlace and reencode. For example:
Code:DirectShowSource("Anno clip 1.mp4") AssumeTFF() Crop(4,0,-0,-0) ConvertToYV12() # I have CoreAVC set up to output YUY2 only, TempGaussMC requires YV12 TempGaussMC_beta1mod()
If you want something faster (TempGaussMC is very slow) try Yadif(order=1) for 30 fps, Yadif(mode=1, order=1) for 60 fps.Last edited by jagabo; 18th Feb 2010 at 08:59.
-
So the source file was just compressed without inverse telecining? I don't want to deinterlace it all at once. What would the script have to look like to just decode the video too it's original interlaced 29.97 fps form? Couldn't it just be IVTC'd after decoding?
Last edited by Eva-Unit01; 18th Feb 2010 at 09:51.
-
Well what is the sample video then? The above code did not work. Tempgaussmc is not a recognized command.
-
You need to download and install all the appropriate filters for TempGaussMC_beta1mod().
http://avisynth.org/mediawiki/TempGaussMC#Required_Plugins
-
-
As jagabo said just below the script, it bobs it to progressive 60fps. You can make it 30fps by adding SelectEven() below the TempGauss line.
What do you want to do with this thing? If for DVD, do a proper resize (708x480 is non-compliant) and encode for DVD as-is - by keeping it interlaced.
No, it was never telecined. It was shot using an interlaced 29.97fps video camera. And if you really want to deinterlace it (why?) you can do that in the script without making a lossless AVI. -
DirectShowSource("Anno clip 1.mp4")
Opens source file.
AssumeTFF()
Tells AviSynth the frames are top field first (interlaced).
Crop(4,0,-0,-0)
Removes 4 lines from the left side of the frame to make it mod 16 (and there was some black border there anyway.
ConvertToYV12() # I have CoreAVC set up to output YUY2 only, TempGaussMC requires YV12
Converts YUY2 to YV12.
TempGaussMC_beta1mod()
A very smart bob deinterlacer that converts each field into a frame using data from other fields/frames to fill in the gaps.Last edited by jagabo; 18th Feb 2010 at 11:58.
-
My point is, why does the resulting file have to be halved 30 fps if it will already be deinterlaced? Are you saying that doing the above operation will completely eliminate the combing artifacts? I assume that 30 fps in not the same as progressive footage and thus my question, "how do i convert this footage to 23.97 fps and eliminate the combing artifacts?" is not being answered. Would I have to change the fps rate after the TempGauss plugin completes the edit?
My understanding is that all footage ripped from DVD as a VOB file is in telecine form (29.97 fps). Why then, does this footage which I know for a fact was ripped from DVD, not have to be Inverse Telecined, and thus converted to 23.97 frames per second (progressive)? -
Some DVDs are made from video (not film) footage which is 60 fields per second packaged into 30 interlaced frames per second on the DVD. You cannot create 24 progressive frames per second from 60 fields per second without getting jerky results because 60 is not integer multiple of 24 (2.5). You can create 30 progressive frames per second that plays pretty smoothly because 60 is an integer multiple of 30 (2).
-
That's what a deinterlacer does - it gets rid of the interlacing (combing, mice teeth, call it what you will). However, if this thing is movie length (as opposed to being music video length), you might find that TempGauss takes too long. You might be happy with a much faster deinterlacer, one like Yadif.
I assume that 30 fps in not the same as progressive footage...
...thus my question, "how do i convert this footage to 23.97 fps and eliminate the combing artifacts?"
Would I have to change the fps rate after the TempGauss plugin completes the edit?
My understanding is that all footage ripped from DVD as a VOB file is in telecine form (29.97 fps).
Why then, does this footage which I know for a fact was ripped from DVD, not have to be Inverse Telecined, and thus converted to 23.97 frames per second (progressive)?
Just as an aside, why is this thread entititled 25 fps to 23.97 fps (film)? Nowhere does 25fps even crop up. -
-
Follow the link I gave you earlier. And put TempGaussMC_Beta1mod.avis in your plugins folder.
-
I did. It still says an error "There is no command called 'msuper'" within the tempgauss script.
-
I found this pieece of ....
"Politely" i could get more by the members.
DirectShowSource("C:\Users\...\...\video's name.mp4", fps=25, convertfps=true)
ConvertToYV12()
Lanczos4Resize(720,480)
AssumeFPS(23.97)
Gentlement :
You owe a "gui", software, or something (made by you) for the forum...!
Thanks.
Similar Threads
-
Encode in Interlaced or Deinterlaced w/Pulldown?
By CubDukat in forum Video ConversionReplies: 4Last Post: 19th Jun 2011, 17:29 -
Progressive sources -> Interlaced encode?
By ZQX in forum Video ConversionReplies: 5Last Post: 13th Apr 2009, 22:09 -
encode interlaced material witth ffmepg to MPEG2 but get progressive output
By Massa in forum ffmpegX general discussionReplies: 9Last Post: 13th Jan 2009, 12:42 -
Mainconcept MPEG-2 / H.264 refuse to encode interlaced footage
By Colmino in forum Video ConversionReplies: 0Last Post: 2nd Jul 2008, 15:23 -
DV type2 --> interlaced --> hybrid (FILM) ?
By PudyCat in forum Video ConversionReplies: 2Last Post: 16th May 2007, 09:36