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.

 

Go Back   Doom9's Forum > Video Encoding > (Auto) Gordian Knot
Register FAQ Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
Old 19th April 2004, 19:11   #1921  |  Link
Tuning
I'm back! :D
 
Tuning's Avatar
 
Join Date: Aug 2003
Location: The Matrix
Posts: 1,029
Thinking no one else has requested before....

A Small Feature Request: Direct muxing of DTS audio.
Especially useful for HDD saving and multi CD rips.
Thanks.
Tuning is offline   Reply With Quote
Old 20th April 2004, 06:27   #1922  |  Link
((( atom )))
noise is all around us...
 
((( atom )))'s Avatar
 
Join Date: Nov 2001
Location: - deep within -
Posts: 466
Quote:
Originally posted by len0x
HT issue ?
no, happens with and without ht enabled.
__________________
((( atom )))
((( atom ))) is offline   Reply With Quote
Old 20th April 2004, 12:34   #1923  |  Link
((( atom )))
noise is all around us...
 
((( atom )))'s Avatar
 
Join Date: Nov 2001
Location: - deep within -
Posts: 466
i wanted to view the printable version of this thread on one page in order to search for something easier and i got:

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 2188533 bytes) in /home/httpd/docs/vbb/admin/functions.php on line 582

is this thread to long?
__________________
((( atom )))
((( atom ))) is offline   Reply With Quote
Old 20th April 2004, 15:32   #1924  |  Link
Spiders
Registered User
 
Join Date: Apr 2004
Location: Russia
Posts: 4
Re: Re: Re: Re: Question

Quote:
Originally posted by len0x
Does this happen with regular GK as well ?
I do not know since use only Auto GK. À on idea computer must be switched off? The Program was tested on Windows 98?
Spiders is offline   Reply With Quote
Old 20th April 2004, 21:14   #1925  |  Link
DSPguru
BeSweet Author
 
DSPguru's Avatar
 
Join Date: Oct 2001
Location: On top of a supercompact cardinal
Posts: 3,506
Quote:
Originally posted by manono
OK, I'll take the rap for the Postgain setting. Back in the early days of AutoGK, people were complaining about soft volume. It was a concern of mine also, as I wasn't happy with the volume levels when using the default settings of the BeSweet GUI. I went searching in the Audio Forum for a way to remedy it, and came up with the suggestion to use Postgain, instead of Hybridgain. I tried it out and found that the result was, indeed, louder with Postgain applied. So I mentioned it to len0x. If for some reason that I can't understand with my limited knowledge of audio encoding Hybridgain is better, then, of course, I bow to DSPguru's expertise in the matter.
hybridgain iZ the way to go, and should be the default mode.
if someone is into extreme normalization, he can change his personal default mode to using -azid( --maximize ).
postgain of 18db [like you could see in the logfile of "-ota( -G 1 )"] will never make sense to me.

Last edited by DSPguru; 20th April 2004 at 21:16.
DSPguru is offline   Reply With Quote
Old 21st April 2004, 10:13   #1926  |  Link
len0x
I'm afraid we've to stop
 
len0x's Avatar
 
Join Date: Mar 2003
Location: Amongst mad people
Posts: 5,398
Quote:
Originally posted by DSPguru
hybridgain iZ the way to go, and should be the default mode.
if someone is into extreme normalization, he can change his personal default mode to using -azid( --maximize ).
postgain of 18db [like you could see in the logfile of "-ota( -G 1 )"] will never make sense to me.
OK, I'll change that to hybridgain then and after I have a config everyone can customize that (the main problem now in AutoGK that if you're not satisfied with audio level there is nothing you can do about it apart from encoding it yourself and remuxing)

P.S. Personally I have no opinion on the subject as very rarely do mp3 myself.
__________________
Gordian Knot Family:
Gordian Knot: website, download
Auto Gordian Knot: Website and download, tutorial, FAQ
len0x is offline   Reply With Quote
Old 21st April 2004, 13:37   #1927  |  Link
GizmoDerMokwai
Xubuntu21.04 AVS+3.7 x265
 
GizmoDerMokwai's Avatar
 
Join Date: Oct 2001
Posts: 109
hi, dunno know if it's really a bug, but autogk saying chosen resolution ***x304, but final avi is ***x288...

