NEW Guides and AmvApp BETA

Locked
User avatar
Tiiscool
Joined: Sun Nov 14, 2004 8:51 am
Location: Alstätte, Germany
Contact:
Org Profile

2 Pass useful names for the file

Post by Tiiscool » Mon May 26, 2008 7:19 am

Hi,

what do you think about his idea ?

Basic idea: also the .d2v file has a unique name
and you see what files belong to the.d2v


source = "C:\source\blah"
MPEG2Source (source+".d2v")

#FIRST PASS
TFM(slow=2, output=source+".tfm")
TDecimate(mode=1, output=source+".dec")
Crop(0,0,4,2)

#SECOND PASS
#TFM(input=source+".tfm")
#Tdecimate(input=source+".dec")

User avatar
Tiiscool
Joined: Sun Nov 14, 2004 8:51 am
Location: Alstätte, Germany
Contact:
Org Profile

CheckFieldOrder()

Post by Tiiscool » Mon May 26, 2008 10:42 am

Analysing Your DVD Footage -> 2. Checking the Field Order
file: http://www.animemusicvideos.org/guides/ ... etb2a.html

DGIndex:
I do not trust DGIndex, because I had once a wrong fieldorder.
This problem was made by bad encoding.

CheckFieldOrder()
I think we don 't need this any longer ?


AviSynth:
What do you think about info()
It also tells the fieldorder

Ti

User avatar
Zarxrax
Joined: Sun Apr 01, 2001 6:37 pm
Contact:
Org Profile

Re: question for tfm() and order

Post by Zarxrax » Mon May 26, 2008 10:51 am

Tiiscool wrote:Hi,

why is there nor order= or use of d2v= ?

TFM()
TDecimate()


I thought it should be this way ?

TFM(order =1) #for top field
TDecimate()
Dgdecode knows the field order or the original stream, and it can pass this information along to TFM, thus there is no reason to manually specify it.
Tiiscool wrote: Basic idea: also the .d2v file has a unique name
and you see what files belong to the.d2v
I don't understand what you are talking about in this post.
Tiiscool wrote: DGIndex:
I do not trust DGIndex, because I had once a wrong fieldorder.
This problem was made by bad encoding.

CheckFieldOrder()
I think we don 't need this any longer ?


AviSynth:
What do you think about info()
It also tells the fieldorder
I would be interested in seeing a source where dgindex told you the wrong field order. It could also have been a bug in an old version of dgindex, maybe?

CheckfieldOrder() can still be used if you dont trust dgindex. I've never had a problem with dgindex though.

Info() doesn't know the field order. It only reports either what mpeg2source tells it, or what you tell it (using commands AssumeTFF or AssumeBFF).

User avatar
Tiiscool
Joined: Sun Nov 14, 2004 8:51 am
Location: Alstätte, Germany
Contact:
Org Profile

TFM can check if .d2v is right ?

Post by Tiiscool » Mon May 26, 2008 10:57 am

Hi,

I read that with: TFM(d2v="C:\...\xx.d2v") you can check, if the d2v is alright.
When not, it creates a xx-FIXED.d2v version.

Maybe this is useful information at the end of: Making DGIndex Project Files
file: http://www.animemusicvideos.org/guides/ ... getb2.html

What do you think about this ?

User avatar
Tiiscool
Joined: Sun Nov 14, 2004 8:51 am
Location: Alstätte, Germany
Contact:
Org Profile

misisng code line ?

Post by Tiiscool » Mon May 26, 2008 11:00 am

Making your footage Progressive ->
I plan to edit the AviSynth files directly (method 2) ->
Telecined Footage -> 2-Pass IVTC (Advanced)

file: http://www.animemusicvideos.org/guides/ ... ssive.html

first pass with post-processing
MPEG2Source ("C:\yourfolder\blah.d2v")
TFM(cthresh=4, slow=2, clip2=deint, output="C:\yourfolder\something.tfm")
TDecimate(mode=1, output="C:\yourfolder\something.dec")
Crop(0,0,4,2)


Can it be that this line is missing ?
deint = TDeint(mode=2, mtnmode=3, blim=100)

User avatar
Tiiscool
Joined: Sun Nov 14, 2004 8:51 am
Location: Alstätte, Germany
Contact:
Org Profile

Re: question for tfm() and order

Post by Tiiscool » Mon May 26, 2008 11:19 am

Zarxrax wrote:
Tiiscool wrote: Basic idea: also the .d2v file has a unique name
and you see what files belong to the.d2v
I don't understand what you are talking about in this post.
I think this is an easy system to get good names for the files:
Example:
myvideo.d2v
myvideo.tfm
myvideo.dec

You can use the script for other files too. Only one line has to be changed.

User avatar
Tiiscool
Joined: Sun Nov 14, 2004 8:51 am
Location: Alstätte, Germany
Contact:
Org Profile

Re: question for tfm() and order

Post by Tiiscool » Mon May 26, 2008 11:28 am

Zarxrax wrote:Dgdecode knows the field order or the original stream, and it can pass this information along to TFM, thus there is no reason to manually specify it.
So it works also without d2v= ?

User avatar
Scintilla
(for EXTREME)
Joined: Mon Mar 31, 2003 8:47 pm
Status: Quo
Location: New Jersey
Contact:
Org Profile

Re: TFM can check if .d2v is right ?

Post by Scintilla » Mon May 26, 2008 12:18 pm

Tiiscool wrote:Hi,

I read that with: TFM(d2v="C:\...\xx.d2v") you can check, if the d2v is alright.
When not, it creates a xx-FIXED.d2v version.

Maybe this is useful information at the end of: Making DGIndex Project Files
file: http://www.animemusicvideos.org/guides/ ... getb2.html

What do you think about this ?
That's only in the case of DVDs encoded with illegal field order transitions (see: Love Hina, Excel Saga, and possibly anything encoded by M.O.F.C. if I'm remembering correctly), but it should be mentioned somewhere, yes.
ImageImage
:pizza: :pizza: Image :pizza: :pizza:

User avatar
Tiiscool
Joined: Sun Nov 14, 2004 8:51 am
Location: Alstätte, Germany
Contact:
Org Profile

not good d2v

Post by Tiiscool » Mon May 26, 2008 12:23 pm

When I remember it right, I have two DVDs that have this problem.

One is Gravitation US Version.

User avatar
Tiiscool
Joined: Sun Nov 14, 2004 8:51 am
Location: Alstätte, Germany
Contact:
Org Profile

filter: Fluxsmooth

Post by Tiiscool » Mon May 26, 2008 3:10 pm

Hello,

can it be that there is a filter missing in the AMVapp ?
(3 beta)

I tried to use Fluxsmooth, but it did not work.

Locked

Return to “Video & Audio Help”