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
Register FAQ Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
Old 21st December 2005, 22:56   #841  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
ok... the last thing to do is cleaning up your nero installation with the clean up utility and reinstall it with the serials.
Sharktooth is offline   Reply With Quote
Old 21st December 2005, 23:01   #842  |  Link
stax76
Registered User
 
stax76's Avatar
 
Join Date: Jun 2002
Location: On thin ice
Posts: 6,837
Quote:
No, I forgot about that, but I really found it very quickly.. it's a definite advantage if you've written the code. I should've already caught it looking at the contents of the line variable that was posted.. it already reveals that the encoding speed is now given with 2 decimal digits.
Appears to be the last rescue sometimes, I came to it over a weird issue with absolutely no way around (don't remember if it was VS beta). That was as soon as the avifile API was used, the next exception happening somewhere terminated the application leaving no trace what happened so I had to find this way and use it always since then.
stax76 is offline   Reply With Quote
Old 21st December 2005, 23:01   #843  |  Link
acidsex
Registered User
 
Join Date: Dec 2002
Posts: 492
Checking my serials now against the order confirmation Nero sent me. Serial is still good and encoding still fails me.
acidsex is offline   Reply With Quote
Old 22nd December 2005, 04:29   #844  |  Link
leowai
Registered User
 
Join Date: May 2005
Posts: 184
Quote:
Originally Posted by Sharktooth
if it still doesnt work then you have a problem with your serials.
I think a valid serial for Nero Burning only is not sufficient. May be valid serial for Recode (that encodes HE-AAC) is required.

@acidsex, did your Recode works fine?
leowai is offline   Reply With Quote
Old 22nd December 2005, 04:35   #845  |  Link
acidsex
Registered User
 
Join Date: Dec 2002
Posts: 492
Recode works fine and everything. Thats why this is so frustrating.
acidsex is offline   Reply With Quote
Old 22nd December 2005, 22:19   #846  |  Link
acidsex
Registered User
 
Join Date: Dec 2002
Posts: 492
I gave up and gave the AACPlusV2 a try in Easy CD Xtractor and I love it. Ill just start using this for audio encoding instead. Woohoo.
acidsex is offline   Reply With Quote
Old 23rd December 2005, 05:09   #847  |  Link
charleski
Registered User
 
charleski's Avatar
 
Join Date: Jul 2004
Posts: 383
Fix for ensuring that the log file saves properly on exit:

In Form1.cs saveLog()
change
Code:
				if (!Directory.Exists(logDirectory))
					Directory.CreateDirectory(logDirectory);
				string fileName = logDirectory + @"\logfile-" + DateTime.Now.ToShortDateString() + "-" + DateTime.Now.ToShortTimeString().Replace(":", "-") + ".log";
to
Code:
				if (!Directory.Exists(logDirectory))
					Directory.CreateDirectory(logDirectory);
				string fileName = logDirectory + @"\logfile-" + DateTime.Now.ToString("yy-MM-dd") + "-" + DateTime.Now.ToShortTimeString().Replace(":", "-") + ".log";
Under certain locales the ToShortDateString() function will insert backslashes into the date, which results in a failure when trying to save to a non-existent directory.

Sorry I haven't had time to integrate this with all the other stuff.
charleski is offline   Reply With Quote
Old 23rd December 2005, 09:21   #848  |  Link
dimzon
BeHappy/MeGUI developer
 
dimzon's Avatar
 
Join Date: Oct 2003
Location: Moscow, Russia
Posts: 1,727
Code:
logDirectory + @"\logfile-" + DateTime.Now.ToString("yy-MM-dd") + "-" + DateTime.Now.ToShortTimeString().Replace(":", "-") + ".log";
Hi! This is really ugly code!
try this:
Code:
string.Format(@"{0}\logfile-{1}.log", logDirectory , DateTime.Now.ToString("yy'-'MM'-'dd'-'HH'-'mm'-'ss"));
dimzon is offline   Reply With Quote
Old 23rd December 2005, 13:22   #849  |  Link
Doom9
clueless n00b
 
Join Date: Oct 2001
Location: somewhere over the rainbow
Posts: 10,579
the problem with String.Format imho is that while people coming from C love it, it's so much harder to read and understand, especially if you don't come from C.
__________________
For the web's most comprehensive collection of DVD backup guides go to www.doom9.org
Doom9 is offline   Reply With Quote
Old 23rd December 2005, 14:06   #850  |  Link
dimzon
BeHappy/MeGUI developer
 
dimzon's Avatar
 
Join Date: Oct 2003
Location: Moscow, Russia
Posts: 1,727
Quote:
Originally Posted by Doom9
the problem with String.Format imho is that while people coming from C love it, it's so much harder to read and understand, especially if you don't come from C.
main goal is to replace ugly
Code:
DateTime.Now.ToString("yy-MM-dd") + "-" + DateTime.Now.ToShortTimeString().Replace(":", "-")
with this:
DateTime.Now.ToString("yy'-'MM'-'dd'-'HH'-'mm'-'ss")

PS. How about version control hosting (CVS or others?)
dimzon is offline   Reply With Quote
Old 23rd December 2005, 14:51   #851  |  Link
charleski
Registered User
 
charleski's Avatar
 
Join Date: Jul 2004
Posts: 383
0.2.3.1024
Altered the name formation for the filename used for the log when saving.
Tidied up the resolution calculations in the avisynth creator so that they behave consistently.
Added 1.78 to the list of accepted aspect ratios in getAspectRatio() (not sure why it wasn't there already...).
Altered the code executed on opening an avs file in the main form so that it will always change the output filename appropriately.
Sharktooth's changes:
Integrated changes to use Nero7 audio encoder
Weighted prediction and no-fast pskip removed from turbo first pass
Corrected bug that caused the mencoder call-back to hang
Fixes to GUI layout for Segoe font

Changed Files (from Sharktooth's 0.2.3.1023g)
.NET 1.1 binaries
charleski is offline   Reply With Quote
Old 23rd December 2005, 14:57   #852  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
there was also an "h" version: http://www.webalice.it/f.corriga/meg...0.2.3.1023h.7z which included this changes: http://forum.doom9.org/showthread.ph...853#post754853

are the fixes included?
Sharktooth is offline   Reply With Quote
Old 23rd December 2005, 15:34   #853  |  Link
charleski
Registered User
 
charleski's Avatar
 
Join Date: Jul 2004
Posts: 383
oops, yes, the 1023h changes are included.

I'll add the dgindexer fix to the changelog so we can keep track of things.
charleski is offline   Reply With Quote
Old 23rd December 2005, 15:46   #854  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
ok new merged sources (0.2.3.1b -> 0.2.3.1024): http://www.webalice.it/f.corriga/meg...0.2.3.1024.rar

new bins: http://www.webalice.it/f.corriga/meg..._0.2.3.1024.7z (link fixed)

Last edited by Sharktooth; 24th December 2005 at 15:59.
Sharktooth is offline   Reply With Quote
Old 23rd December 2005, 16:48   #855  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
the changelog is not updated yet...
however i badly need a SVN or i'll become mad...
Sharktooth is offline   Reply With Quote
Old 23rd December 2005, 17:16   #856  |  Link
charleski
Registered User
 
charleski's Avatar
 
Join Date: Jul 2004
Posts: 383
0.2.3.1024 23 Dec 2005
Altered the name formation for the filename used for the log when saving.
Tidied up the resolution calculations in the avisynth creator so that they behave consistently.
Added 1.78 to the list of accepted aspect ratios in getAspectRatio() (not sure why it wasn't there already...).
Altered the code executed on opening an avs file in the main form so that it will always change the output filename appropriately.
Sharktooth's changes:
Integrated changes to use Nero7 audio encoder
Weighted prediction and no-fast pskip removed from turbo first pass
Corrected bug that caused the mencoder call-back to hang
Fixes to GUI layout for Segoe font
Fix for force-film modification of d2v files.

Just paste that over the old one.

About an SVN: dimzon was talking about making a workspace for meGUI over on godotnet, though no-one replied when he asked about the license that he should specify. Godotnet does require a Microsoft Passport to sign in, though, and I know there are people with religious difficulties over that.

Since there's been a lot of talk about a code store but no action , I've presumed to send in a registration request for a meGUI Project on Sourceforge. Here's the description I posted:
Quote:
meGUI is a graphical front-end to a variety of modern video and audio encoders capable of producing video that adheres to the MPEG-4 standard, both MPEG-4 Part 2 (ASP) and MPEG-4 Part 10 (AVC). Its aim is to ease the usage of other Open Source encoder projects, although it has support for a proprietary AAC audio encoder as well.

The following video encoders are supported:
x264
xvid and libavcodec via mencoder
snow
The following audio encoders are supported via BeSweet:
faac
lame mp3
Nero AAC (proprietary - both version 6 and 7 supported)

It has integrated multiplexing support for the production of mp4 (via mp4box), mkv and avi containers (AVC video is only supported in mp4 and mkv), incorporating video, audio, chapters and subtitles. It accepts input video in MPEG-2 format (using DGIndexer) as well as .avi and .vdr (VirtualDub framserver) formats.

Additional features include an integrated Avisynth script creator similar to that found in GordianKnot, a bitrate calculator and a One Click Encoder which chains together the various steps needed to convert a series of .VOB files to a final encoded file. Additional utilities include an AVC quantiser matrix editor and chapter editor.

Development of meGUI was begun in early 2005 by doom9 (the webmaster of the popular video encoding board www.doom9.net, which has been in existence for around 5 years), who has written the majority of the application. Support is primarily handled through the MPEG-4 AVC forum on doom9.net.
The Trove categorisations are:
Quote:
# License :: OSI-Approved Open Source :: GNU General Public License (GPL)
# Intended Audience :: by End-User Class :: End Users/Desktop
# Development Status :: 5 - Production/Stable
# Topic :: Multimedia :: Video :: Conversion
# Programming Language :: C#
# Operating System :: Grouping and Descriptive Categories :: 32-bit MS Windows (NT/2000/XP)
# User Interface :: Graphical :: .NET/Mono
When it gets approved I'll turn ownership of it over to doom9.

Last edited by charleski; 23rd December 2005 at 18:10.
charleski is offline   Reply With Quote
Old 23rd December 2005, 18:14   #857  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
Quote:
# Development Status :: 5 - Production/Stable
well... maybe Development/Unstable...

however SF CVS is a PITA...
Sharktooth is offline   Reply With Quote
Old 23rd December 2005, 18:21   #858  |  Link
charleski
Registered User
 
charleski's Avatar
 
Join Date: Jul 2004
Posts: 383
Quote:
Originally Posted by Sharktooth
well... maybe Development/Unstable...
I may have been guilty of pumping it a bit to sell the project

Quote:
however SF CVS is a PITA...
The free versions of VS 2005 don't have any CVS support (grrr), so cheap bastards like me will have to use a separate CVS integrator anyway.
charleski is offline   Reply With Quote
Old 23rd December 2005, 18:46   #859  |  Link
Sharktooth
Mr. Sandman
 
Sharktooth's Avatar
 
Join Date: Sep 2003
Location: Haddonfield, IL
Posts: 11,768
what about moving the project development over sharpdevelop (free and opensource)?
i've already tried the VS2003 project conversion and it works pretty well...
Sharktooth is offline   Reply With Quote
Old 23rd December 2005, 18:55   #860  |  Link
Doom9
clueless n00b
 
Join Date: Oct 2001
Location: somewhere over the rainbow
Posts: 10,579
#develop? Heck no... a software without debugging capabilities? I'm all for open source but I have yet to see anything free that gets close to Visual Studio.
__________________
For the web's most comprehensive collection of DVD backup guides go to www.doom9.org
Doom9 is offline   Reply With Quote
Reply

Tags
development, megui, not a help thread


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 21:01.


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