PDA

View Full Version : Re-encode?


rockstar1
28th July 2008, 03:22
Well, I have avs script and using the script I make an avi fake with FFdshow. Because I editing video with After Effects, so when I finished I encode a lossless avi with lagarith codec.
But I have one question.
I must make an avs script to encode this video to mp4. So the avs script must have the same filters? Or only I must load the .avi?

Pd: Saludos

Sorry for my English:D

neuron2
28th July 2008, 03:35
I must make an avs script to encode this video to mp4. So the avs script must have the same filters? Same filters as what?

You should be able to just use AVISource() in your script.

rockstar1
28th July 2008, 08:01
Oh Well, the first scritp use this filters:
#Video



mpeg2source("C:\Documents and Settings\Cabrera\Mis documentos\DVD1 Shigofumi\Shigofumi 01-02.d2v")





#Script



colormatrix(mode="rec.709->rec.601")

Telecide(order=1,guide=1,vthresh=0,dthresh=0,post=2,blend=true)

Tweak(hue=0.0, sat=1, bright=0.0, cont=1)

TemporalCleaner (3,7)

edeen (3,12,20,2,2,true)

mipsmooth (preset = "AnimeHQ")

asharp(1)

awarpsharp ()

Crop(8,0,-8,0)

LanczosResize(720, 480)

Dup (threshold=1, blend= true, maxcopies= 8)

textsub("C:\Documents and Settings\Cabrera\Mis documentos\Shigofumi 01.ass")

When I finished to use After Effects, I encode an .avi using Lagartih.
So I must to re-encode the video with H.264 and mp4. But I don't know if I must reloaded the same filters (but chance mpeg2source to AVISource() and quit Dup and textsub). Or make avs script only use the filter AVISource().

PD: Saludos

mikeytown2
28th July 2008, 08:20
Sounds like all you need to do is make an avs file that uses your Lagartih avi as input. AVISource() is all you need.
Are you using MeGui?

rockstar1
28th July 2008, 08:42
Yes I use Megui.
So only is make avs with avisource()

PD: saludos

neuron2
28th July 2008, 13:33
So only is make avs with avisource() Yes, of course. Why would you think you need to do the filtering twice?