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 > MPEG-4 Encoder GUIs

Reply
 
Thread Tools Search this Thread Display Modes
Old 11th March 2008, 03:55   #3641  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
Berrinam is still MIA?
Sharktooth is offline   Reply With Quote
Old 13th March 2008, 13:48   #3642  |  Link
Kurtnoise
Swallowed in the Sea
 
Kurtnoise's Avatar
 
Join Date: Oct 2002
Location: Aix-en-Provence, France
Posts: 5,191
Hi,

Should I rebuild the old x264 config (to have zones, extra commands, etc...) for the dev branch or we wait the berrinam's back ?
Kurtnoise is offline   Reply With Quote
Old 13th March 2008, 13:49   #3643  |  Link
Kurtnoise
Swallowed in the Sea
 
Kurtnoise's Avatar
 
Join Date: Oct 2002
Location: Aix-en-Provence, France
Posts: 5,191
Quote:
Originally Posted by Sharktooth View Post
Berrinam is still MIA?
falling in love maybe...
Kurtnoise is offline   Reply With Quote
Old 13th March 2008, 13:53   #3644  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
Quote:
Originally Posted by Kurtnoise13 View Post
Hi,

Should I rebuild the old x264 config (to have zones, extra commands, etc...) for the dev branch or we wait the berrinam's back ?
lets wait few other days. if he's still MIA we can either:
1- Revert to the old profiles code
2- Complete the profiles refactor adding the missing zones and custom CLI options fox x264
3- Go ahead without zones and add custom CLI options only.
Sharktooth is offline   Reply With Quote
Old 13th March 2008, 14:04   #3645  |  Link
Kurtnoise
Swallowed in the Sea
 
Kurtnoise's Avatar
 
Join Date: Oct 2002
Location: Aix-en-Provence, France
Posts: 5,191
ok...shouln't be too complicated anyway.


btw, last night I checked the new DGindex stuff for audio streams extraction and it seems to be more complicated than I thought. We need to run a special command first to create a logfile to have each tracks IDs, then read those datas from the file and put them in the current DGindex command...so, great. :-/

I'll see what can I do for this part....
Kurtnoise is offline   Reply With Quote
Old 13th March 2008, 14:07   #3646  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
eh, i had a look at it some time ago and i gave up since i had not enough time to get it working.

Last edited by Sharktooth; 13th March 2008 at 14:31.
Sharktooth is offline   Reply With Quote
Old 13th March 2008, 14:26   #3647  |  Link
buzzqw
HDConvertToX author
 
Join Date: Nov 2003
Location: Cesena,Italy
Posts: 6,552
@Kurtonise13

yea, confirm; i use the same approach on automkv
First check if stream is mpeg2 (mediainfo) if yes, lauch dgindex in info mode, parse the log and add the audio tracks to list
If video is mpeg4, run dgavcdec demuxing all audio tracks and indexing the file, then add audio to list

BHH
__________________
HDConvertToX: your tool for BD backup
MultiX264: The quick gui for x264
AutoMen: The Mencoder GUI
AutoWebM: supporting WebM/VP8
buzzqw is offline   Reply With Quote
Old 14th March 2008, 14:06   #3648  |  Link
Kurtnoise
Swallowed in the Sea
 
Kurtnoise's Avatar
 
Join Date: Oct 2002
Location: Aix-en-Provence, France
Posts: 5,191
Quote:
Originally Posted by Kurtnoise13 View Post
btw, last night I checked the new DGindex stuff for audio streams extraction and it seems to be more complicated than I thought. We need to run a special command first to create a logfile to have each tracks IDs, then read those datas from the file and put them in the current DGindex command...so, great. :-/

I'll see what can I do for this part....
There is also an alternative: using the track IDs supply by the DVDDecrypter stream infos file. Several parts in the current code use this. But an issue remains if we use this way : when users don't have a such file. So, the right trick seems to use the logfile created by DGindex. What do you think ?
Kurtnoise is offline   Reply With Quote
Old 14th March 2008, 17:26   #3649  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
DVD Decrypter is dead and in some countries even illegal.
Sadly, we should not rely on it anymore but that means rewriting some code...
Buzzqw method is the right way to go (yeah italians do it better) but as i said, it needs some time and will to rewrite some parts of megui.
Sharktooth is offline   Reply With Quote
Old 14th March 2008, 18:00   #3650  |  Link
stax76
Registered User
 
stax76's Avatar
 
Join Date: Jun 2002
Location: On thin ice
Posts: 6,837
I extract all streams and rename the files replacing the index with language code and name extracted from IFO.
stax76 is offline   Reply With Quote
Old 14th March 2008, 20:32   #3651  |  Link
buzzqw
HDConvertToX author
 
Join Date: Nov 2003
Location: Cesena,Italy
Posts: 6,552
yes.. if have an ifo.. but with a mpeg stream, not belonging to dvd.. it's hard to tell language
on automkv i use vstrip to determine audio id/languages (on ifo) and then allow dgindex to demux only tracks user selected

BHH
__________________
HDConvertToX: your tool for BD backup
MultiX264: The quick gui for x264
AutoMen: The Mencoder GUI
AutoWebM: supporting WebM/VP8
buzzqw is offline   Reply With Quote
Old 23rd March 2008, 01:56   #3652  |  Link
Mutant_Fruit
Registered User
 