Code:
===========================================================
[21.04.2004 08:45:59] Duration was: 12 minutes 35 seconds
[21.04.2004 08:45:59] Speed was: 8,07 fps.
[21.04.2004 08:45:59] Compressibility percentage is: 20,38
[21.04.2004 08:45:59] Using softer resizer.
[21.04.2004 08:45:59] Using softer resizer.
[21.04.2004 08:45:59] Chosen resolution is: 512x304 ( AR: 1,68 )
[21.04.2004 08:45:59] Predicted comptest value is: 32,35
[21.04.2004 08:45:59] Running first pass.
[21.04.2004 08:45:59] Writing the following script to D:\tmp\gk_tmp\asterixinamerika_movie.avs
===========================================================
LoadPlugin("c:\PROGRA~1\DVDRIP~1\AutoGK\filters\mpeg2dec3dg.dll")
LoadPlugin("c:\PROGRA~1\DVDRIP~1\AutoGK\filters\autocrop.dll")
LoadPlugin("c:\PROGRA~1\DVDRIP~1\AutoGK\filters\undot.dll")
LoadPlugin("c:\PROGRA~1\DVDRIP~1\AutoGK\filters\kerneldeint.dll")

function getOrder(clip c) {
order = GetParity(c) ? 1 : 0
return order }

movie = mpeg2source("D:\tmp\gk_tmp\asterixinamerika.d2v")
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=10,aspect=0,threshold=35)
c_width = width(cropclip)
c_height = round(height(cropclip) / 1.09401709401709)
input_par = float(c_width)/float(c_height)
fixed_aspect = input_par > 1.4 ? 1.09401709401709 : 1.06666666666667
c_height = round(height(cropclip) / fixed_aspect)
input_par = float(c_width)/float(c_height)
out_width = 512
out_height = round(float(out_width) / input_par)
hmod = out_height - (floor(out_height / 16 ) * 16)
out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
KernelDeInt(movie,order=getOrder(movie),sharp=true)
autocrop(mode=0,wmultof=4,hmultof=4,samples=10,aspect=new_aspect,threshold=35)
Undot()
BicubicResize(out_width,out_height,0,0.5)
Gspot info:
XviD, 876 kb/s, 512x288 (1.78:1) [=16:9]

just wanna to drop you this info...
__________________
Xubuntu 21.04 // AviSynth+ 3.7.0 (r3406, master, x86_64) // x265 3.5+20+2-8c44f9e9b [DJATOM's Mod]
GizmoDerMokwai is offline   Reply With Quote
Old 21st April 2004, 14:05   #1928  |  Link
len0x
I'm afraid we've to stop
 
len0x's Avatar
 
Join Date: Mar 2003
Location: Amongst mad people
Posts: 5,398
Quote:
Originally posted by GizmoDerMokwai
hi, dunno know if it's really a bug, but autogk saying chosen resolution ***x304, but final avi is ***x288...
Nice catch. Unfortunately there is nothing I can do - aspect ratio displayed is the same as comp test AR. Since autocrop crops automatically during encode its only a guess since autocrop does everything inside. So in some rare cases you would see this...
__________________
Gordian Knot Family:
Gordian Knot: website, download
Auto Gordian Knot: Website and download, tutorial, FAQ
len0x is offline   Reply With Quote
Old 21st April 2004, 16:00   #1929  |  Link
GizmoDerMokwai
Xubuntu21.04 AVS+3.7 x265
 
GizmoDerMokwai's Avatar
 
Join Date: Oct 2001
Posts: 109
hehe, ok, just wanted to give you that info...
__________________
Xubuntu 21.04 // AviSynth+ 3.7.0 (r3406, master, x86_64) // x265 3.5+20+2-8c44f9e9b [DJATOM's Mod]
GizmoDerMokwai is offline   Reply With Quote
Old 21st April 2004, 16:23   #1930  |  Link
hujer
Registered User
 
Join Date: Apr 2004
Posts: 9
ht bug

lenox > is there public cvs server for autogk ? i would like to fix the HT bug coz its annoying me very much, when i set compatibility with windows 98 for autogk it runs virtual dub in some weird mode
with one cpu affinity and makes my whole computer superslow, i have to run into taskmanager and change affinity for the vdub process everytime, if there isnt public cvs please contact me on hujer@users.sf.net and let me know if i can help you fixing this crash somehow, its really pissing me off, thanx for autogk btw
hujer is offline   Reply With Quote
Old 22nd April 2004, 02:07   #1931  |  Link
ookzDVD
DVD Rebuilder!
 
