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. |
17th June 2006, 06:27 | #1 | Link |
Registered User
Join Date: Apr 2005
Posts: 1,740
|
MeGUI Guide
You can get the most recent version of MeGUI from http://sourceforge.net/projects/megui
The content of this guide is gradually getting replaced by a much more complete guide at http://mewiki.project357.com/ Have a look there as well, if you want a guide. Using MeGUI There are various steps to encoding content using MeGUI, and these can be automated to different extents:
Using AutoEncode Using AutoEncode means that steps 3-6 can be set up in one step, as opposed to multiple steps, with waiting in between. To use it:
Using the One Click Encoder The OneClick Encoder can automate steps 1-6. This means that you can select your input, configure settings (optional, as it chooses defaults anyway), press go, and leave your computer to come back when it is finished. To use this tool:
A note about AVC Hardware (iPod, etc) and AVC Levels There are now some hardware devices which support AVC video (like the iPod, PSP). The AVC standard includes something called levels, which defines a way of categorising how much processing power is required to decode a stream. This is useful for low-power applications like the iPod. In the x264 codec configuration, there is a box which allows the level to be set. Enforcing this level could mean limits on the allowed resolution. MeGUI will tell you what changes need to be made to enforce that level if you go Tools->Validate AVC Level. You can then make the changes. Alternatively, if you have a level set and you use the One Click Encoder, if your chosen resolution is too high for the level, it will find the highest resolution that satisfies the level, and use that. The upshot of this note means that if you want to make a Hardware-compatible encode, you should download the relevant profile by Sharktooth and use that. If there is a level set, then you can just use this with the One Click Encoder, or you could generate your own script manually and see if it qualifies. AviSynth audio AviSynth-based audio uses AviSynth for audio decoding and filtering, just like the video section uses AviSynth. However, at this point in time, AviSynth-based audio behaves in a very similar way to BeSweet-based audio, inside MeGUI. They even share the same dialog box. The process for encoding via AviSynth is still the same. For those who don't know it, here's a quick summary:
AviSynth templates AviSynth templates are a flexible way of inserting custom filters while retaining some of the automation that MeGUI provides. Of course, you should only play with these if you are familiar with AviSynth, or else you could run into a lot of trouble with broken scripts. The idea behind the AviSynth profiles is that, for most AviSynth processing, large amounts of your filter-chain will remain the same, while some parts will have to be source-specific (like loading the input, cropping, etc). The way MeGUI manages both parts of this, then, is to allow you to outline the basic structure of the script, then it configures the source-specific values. How it actually works:
That's all that MeGUI does. Now let me give an example. Suppose you have this SUPER FABULOUS TEN-TIMES-BETTER-THAN-ANYTHING-ELSE deinterlacer, but MeGUI doesn't support it. Not to worry, here's what you do: copy and modify the default profile, which looks like Code:
<input> <deinterlace> <crop> <resize> <denoise> Code:
<input> MySuperDeinterlacer() <crop> <resize> <denoise> Code:
mpeg2source("Yoursource.d2v") MySuperDeinterlacer() crop(10,24,-88,-20) lanczosresize(320,240) #denoise If you want to add a postprocessor, just add a filter at the end. You get the point. Last edited by berrinam; 1st July 2008 at 23:51. |
19th January 2009, 16:36 | #3 | Link |
Mr. Sandman
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
|
OneClick Encoder and AutoEncode Walk-Through Guides (thanks to Nathan from COMTEC Mobile Solutions)
__________________
MPEG-4 ASP Custom Matrices: EQM V1(old), EQM AutoGK Sharpmatrix (aka EQM V2), EQM V3HR (updated 01/10/2004), EQM V3LR, EQM V3ULR (updated 04/02/2005), EQM V3UHR (updated 17/12/2004) and EQM V3EHR (updated 05/10/2004) Info about my ASP matrices. MPEG-4 AVC Custom Matrices: EQM AVC-HR Info about my AVC matrices My x264 builds. Mooo!!! |
25th February 2010, 12:18 | #5 | Link |
Registered User
Join Date: Jun 2009
Posts: 1
|
In any case, once Preferred Filter Tweaker for Windows 7 has been installed, start the tool and in the section where you configure the preferred DirectShow decoding filters for Windows 7, you need to make sure at least the "H.264" option is set so that ffdshow is used, instead of the Microsoft codecs (for those experimenting with VC-1, you need to set its settings to ffdshow as well). If you're trying to load or encode any video format in which MeGUI appears to hang, or give you an error in relation to AviSynth, then you can come back to this tool and ensure the video format is using the ffdshow codec, and not the Microsoft one. Press "Apply" to apply the changes and then exit the application.
|
29th June 2010, 17:00 | #6 | Link |
Mr. Sandman
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
|
The Cecil post is also true for AUDIO.
__________________
MPEG-4 ASP Custom Matrices: EQM V1(old), EQM AutoGK Sharpmatrix (aka EQM V2), EQM V3HR (updated 01/10/2004), EQM V3LR, EQM V3ULR (updated 04/02/2005), EQM V3UHR (updated 17/12/2004) and EQM V3EHR (updated 05/10/2004) Info about my ASP matrices. MPEG-4 AVC Custom Matrices: EQM AVC-HR Info about my AVC matrices My x264 builds. Mooo!!! |
30th June 2010, 20:44 | #7 | Link |
Anime addict
Join Date: Feb 2009
Location: Spain
Posts: 673
|
Hi, I would make a manual in pdf for those who speak Spanish. Also on the page of MeGUI project offered me to translate the GUI MeGUI. For example I have mkvmerge GUI translated to Spanish.
http://www.megaupload.com/?d=XD7H1WIJ Regards. Last edited by Overdrive80; 6th July 2010 at 12:54. Reason: Update version Guide to 4.1 |
6th July 2010, 12:52 | #8 | Link |
Anime addict
Join Date: Feb 2009
Location: Spain
Posts: 673
|
Hi, as this post is the guide, i like say as auto-close megui after enconding. For it, you have go to Options-->Settings-->Extra Config. When say After enconding, select run option and below add this code: taskkill /IM megui.exe. Of this manner, after encoding close megui and not OS.
Regards |
13th March 2011, 15:07 | #10 | Link |
Mr. Sandman
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
|
more guides can be found here: http://mewiki.project357.com/wiki/
__________________
MPEG-4 ASP Custom Matrices: EQM V1(old), EQM AutoGK Sharpmatrix (aka EQM V2), EQM V3HR (updated 01/10/2004), EQM V3LR, EQM V3ULR (updated 04/02/2005), EQM V3UHR (updated 17/12/2004) and EQM V3EHR (updated 05/10/2004) Info about my ASP matrices. MPEG-4 AVC Custom Matrices: EQM AVC-HR Info about my AVC matrices My x264 builds. Mooo!!! |
Thread Tools | Search this Thread |
Display Modes | |
|
|