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. |
22nd April 2006, 00:06 | #21 | Link |
retired developer
Join Date: Oct 2002
Location: Canada
Posts: 8,979
|
alright, I made the first setting profiles:
Code:
// Profiles private void pc_base() { sCmdLine = "--no-fast-pskip --no-psnr --progress --thread-input --threads " + Environment.ProcessorCount; } private void pc_fast() { sCmdLine += "--min-keyint 12 --min-keyint 600 --bime "; sCmdLine += "--direct auto --weightb --bframes 3 "; sCmdLine += "--filter 1:1 "; sCmdLine += "--me dia --subme 1 --ref 0 "; sCmdLine += "--analyse \"none\" "; } private void pc_low() { sCmdLine += "--min-keyint 12 --min-keyint 600 --bime "; sCmdLine += "--direct auto --weightb --bframes 3 "; sCmdLine += "--filter 1:1 "; sCmdLine += "--me umh --subme 6 --b-rdo --ref 8 --mixed-refs "; sCmdLine += "--analyse \"all\" --trellis 1 --8x8dct "; } private void pc_medium() { sCmdLine += "--min-keyint 12 --min-keyint 600 --bime "; sCmdLine += "--direct auto --weightb --bframes 3 "; sCmdLine += "--filter 1:1 "; sCmdLine += "--me umh --subme 7 --b-rdo --ref 12 --mixed-refs "; sCmdLine += "--analyse \"all\" --trellis 1 --8x8dct "; } private void pc_high() { sCmdLine += "--min-keyint 12 --min-keyint 600 --bime "; sCmdLine += "--direct auto --weightb --bframes 3 "; sCmdLine += "--filter 1:1 "; sCmdLine += "--me umh --subme 7 --b-rdo --ref 16 --mixed-refs "; sCmdLine += "--analyse \"all\" --trellis 2 --8x8dct "; } private void ipod_fast() { sCmdLine += "--no-cabac --keyint 900 --min-keyint 12 --nr 150 --level 1.3 --bime "; sCmdLine += "--filter 0:0 --bframes 0 "; sCmdLine += "--me dia --subme 1 --ref 0 "; sCmdLine += "--analyse \"none\" "; } private void ipod_low() { sCmdLine += "--no-cabac --keyint 900 --min-keyint 12 --nr 150 --level 1.3 --bime "; sCmdLine += "--filter 0:0 --bframes 0 "; sCmdLine += "--me umh --subme 6 --ref 8 --mixed-refs "; sCmdLine += "--analyse \"all\" --trellis 1 "; } private void ipod_medium() { sCmdLine += "--no-cabac --keyint 900 --min-keyint 12 --nr 150 --level 1.3 --bime "; sCmdLine += "--filter 0:0 --bframes 0 "; sCmdLine += "--me umh --subme 7 --ref 12 --mixed-refs "; sCmdLine += "--analyse \"all\" --trellis 1 "; } private void ipod_high() { sCmdLine += "--no-cabac --keyint 900 --min-keyint 12 --nr 150 --level 1.3 --bime "; sCmdLine += "--filter 0:0 --bframes 0 "; sCmdLine += "--me umh --subme 7 --ref 16 --mixed-refs "; sCmdLine += "--analyse \"all\" --trellis 2 "; } |
22nd April 2006, 04:31 | #26 | Link | |
Registered User
Join Date: May 2005
Posts: 184
|
Quote:
AMD Plans Four-Core Opterons by 2007 http://www.pcworld.com/news/article/0,aid,123559,00.asp |
|
22nd April 2006, 12:19 | #27 | Link | |
aka XaS
Join Date: Jun 2005
Location: France
Posts: 1,122
|
You've been smart enough not to use .NET 1.0 (or 1.1 even), that's cool ! You'll have much less of a hassle when it comes to event handling ^^
Quote:
As long as it supports "drag-and-drop" (any files) and auto-generates a minimalistic avs script (avisource if avi, directshowsource for anything else + custom resizing + hqdn3D() since it rocks on anime stuff + Undot()) I think it will be enough Using avisynth for audio encoding would be a pretty good idea since you wouldn't need to have anything else installed than avisynth to run xAnime =) (cli apps would be in xAnime's working directory, unless you add a config panel to specify the cli's paths) Just my two cents, but it's a good idea to keep things simple
__________________
Q9300 OC @ 3.2ghz / Asus P5E3 / 4GB PC10600 / Geforce 8600 GTS |
|
22nd April 2006, 13:19 | #28 | Link | |
retired developer
Join Date: Oct 2002
Location: Canada
Posts: 8,979
|
Quote:
Search love to answer already answered questions, I do not. |
|
22nd April 2006, 13:20 | #29 | Link | |
retired developer
Join Date: Oct 2002
Location: Canada
Posts: 8,979
|
Quote:
|
|
22nd April 2006, 13:23 | #30 | Link | ||
retired developer
Join Date: Oct 2002
Location: Canada
Posts: 8,979
|
Quote:
Quote:
|
||
22nd April 2006, 15:16 | #33 | Link | |
Registered User
Join Date: Sep 2005
Posts: 1,053
|
Quote:
...Erm, although, I guess that the most quality loss comes from the already poor sources =/ The everything automatic sounds terrific to me! Last edited by Eretria-chan; 22nd April 2006 at 15:50. |
|
22nd April 2006, 15:40 | #34 | Link | ||
aka XaS
Join Date: Jun 2005
Location: France
Posts: 1,122
|
Quote:
I've had to use threads and global variables to sort things out. With framework 2.0 there is nearly always a "before click" and an "after click" event or a "before update" and an "after update" event, which gives you some very precise error-handling possibilities. Needless to say that you will have great time programming simple things rather than finding workarounds
__________________
Q9300 OC @ 3.2ghz / Asus P5E3 / 4GB PC10600 / Geforce 8600 GTS |
||
22nd April 2006, 15:58 | #35 | Link | |||
retired developer
Join Date: Oct 2002
Location: Canada
Posts: 8,979
|
Quote:
Quote:
Quote:
|
|||
22nd April 2006, 16:08 | #37 | Link | |
retired developer
Join Date: Oct 2002
Location: Canada
Posts: 8,979
|
Quote:
|
|
Thread Tools | Search this Thread |
Display Modes | |
|
|