Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage

Reply
 
Thread Tools Search this Thread Display Modes
Old 1st March 2002, 01:42   #1  |  Link
wing1
Registered User
 
Join Date: Feb 2002
Posts: 280
29.97fps->24fps with decomb3.x for capture video possible?

Can this filter be used to convert 29.97fps capture clip to 24fps film? If it can be done, what decimation setting should be used to perform such task?
wing1 is offline   Reply With Quote
Old 1st March 2002, 06:46   #2  |  Link
Guest
Guest
 
Join Date: Jan 2002
Posts: 21,901
If your captured video is 3:2 pulldown telecined progressive source, e.g., from film content, then yes. Your script could be as simple as this:

Telecide()
Decimate(cycle=5) # or even just Decimate()
Guest is offline   Reply With Quote
Old 1st March 2002, 17:46   #3  |  Link
whosithis
Registered User
 
Join Date: Feb 2002
Posts: 19
What if the source is NTSC 29.97 fps interlaced material? Is it possible to construct a 24 fps film progressive video stream from regular NTSC video?
whosithis is offline   Reply With Quote
Old 1st March 2002, 19:06   #4  |  Link
Guest
Guest
 
Join Date: Jan 2002
Posts: 21,901
Strictly speaking, a "progressive frame" is one composed of two fields sampled at the same moment in time. Interlaced video has fields all shot at different times (1/50 or 1/60th second apart). So strictly speaking the answer is no.

If we relax our definition of progressive to mean a frame without interlacing artifacts then you can consider that frames passed through FieldDeinterlace are converted to progressive frames. By then applying Decimate(cycle=5) you can reduce the frame rate. It will look a bit jerky, however, during fast pans and movements. The problem is that taking 30fps interlaced to 24fps by decimation will inevitably leave temporal gaps. You could instead convert by using frame blending after the FieldDeinterlace. I believe there is a filter available for doing that (ChangeFPS?), but Decomb won't do it.

In summary, you could try:

FieldDeinterlace(full=true)
Decimate(cycle=5)

or:

FieldDeinterlace(full=true)
ChangeFPS(???)
Guest is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 01:47.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.