ookzDVD's Avatar
 
Join Date: Oct 2001
Posts: 1,147
Quote:
Originally posted by len0x
Hidden Option tool done by therealjoeblow already does that.
@len0x,
I mean in your .credits directly use the timestamp instead of the frame #. So the conversion is done by your internal code.

thank you.
ookzDVD is offline   Reply With Quote
Old 22nd April 2004, 10:00   #1932  |  Link
len0x
I'm afraid we've to stop
 
len0x's Avatar
 
Join Date: Mar 2003
Location: Amongst mad people
Posts: 5,398
Quote:
Originally posted by ookzDVD
@len0x,
I mean in your .credits directly use the timestamp instead of the frame #. So the conversion is done by your internal code.
well, then we would need reverse conversion if a person knows only frame number (like many ppl actually do including me - they have no problems getting frame number from regular GK). So it doesn't really matter to me if we have tools that do the job and something is already done then I don't see a reason of re-writing it
__________________
Gordian Knot Family:
Gordian Knot: website, download
Auto Gordian Knot: Website and download, tutorial, FAQ
len0x is offline   Reply With Quote
Old 23rd April 2004, 03:25   #1933  |  Link
therealjoeblow
Registered User
 
Join Date: Jan 2004
Location: Canada
Posts: 210
Quote:
Originally posted by len0x
well, then we would need reverse conversion if a person knows only frame number (like many ppl actually do including me - they have no problems getting frame number from regular GK). So it doesn't really matter to me if we have tools that do the job and something is already done then I don't see a reason of re-writing it
@len0x,

I sent you a new version which can read CLI parameters - you might be able to add a button to AutoGK now to launch the "Hidden Options.exe" after the user selects the input directory, that would probably simplify things a bit for many users.

v-0.6 (April 22, 2004)
----------------------
-Added CLI (Command Line Interface) - 'Hidden Options.exe' can now
accept the target path as a command line parameter. I coded it
to be fairly forgiving, you can use one of the following formats:

"z:\hidden options.exe" x:\path name
"z:\hidden options.exe" -x:\path name
"z:\hidden options.exe" /x:\path name

You can enter the path in all caps, all lower case, or a mix, it
doesn't matter. You can also either add or omit the trailing "\"

Also checks if the drive and path exists, and provides error
messages if not.

-Added error checking when selecting an empty CD or Floppy Drive
from the drivelist pick-box - program would crash with runtime
error before (not like you're going to actually work from one of
those sources, but you might pick it by accident).
__________________
Cheers,
The REAL Joe
therealjoeblow is offline   Reply With Quote
Old 25th April 2004, 23:39   #1934  |  Link
nightrhyme
º¿º XviD N00B º¿º
 
nightrhyme's Avatar
 
Join Date: Apr 2004
Posts: 231
Re: ht bug

Quote:
Originally posted by hujer
lenox > is there public cvs server for autogk ? i would like to fix the HT bug coz its annoying me very much, when i set compatibility with windows 98 for autogk it runs virtual dub in some weird mode
with one cpu affinity and makes my whole computer superslow, i have to run into taskmanager and change affinity for the vdub process everytime, if there isnt public cvs please contact me on hujer@users.sf.net and let me know if i can help you fixing this crash somehow, its really pissing me off, thanx for autogk btw
Would really be nice if you could help make AutoGK run on HT cpu's.
That bug really irritates me too.
I usually disable Hyper Threading in bios before encoding with GK
nightrhyme is offline   Reply With Quote
Old 26th April 2004, 08:54   #1935  |  Link
hujer
Registered User
 
Join Date: Apr 2004
Posts: 9
Re: Re: ht bug

Quote:
Originally posted by nightrhyme
Would really be nice if you could help make AutoGK run on HT cpu's.
That bug really irritates me too.
I usually disable Hyper Threading in bios before encoding with GK
well when i disable HT in bios my windows doesnt boot , anyway i would really like to fix it, but i need the src first
hujer is offline   Reply With Quote
Old 26th April 2004, 09:59   #1936  |  Link
rotvel
Registered User
 
