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 14th March 2002, 21:51   #1  |  Link
Atlantis
Registered User
 
Join Date: Feb 2002
Posts: 758
A simple duplicate for every frame?

I have a 15fps clip. I want to duplicate each frame and obtain a 30fps clip with the same duration? How can I do this in avisynth? Doubleweave doesn’t work, because it makes interlaced frames from my 15fps progressive frames. That’s not what I want! A simple duplicate for every frame.
Atlantis is offline   Reply With Quote
Old 14th March 2002, 23:35   #2  |  Link
Guest
Guest
 
Join Date: Jan 2002
Posts: 21,901
Here's a simple way:

clip=AVISource("movie.avi")
Interleave(clip,clip)
Guest is offline   Reply With Quote
Old 15th March 2002, 19:23   #3  |  Link
Atlantis
Registered User
 
Join Date: Feb 2002
Posts: 758
Thanks! But when I use it and process the avs file in VirtualDub, at the very end, VD crashes. I have to use premiere to make an intermediate 30 fps avi file.
Atlantis is offline   Reply With Quote
Old 15th March 2002, 23:54   #4  |  Link
trbarry
Registered User
 
trbarry's Avatar
 
Join Date: Oct 2001
Location: Gainesville FL USA
Posts: 2,092
I have sometimes used the following sequence to avoid having vdub read off the end of a file when DirectShowSource reports the wrong frame count.

video=DirectShowSource("D:\Buffy\Whatever.vob")
blanks=BlankClip(video,300)
trim(video+blanks,0,video.framecount+100)

- Tom
trbarry 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 05:04.


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