Join Date: Apr 2004
Posts: 287
This is the current constructor. This throws a null ref exception in Mono because of a a missing null-check which prevents MeGUI from loading:
Code:
    class JobQueueSettings : ApplicationSettingsBase
    {
        public JobQueueSettings(IComponent c, string k)
            :base(c, k)
        {}
    }
If i use an alternate base constructor, everything loads up fine
Code:
    class JobQueueSettings : ApplicationSettingsBase
    {
        public JobQueueSettings(IComponent c, string k)
            :base(k)
        {}
    }
My understanding of the whole ApplicationSettingsBase stuff isn't good enough to know if that's a safe change or not. If that's a safe change, am i good to commit that? That'll allow MeGUI to run on Mono.
__________________
Nothing to see here...
Mutant_Fruit is offline   Reply With Quote
Old 23rd March 2008, 06:28   #3653  |  Link
bob0r
Pain and suffering
 
bob0r's Avatar
 
Join Date: Jul 2002
Posts: 1,337
Megui x264 config: RC and ME > Macroblock Options

When you select Adaptive DCT (--8x8dct), --i8x8 should be enabled also, this is a bug. Please fix it

Also i8x8 is on by default default: --partitions "p8x8,b8x8,i8x8,i4x4"

Edit:
Also please update --analyse to --partitions. Thanks

Last edited by bob0r; 23rd March 2008 at 07:27.
bob0r is offline   Reply With Quote
Old 24th March 2008, 08:37   #3654  |  Link
Kurtnoise
Swallowed in the Sea
 
Kurtnoise's Avatar
 
Join Date: Oct 2002
Location: Aix-en-Provence, France
Posts: 5,191
Quote:
Originally Posted by Mutant_Fruit View Post
This is the current constructor. This throws a null ref exception in Mono because of a a missing null-check which prevents MeGUI from loading:
Code:
    class JobQueueSettings : ApplicationSettingsBase
    {
        public JobQueueSettings(IComponent c, string k)
            :base(c, k)
        {}
    }
If i use an alternate base constructor, everything loads up fine
Code:
    class JobQueueSettings : ApplicationSettingsBase
    {
        public JobQueueSettings(IComponent c, string k)
            :base(k)
        {}
    }
It's fine for me if it doesn't break anything else...
Kurtnoise is offline   Reply With Quote
Old 24th March 2008, 08:45   #3655  |  Link
Kurtnoise
Swallowed in the Sea
 
Kurtnoise's Avatar
 
Join Date: Oct 2002
Location: Aix-en-Provence, France
Posts: 5,191
Quote:
Originally Posted by bob0r View Post
Megui x264 config: RC and ME > Macroblock Options

When you select Adaptive DCT (--8x8dct), --i8x8 should be enabled also, this is a bug. Please fix it
ok...

Quote:
Originally Posted by bob0r View Post
Edit:
Also please update --analyse to --partitions. Thanks
both are correct...
Kurtnoise is offline   Reply With Quote
Old 24th March 2008, 16:40   #3656  |  Link
Mutant_Fruit
Registered User
 
Join Date: Apr 2004
Posts: 287
Quote:
Originally Posted by Kurtnoise13 View Post
It's fine for me if it doesn't break anything else...
From what i can tell, it's ok to make this change, so i'm going to go ahead and commit this. Let me know if any issues pop up that i've missed. The fix is in revision 479, so things should Just Work (TM) on Linux now. Encoding and all that doesn't work, that needs to be set up, but MeGUI starts up.
__________________
Nothing to see here...
Mutant_Fruit is offline   Reply With Quote
Old 26th March 2008, 01:53   #3657  |  Link
bob0r
Pain and suffering
 
bob0r's Avatar
 
Join Date: Jul 2002
Posts: 1,337
Quote:
Originally Posted by Kurtnoise13 View Post
ok...


both are correct...
Yes, but x264 --help shows --partitions, why not make it match the x264 git code, just logical.

Thanks
bob0r is offline   Reply With Quote
Old 26th March 2008, 10:49   #3658  |  Link
Kurtnoise
Swallowed in the Sea
 
Kurtnoise's Avatar
 
Join Date: Oct 2002
Location: Aix-en-Provence, France
Posts: 5,191
why ? lazyness probably..

Anyway, if you check the current x264 code (formely common.c), you can see that it's still there fortunately...
Kurtnoise is offline   Reply With Quote
Old 26th March 2008, 12:21   #3659  |  Link
bob0r
Pain and suffering
 
bob0r's Avatar
 
Join Date: Jul 2002
Posts: 1,337
Quote:
Originally Posted by Kurtnoise13 View Post
why ? lazyness probably..

Anyway, if you check the current x264 code (formely common.c), you can see that it's still there fortunately...
YES i know that, pengvado left it there because he is such a nice guy

I just say: It would be better if you renamed it just to match Current x264 settings when you type x264 --help.
Clarity > Sanity!


P.S.
If you fixed the i8x8 issue, please update the stable version on the updater.... Okay Sahrktooth?
Sharktooth come on irc tonight 00:00-04:00 or tomorrow please, got something to run by you
bob0r is offline   Reply With Quote
Old 26th March 2008, 16:35   #3660  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
ill see what i can do
Sharktooth is offline   Reply With Quote
Reply

Tags
development, megui, not a help thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 11:15.


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