digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   MencodeMe is not working for me! (http://www.digitalfaq.com/archives/encode/9824-mencodeme-working.html)

fabiana 05-24-2004 02:23 AM

MencodeMe is not working for me!
 
This weekend i tried to back up a dvd using MencodeMe for the first time and the results weren`t that good. I think MencodeMe didn`t work for me yet or it`s just all my fault. :oops:

I followed the guides step by step and honestly i don`t know what else can i do. I even tried with and without avisynth. Is there really any chance of MencodeMe achieve the same quality as TMPGenc does? I can`t see how! :?

I even tried to increase the bitrate by lowering the duration of the file. Yes, my real file duration is 99 minutes and i put it around 83 minutes in order to reach a good 2500 kbps bitrate.
It didn`t move forward! My picture was still very blocky. :(

My source was a concert dvd i own: U2 - Rattle & Hum(1988) - 29.97fps(100% interlaced)#has a few scratches but plays fine;

*used 1pass, never tried 2pass;

Please, someone help me?!

Prodater64 05-24-2004 02:45 AM

Hi:
First at all, good quality is obtained with mpeg2 2 pass.
Take following in account:
NTSC: If it's a hard telecined VOB, you must select framerate 23.976 and IVTC.
If it's interlaced, you must select deinterlace with the correct field order.
Interlacing encode not support yet.
NTSC: If it's soft Telecined you must select output 23.976.
PAL: You must select the correct frame rate (25) and set the deinterlace options with the correct field order is needed.



--------------------------
Visit: KVCD - MencodeMe - Auxiliar Task - KVCD Docking Gate by Prodater64.
Visit: Mencoder scripting with AVSEdit and Guide for Multiple Files by Prodater64.
Visit: Mini-guide quick and easy - DVD to (S)KVCD with MencodeMe by Maurus.
Visit: Mencode-me: a newbie oriented GUI - 0.23 is out! by VMesquita.
--------------------------

fabiana 05-25-2004 11:58 AM

I`ve also used mpeg-2, 1-pass and the quality was even worse! :cry:
Have yet to try 2-pass!

How do i check if my source is a hard telecined vob?
Then how do i find the correct field order?

well, you mean that if i have a framerate of 29.97fps i must change it to 23.976 ?? But that won`t cause any stuttering? Jerky playback?


Thanx for the reply!

Prodater64 05-25-2004 12:03 PM

@fabiana: Take a look http://www.kvcd.net/forum/viewtopic....ight=telecined

Boulder 05-25-2004 12:27 PM

Most concert footage is pure interlaced video so you'll have two options: deinterlace and encode at 29.97fps or use MVConvert60ito24p and get a progressive 23.976fps output.

Here's the main function:

Code:

function mvconvert60ito24p(clip x, int "mode")
        {

        mode = default(mode,2)
        mbl=0.1
       
        ya=x.mvinterpolate(nb = 4,bl = 0.5-mbl, el = 0.5+mbl, wf = "hat")
        yb=x.duplicateframe(1).reverse().mvinterpolate(nb = 4,bl = 0.5-mbl, el = 0.5+mbl, wf = "hat").reverse()
        y=overlay(Ya,Yb,opacity=0.5)
        interleave(y,x)
        mode0=selectevery(5,2)
        mode1=overlay(selectevery(5,3),selectevery(5,2),opacity=0.5)
        mode2=overlay(overlay(selectevery(5,1),selectevery(5,3),opacity=0.5),selectevery(5,2),opacity=0.3)
        mode3=overlay(overlay(selectevery(5,0),selectevery(5,3),opacity=0.5),overlay(selectevery(5,1),selectevery(5,2),opacity=0.5),opacity=0.5)

        (mode==0) ? mode0 : (mode==1) ? mode1 : (mode==2) ? mode2 : mode3

        }

And here's KernelBob():

Code:

function kernelbob(clip a, int th)
{        ord = getparity(a) ? 1 : 0
        f=a.kerneldeint(order=ord, sharp=true, twoway=true, threshold=th)
        e=a.separatefields.trim(1,0).weave.kerneldeint(order=1-ord, sharp=true, twoway=true, threshold=th)
        interleave(f,e).assumeframebased
}

Copy-paste both of them in Notepad for example and save to your plugins folder with the extension .avsi so you don't need to load them in your script whenever you need them.

You'll also need to download KernelDeint.

Usage is simple:

MPEG2Source("path\clip.d2v")
KernelBob(7)
MVConvert60ito24p()

This should give you a smooth progressive stream. You can of course do all the filtering after the functions.


All times are GMT -5. The time now is 04:01 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.