Turtle speed AVS
- Krisqo
- Cooking Oil
- Joined: Mon Jul 07, 2003 1:22 pm
- Status: W.O.A (Waiting on Aion)
- Location: Moderating the Adobe Forums
Turtle speed AVS
I'm trying to make an amv using the last the episodes of Madlax using AVS Scrips. They run fine in VDubMod, but when I import them into Premiere Pro, they run slowere than a snail in both the monitor and in the timeline. I've tried playing with the memory, but that has proved frutile. Can anyone explain what might be causing this.
Here is the script I used for all of them:
SetMemoryMax(16)
mpeg2source("C:\Documents and Settings\Krisqo\Desktop\AMV Sources\MADLAX\madlax24.d2v",cpu=4,upconv=true)
Telecide(order=1,guide=1)
Decimate(cycle=5,mode=2)
AssumeFPS(29.97)
#ConvertToYV12()
#Deen("w3d",4,7,9)
#mftoon(strength=180)
#tweak(cont=1.05,sat=1.1,bright=0,hue=2)
#ColorYUV(gain_u=10,gain_v=5)
#ConvertToRGB32()
Here is the script I used for all of them:
SetMemoryMax(16)
mpeg2source("C:\Documents and Settings\Krisqo\Desktop\AMV Sources\MADLAX\madlax24.d2v",cpu=4,upconv=true)
Telecide(order=1,guide=1)
Decimate(cycle=5,mode=2)
AssumeFPS(29.97)
#ConvertToYV12()
#Deen("w3d",4,7,9)
#mftoon(strength=180)
#tweak(cont=1.05,sat=1.1,bright=0,hue=2)
#ColorYUV(gain_u=10,gain_v=5)
#ConvertToRGB32()
- Krisqo
- Cooking Oil
- Joined: Mon Jul 07, 2003 1:22 pm
- Status: W.O.A (Waiting on Aion)
- Location: Moderating the Adobe Forums
- BasharOfTheAges
- Just zis guy, you know?
- Joined: Tue Sep 14, 2004 11:32 pm
- Status: Breathing
- Location: Merrimack, NH
That script will run very slow. If you want to actually have it work clip the episodes before hand and import those. You shouldn't have more than 5-10GB of clips (probably closer to 5) when it's all said and done.
Anime Boston Fan Creations Coordinator (2019-2023)
Anime Boston Fan Creations Staff (2016-2018)
Another Anime Convention AMV Contest Coordinator 2008-2016
| | |
Anime Boston Fan Creations Staff (2016-2018)
Another Anime Convention AMV Contest Coordinator 2008-2016
| | |
- Melanchthon
- Joined: Thu Sep 02, 2004 11:12 am
Re: Turtle speed AVS
If that's your import script then it should run as quickly in Premiere as it does in VDM or Media Player (which should be pretty quick anyway, as you have the slow filters commented out).Krisqo wrote:Here is the script I used for all of them:
SetMemoryMax(16)
mpeg2source("C:\Documents and Settings\Krisqo\Desktop\AMV Sources\MADLAX\madlax24.d2v",cpu=4,upconv=true)
Telecide(order=1,guide=1)
Decimate(cycle=5,mode=2)
AssumeFPS(29.97)
#ConvertToYV12()
#Deen("w3d",4,7,9)
#mftoon(strength=180)
#tweak(cont=1.05,sat=1.1,bright=0,hue=2)
#ColorYUV(gain_u=10,gain_v=5)
#ConvertToRGB32()
Try uncommenting the last line, as Premiere needs a script that produces RGB32 output. If you're uncommenting all the lines before importing the script... don't. Or at the very least leave out mftoon and maybe Deen.
- Gepetto
- Mr. Poopy Pants
- Joined: Thu Jun 10, 2004 10:11 pm
- Status: Bored to tears
- Location: The Tokyo Settlement
- Contact:
Re: Turtle speed AVS
Convert the clips to Lagarith and delete the riginal VOB files. You have the DVDs so you can rip them again if you need to, and this way you don't lose that much hard drive space.
Premiere converts footage to RGB when importing, so it doesn't make a difference.Melanchthon wrote:Try uncommenting the last line, as Premiere needs a script that produces RGB32 output.
And God spoke unto the Chicken, and He said: "Thou shalt crosseth the road", and the Chicken did cross the road, and there was much rejoicing.
My DeviantART profile
My DeviantART profile
- devilmaykickass
- Joined: Mon May 12, 2003 8:47 pm
I always edit with scripts only contaning deinterlacing, cropping, and resizing, something like:
Then when I'm about to do my final export, I close my editing program (Premiere) and then finalize the scripts:mpeg2source("C:\STARS_VOL_2\Eternal Transformation.d2v")
Telecide(order=1,guide=1)
Decimate(cycle=5,mode=2)
crop(2,2,-0,-0)
lanczosresize(640,480)
And then I export. Attempting to edit with the entire finalized script would be nothing short of insane.mpeg2source("C:\STARS_VOL_2\Eternal Transformation.d2v")
Telecide(order=1,guide=1)
Decimate(cycle=5,mode=2)
blur(0,1)
deen("a3d",4,10,12)
fastlinedarken()
tweak(cont=1.1,sat=1.4)
crop(2,2,-0,-0)
lanczosresize(640,480)
- x_rex30
- Joined: Tue Apr 10, 2001 4:30 pm
Re: Turtle speed AVS
I don't do that. :\ Lagarith still takes a lot of space.Gepetto wrote:Convert the clips to Lagarith and delete the riginal VOB files. You have the DVDs so you can rip them again if you need to, and this way you don't lose that much hard drive space.
I don't know if it works for scripts in Premiere but what I do when I'm in Vegas, I import the script with very basic settings like deinterlacing and frames per second changes if needed.. that's all. When I'm ready to render my footage.. I add all that extra crap to my script and Vegas sees the changes and doesn't move around the footage at all. Then you don't have to worry about your scripts running slow while editing because you have all these advanced settings in them. Just add all that extra garbage when you're about to render. My not be the best choice but IMO it's and works for me.
- x_rex30
- Joined: Tue Apr 10, 2001 4:30 pm
OK, so it does work with premiere. :\devilmaykickass wrote:I always edit with scripts only contaning deinterlacing, cropping, and resizing, something like:
Then when I'm about to do my final export, I close my editing program (Premiere) and then finalize the scripts:mpeg2source("C:\STARS_VOL_2\Eternal Transformation.d2v")
Telecide(order=1,guide=1)
Decimate(cycle=5,mode=2)
crop(2,2,-0,-0)
lanczosresize(640,480)
And then I export. Attempting to edit with the entire finalized script would be nothing short of insane.mpeg2source("C:\STARS_VOL_2\Eternal Transformation.d2v")
Telecide(order=1,guide=1)
Decimate(cycle=5,mode=2)
blur(0,1)
deen("a3d",4,10,12)
fastlinedarken()
tweak(cont=1.1,sat=1.4)
crop(2,2,-0,-0)
lanczosresize(640,480)
Yeah so do what devilmaykickass suggested. It should work fine.
- Gepetto
- Mr. Poopy Pants
- Joined: Thu Jun 10, 2004 10:11 pm
- Status: Bored to tears
- Location: The Tokyo Settlement
- Contact:
Re: Turtle speed AVS
I do the same thing in Premiere, and it does work. But his script already has everything commented out except for the deintelacing and the fps change, and it's still slow.x_rex30 wrote:I don't know if it works for scripts in Premiere but what I do when I'm in Vegas, I import the script with very basic settings like deinterlacing and frames per second changes if needed.. that's all. When I'm ready to render my footage.. I add all that extra crap to my script and Vegas sees the changes and doesn't move around the footage at all. Then you don't have to worry about your scripts running slow while editing because you have all these advanced settings in them. Just add all that extra garbage when you're about to render. My not be the best choice but IMO it's and works for me.
And God spoke unto the Chicken, and He said: "Thou shalt crosseth the road", and the Chicken did cross the road, and there was much rejoicing.
My DeviantART profile
My DeviantART profile



