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 > NLE - Non Linear Editing

Reply
 
Thread Tools Display Modes
Old 7th November 2006, 17:20   #1  |  Link
MGRip
Registered User
 
Join Date: Sep 2003
Posts: 103
Slow motion that uses all the fields?

Hi,
I wondered how to do a slow motion to an interlaced dv pal footage while using 2 field (in premiere or ae).
beacause in ae it first deinterlaces (interpret footage) and then does a time wrap and in premiere it is the same as ae..

The final video have to be 25..(frame based)

Any solutions?

thanks
__________________
My video/photo blog site : MaGin Motion Pictures - www.maginmp.com
------------------------------------
Isn't that what we are fighting for?
Isn't that worth dying for?
MGRip is offline   Reply With Quote
Old 7th November 2006, 17:26   #2  |  Link
scharfis_brain
brainless
 
scharfis_brain's Avatar
 
Join Date: Mar 2003
Location: Germany
Posts: 3,484
easily achievable with AVISynth and one of its more advanced deinerlacers like TDeint(), SecureDeint(), MvBob() and McBob()
__________________
Don't forget the 'c'!

Don't PM me for technical support, please.
scharfis_brain is offline   Reply With Quote
Old 8th November 2006, 01:23   #3  |  Link
zambelli
Doom9ing since 2001
 
zambelli's Avatar
 
Join Date: Oct 2001
Location: Bellevue, WA, USA
Posts: 1,910
NTSC DV comes in really handy for stuff like this because you start out at 60 fields/sec and end up with 25 frames/sec - a nice 2.4x slowdown.
zambelli is offline   Reply With Quote
Old 8th November 2006, 13:28   #4  |  Link
MGRip
Registered User
 
Join Date: Sep 2003
Posts: 103
Quote:
Originally Posted by scharfis_brain View Post
easily achievable with AVISynth and one of its more advanced deinerlacers like TDeint(), SecureDeint(), MvBob() and McBob()
Can you explain how to do it?
I mean how to turn a dv interlaced (25fps) into frame based 50fps. The final result would be a frame based 25fps video that is X2 longer. (with AVISynth)

Thanks
__________________
My video/photo blog site : MaGin Motion Pictures - www.maginmp.com
------------------------------------
Isn't that what we are fighting for?
Isn't that worth dying for?
MGRip is offline   Reply With Quote
Old 8th November 2006, 16:31   #5  |  Link
scharfis_brain
brainless
 
scharfis_brain's Avatar
 
Join Date: Mar 2003
Location: Germany
Posts: 3,484
create an AVISynth script that has these contents:
PHP Code:
import("mvbob.avs")
import("mcbob.avs")
AVISOurce("dv.avi").assumebff()
#bob()
#TDeint(mode=1) #or
#Securebob() #or
#Mvbob() #or
#McBob() # just comment out one of them
assumefps(framerate/2.0
this will halve the playback speed. But of course motion isn't fluid anymore.

This can be avoided by using some motion compensated frameijnterpolation techniques:

PHP Code:
import("motionpretectedfps.avs")
import("mcbob.avs")
input=AVISOurce("dv.avi").assumebff()
input.McBob()
Motionprotectedfps(last.framerate()*?, iterate=4#replace ? by the factor you want to stretch your video
assumefps(input.framerate()*2)
Assumebff().ConverttoYUY2().separatefields().selectevery(4,0,3).weave() # reinterlace 
the result will be an interlaced videowith full fluidity of motion. But be careful. Complicated motion may cause motion artifacts But overall it seems pretty stable.
__________________
Don't forget the 'c'!

Don't PM me for technical support, please.
scharfis_brain is offline   Reply With Quote
Old 9th November 2006, 13:18   #6  |  Link
MGRip
Registered User
 
Join Date: Sep 2003
Posts: 103
Thanks!

I have succeeded to do this, a little different but the same idea using what you suggested.
Here is how I did it:
Quote:
AVISource("Clip.avi")
separatefields
assumefps(framerate/2.0)
then in virtualdub I resized it back to 720*576 (from 720*288) and saved it back to DV.

Works perfect! ulta smooth X0.5 slow motion without artifacts.

Now I just import the new file into AE or Premiere
__________________
My video/photo blog site : MaGin Motion Pictures - www.maginmp.com
------------------------------------
Isn't that what we are fighting for?
Isn't that worth dying for?
MGRip is offline   Reply With Quote
Old 9th November 2006, 13:36   #7  |  Link
scharfis_brain
brainless
 
scharfis_brain's Avatar
 
Join Date: Mar 2003
Location: Germany
Posts: 3,484
This method is fast, but is by far the W.O.R.S.T method to slow down a video (weird up & down bobbing, stairstepping and loss of resolution).

please use at least:

PHP Code:
AVISOurce("dv.avi").assumebff() 
bob() 
assumefps(framerate/2.0
but more advanced deinterlacers will give you a LOT more image detail and stability!

Avoid the method using separatefields() at any cost!
__________________
Don't forget the 'c'!

Don't PM me for technical support, please.
scharfis_brain is offline   Reply With Quote
Old 9th November 2006, 13:59   #8  |  Link
MGRip
Registered User
 
Join Date: Sep 2003
Posts: 103
OK i'll try it now
__________________
My video/photo blog site : MaGin Motion Pictures - www.maginmp.com
------------------------------------
Isn't that what we are fighting for?
Isn't that worth dying for?
MGRip is offline   Reply With Quote
Old 9th November 2006, 14:08   #9  |  Link
MGRip
Registered User
 
Join Date: Sep 2003
Posts: 103
Yep, you're right
your way is a little sharper
__________________
My video/photo blog site : MaGin Motion Pictures - www.maginmp.com
------------------------------------
Isn't that what we are fighting for?
Isn't that worth dying for?
MGRip is offline   Reply With Quote
Reply

Thread Tools
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 10:48.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.