Join Date: Jun 2003
Posts: 10
It would be nice to have a priority setting for AutoGK. Similar to the one in DVD2SVCD ("Process priority for all used programs" -> Idle|Normal|High).

Mainly for running AutoGK and still be able to use the PC for other stuff (using the "idle" setting).

Regards /max
rotvel is offline   Reply With Quote
Old 26th April 2004, 10:34   #1937  |  Link
len0x
I'm afraid we've to stop
 
len0x's Avatar
 
Join Date: Mar 2003
Location: Amongst mad people
Posts: 5,398
Re: Re: Re: ht bug

Quote:
Originally posted by hujer
but i need the src first
Source will not be provided, please stop asking about them.

I had another ago but still unable to detect the problem so far...
__________________
Gordian Knot Family:
Gordian Knot: website, download
Auto Gordian Knot: Website and download, tutorial, FAQ
len0x is offline   Reply With Quote
Old 26th April 2004, 10:39   #1938  |  Link
hujer
Registered User
 
Join Date: Apr 2004
Posts: 9
Re: Re: Re: Re: ht bug

Quote:
Originally posted by len0x
Source will not be provided, please stop asking about them.

I had another ago but still unable to detect the problem so far...
just wanted to help, heh
hujer is offline   Reply With Quote
Old 26th April 2004, 14:52   #1939  |  Link
jeremymacmull
Registered User
 
jeremymacmull's Avatar
 
Join Date: Dec 2001
Location: Leicester England
Posts: 297
RE HT bug(?)

lenox is in the process of trying to figure out what the bug is so far after numerous attempts theres been no luck

he is hard at work at it so give him some time and support as it must be frustrating when he cant test directly as he does not have HT cpu



otherwise on my cpu 1.18b starts up 50% of the time and the other 50% it says runtime error 216 at XXXXXX

I dont have it set to compatibility mode ie im running it normally

when it does start up it runs perfectly with both cpus as affinity and on the right priority without slowing down my comp for those of you who are using compatibility mode or turning off ht try not doing so and just keep clicking on the exe till it starts up (as i said on my comp its 1/2 chance of it working but once started everything works!)

JEREMY
__________________
The Ferrets Are Out To Get You ..... Muwahhhhhaaaa

Alienware Area 51 PC, 3.2ghz P4C 800mhz FSB, 1X Western Digital 10,000 rpm Raptor 74 gb SATA, 1X 80 Gb IBM Deskstar 120GXP and 7200rpm 2 mb cache, 1X 80 Gb Hitachi Deskstar 7K250 7200 rpm SATA 8mb Cache (The Two 80Gb drives are striped with win XP dynamic disks) and 1X 5400 Maxtor 30gb Drive , 1 Gb XMS corsair pc 3200 ram (2X512), ATI Radeon 9600XT, 8X +/-R Plextor DVD Writer PX-708A,LiteON 52X32X52 CDwriter, 19" Iiyama Vision Master 1451 monitor, Audigy 2 ZS, Nebula DigiTv USB 2.0 version For DVB-T, Leadtek WinFast XP/2000 Expert For TV Capture And Analogue TV, Logitech Cordless Desktop MX (MX 700 mouse Cordless optical and cordless keyboard)
jeremymacmull is offline   Reply With Quote
Old 26th April 2004, 15:04   #1940  |  Link
hujer
Registered User
 
Join Date: Apr 2004
Posts: 9
Quote:
Originally posted by jeremymacmull
RE HT bug(?)

lenox is in the process of trying to figure out what the bug is so far after numerous attempts theres been no luck

he is hard at work at it so give him some time and support as it must be frustrating when he cant test directly as he does not have HT cpu

otherwise on my cpu 1.18b starts up 50% of the time and the other 50% it says runtime error 216 at XXXXXX

JEREMY
well, as i have experiences with debugging delphi projects, and it does crash on my machine everytime, i thought i could fix it in few minutes so offered help, i undrestand this is nearly impossible to fix without access to ht system

lenox if you still have problems finding the problem after some time, feel free to mail me, to debug it one only needs the code that runs on startup, that should be only few onshow/onload functions and you can strip rest of the project..., well anyway, good luck, its a nasty problem
hujer is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 22:29.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.