Log in

View Full Version : MeGUI Bug-Report Thread


Pages : 1 2 3 4 5 6 [7] 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

dimzon
26th January 2006, 11:59
Since 0.2.3.2048 (now using .2050) I seem to keep getting this message when clicking the Preview button in the Avisynth script generator window (to update Video Preview after using resize).

I haven't had any problems in the past, and the initial preview opens fine after loading a d2v file:

The file LoadPlugin("C:\Program Files\Media\DGIndex\dgdecode.dll")
mpeg2source("C:\DVD\24-08\VTS_01_1.d2v")
#blank deinterlace line
#crop
LanczosResize(640,352)
#denoise
cannot be opened

Unable to load DLL 'AvisynthWrapper': The specified module could not be found

The script opens fine in Virtual Dub, Media Player etc. & I have Helix YUV codecs installed / FFDShow (setup as per guide). :confused:

everything is in your error message:
Unable to load DLL 'AvisynthWrapper': The specified module could not be found
just place AvisynthWrapper.dll into MeGUI folder

L4z4rus
26th January 2006, 12:21
Thanks...should have thought of that myself :rolleyes:

sPunkt
27th January 2006, 18:20
Hello,

I have installed MeGUI and all the other components the way described in the Guide (I hope...). Everything works like a charm until I want to queue the rendering job. Irrelevant of which When I click "queue" I get an Error Message stating

MeGui encountered a fatal error and hac to close. Reason: Value cannot be null.
Parameter name: String Source of exception: mscorlib stacktrace: at
System.Number.StringToNumber(String str, NumberStyles options, NumberFormatInfo info)
at MeGUI.Job.Util.adjustNbThreads(VideoCodecSettings settings)
at MeGUI.Job.Util.generateVideoJob(String input, String output, VideoCodecSettinge settings, Boolean skipVideoCheck)
at MeGUI.Job.Util.prepareVideoJob(string movieInput, string movieOutput, VideoCodecSettings settings, Boolean prerender)
at MeGUI.MeGUI.getVideoJobs()
at MeGUI.MeGUI.addVideoJob(Boolean start)
at MeGUI.MeGUI.queueVideoButton_Click(object sender, EventArgs e)
at System.Windows.Forms... (truncated - assume this is irrelevant)

Any idea of what might be the problem?
Your help is greatly appreciated, thanks!

ChronoCross
27th January 2006, 18:48
Hello,

I have installed MeGUI and all the other components the way described in the Guide (I hope...). Everything works like a charm until I want to queue the rendering job. Irrelevant of which When I click "queue" I get an Error Message stating

MeGui encountered a fatal error and hac to close. Reason: Value cannot be null.
Parameter name: String Source of exception: mscorlib stacktrace: at
System.Number.StringToNumber(String str, NumberStyles options, NumberFormatInfo info)
at MeGUI.Job.Util.adjustNbThreads(VideoCodecSettings settings)
at MeGUI.Job.Util.generateVideoJob(String input, String output, VideoCodecSettinge settings, Boolean skipVideoCheck)
at MeGUI.Job.Util.prepareVideoJob(string movieInput, string movieOutput, VideoCodecSettings settings, Boolean prerender)
at MeGUI.MeGUI.getVideoJobs()
at MeGUI.MeGUI.addVideoJob(Boolean start)
at MeGUI.MeGUI.queueVideoButton_Click(object sender, EventArgs e)
at System.Windows.Forms... (truncated - assume this is irrelevant)

Any idea of what might be the problem?
Your help is greatly appreciated, thanks!

Did you make sure to set all the program paths in the settings dialog? Also did you select a source codec for video?

Doom9
27th January 2006, 19:20
@sPunkt: what operating system are you using?
@ChronoCross: quoting an entire stacktrace is a bit excessive ;)

ChronoCross
27th January 2006, 19:36
@sPunkt: what operating system are you using?
@ChronoCross: quoting an entire stacktrace is a bit excessive ;)

my bad. lol

ChronoCross
27th January 2006, 23:47
This bug report seems to be more of a nuance if someone were to actually do it. But I discovered it when I forgot to close the open new compile of megui and deleted the default Profile.xml it created upon the first opening. It sends the program into an infinite error loop and makes the program uncloseable except using the task manager.

Error Picture (http://www.chronocrossdev.com/images/close_no_settingsxml.png)

burgerpardis
28th January 2006, 04:22
I'm testing the avisynth audio encoding using MeGUI-0.2.3.2055 and I get the following error after dgindex runs everytime. dgdecode versions are the same in the avisynth plugin's directory and in dgindex.

your avisynth script has the following problem:
error in avisynth script:
Script Error: there is no function named "tfm"
(C:\BAND_OF_BROTHERS_D2\VIDEO_TS\VTS_01_PGC_01_1.avs, line 2)
Continue anyway?

then it asks yes or no. I'm going to click yes and see what happens...ok, it then says video input can't be opened and megui closes down.

berrinam
28th January 2006, 04:31
Ok, the error is pretty simple. You are missing TIVTC (I link to it in my guide -- it's one of the AviSynth plugins).

As to MeGUI closing down.... well.... that's definitely got to be fixed.

burgerpardis
28th January 2006, 05:58
just out of curiosity, is it for the audio encoding? Because I am running the same encode using 0.2.3.2033 flawlessly right now with out TIVTC.

berrinam
28th January 2006, 07:22
just out of curiosity, is it for the audio encoding? Because I am running the same encode using 0.2.3.2033 flawlessly right now with out TIVTC.
No, it's (probably) added by the automatic source detection (finds and removes various combing/interlacing patterns). I'm surprised that you don't have this problem with 2033, because source detection was added in 2014. Did you generate your AVS script, or did MeGUI do it for you? What does your script look like (please post)?

burgerpardis
28th January 2006, 19:22
megui did it for me. here is the one that works,

mpeg2source("C:\BAND_BROTHERS_D2\VIDEO_TS\VTS_01_PGC_01_1.d2v")
#deinterlace
crop(0,0,-2,-2)

LanczosResize(320,176)
#denoise


and here is the one that doesn't:

mpeg2source("C:\BAND_BROTHERS_D2\VIDEO_TS\VTS_01_PGC_01_1.d2v")
tfm().tdecimate(hybrid=1)
crop(0,0,-2,-2)

LanczosResize(320,176)
#denoise


do you want me to show the video and audio profiles?

Doom9
28th January 2006, 19:50
just add the avisynth plugin as berrinam told you to. If you want to use the automatic interlace detection, you just gotta have that plugin.

burgerpardis
28th January 2006, 20:04
I added the plugin as soon as he said so. I guess something in the deinterlacing changed from 33 to 55.

sPunkt
29th January 2006, 01:46
@ChronoCross: Yup, everything set correctly.
@doom9: Win98SE - and for reasons beyond my control, this unfortunately will not change for quite some time... .net is 2.0

berrinam
29th January 2006, 02:34
Go to Tools->Settings, and make sure that 'Automatically set number of threads' is not checked. It's a Win98 problem.

bob0r
29th January 2006, 16:39
Compiling 2055 fails

compile x264-svn

Microsoft (R) Visual C# 2005 Compiler version 8.00.50727.42
for Microsoft (R) Windows (R) 2005 Framework version 2.0.50727
Copyright (C) Microsoft Corporation 2001-2005. All rights reserved.

DialogManager.cs(6,7): error CS0246: The type or namespace name 'Utils' could not be found (are you missing a using directive or an assembly reference?)

Turd_Ferguson
30th January 2006, 05:32
this is what errors show in my MeGUI log file:

Log for job job2-3

avis [info]: 320x240 @ 29.97 fps (3201 frames)
x264 [error]: Error: 2pass curve failed to converge
x264 [error]: target: 54818.00 kbit/s, expected: 881.01 kbit/s, avg QP: 22.0000
x264 [error]: try reducing target bitrate or reducing qp_min (currently 22)

i am using the PD-iPod profile and everythings runs along until MP4Box starts, and then i get the windows "serious error" box. i know i have seen this error posted anywhere, i just haven't seen any solutions yet. the complete logfile is attached. let me know if i should post this somewhere else. thanx.

berrinam
30th January 2006, 06:39
It sounds like you are using AutoEncode or OneClick with a CD size target, causing the calculated bitrate to be way too high. What you should really do (since it seems like you don't have a target size in mind) is select "Don't care" for target file size, which will mean it will use PD-iPod's bitrate (700kbps), instead of calculating a new one.

Hopefully, that will also fix your MP4Box error.

neo squidward
30th January 2006, 06:55
When I try to mux to mp4 I get a windows error "MP4box.exe encountered a problem..." and this is in the megui 0.2.3.2055 log

Starting job job1 at 11:53:19 PM
Job is a mux job. Commandline:
-add "H:\test-vdubv.mp4" -add "H:\test-vduba.mp4":lang=eng -new "H:\test-vdub.mp4"
successfully set up muxer
Processing ended at 11:53:30 PM
----------------------------------------------------------------------------------------------------------

Log for job job1

IsoMedia import - track ID 1 - Video (size 640 x 352)

----------------------------------------------------------------------------------------------------------

ChronoCross
30th January 2006, 07:09
When I try to mux to mp4 I get a windows error "MP4box.exe encountered a problem..." and this is in the megui 0.2.3.2055 log

there are some problems with some of the mp4box version going around. most specifically celtic_druids build is broken. However the one made by kurtnoise works and can be found here:

http://kurtnoise.free.fr/mp4tools/

Turd_Ferguson
30th January 2006, 07:18
@berrinam
thanx for the lightening reply! i set the "don't care" file size and get the same error with widows about MP4Box. however, the log file is different and i see no errors in that. i have attached the new log file.

Igor Kharchenko
30th January 2006, 07:31
After updating MeGUI to version that needs Framework 2, shutdown didn't work. Now I'm using v2033. System - windows xp prof sp2, logged as advanced user.

Turd_Ferguson
30th January 2006, 07:39
@ChronoCross
Frigging Sweet! i downloaded MP4Box_2006119 from your link, and everything seems to work fine. the resulting .mp4 file plays fine in iTunes, and on iPod. Thank you. you just saved my monitor from being punched. The down side is now i will want to buy a new Athlon FX-60 to be able to keep up with my impatience while encoding.

@anybody
should i be concerned with the "signal AR" and "automatic deinterlacing" check boxes in the one click encoding menu? i will always be using NTSC DVDs as sources.

berrinam
30th January 2006, 09:23
@anybody
should i be concerned with the "signal AR" and "automatic deinterlacing" check boxes in the one click encoding menu? i will always be using NTSC DVDs as sources.
Signalling AR is a mater of choice and/or target size/bitrate, if any. Basically, it provides a way of increasing the vertical resolution without increasing the horizontal resolution. Use this if you think you have a high enough bitrate and you want the extra resolution.

Automatic deinterlacing: yes, I would say that it is a good idea for you to use this. If you know what interlacing is, then you will have an idea about what this does. If you don't then look it up on the web. http://www.100fps.com has some description about it.

Doom9
30th January 2006, 09:38
@Turd_Ferguson: Can you try to run the following commandline manually:

mp4box -add "C:\THE_OFFICE\VIDEO_TS\trial01_Video.mp4" -add "C:\THE_OFFICE\VIDEO_TS\trial01 T01 2_0ch 192Kbps DELAY 0ms.mp4":lang=eng -fps 29.97 -new "C:\THE_OFFICE\VIDEO_TS\trial01.mp4"

Also, what mp4box version are you using? If you look around the forum a little, there are many broken builds floating around. Here's a sample link to a problem I think is the same as you're having: http://forum.doom9.org/showthread.php?t=105552

puffpio
30th January 2006, 10:03
yes.. I will definately test it once it is released

Hey I tested it out and indeed it is fixed. The correct frames and framerate is detected

Turd_Ferguson
30th January 2006, 19:27
@Doom9, The Great and Omnicient :)
i wish i could give more info on the version of MP4Box i'm using, but everything i know is that it was in the file named MP4Box_2006119.zip from the link that ChronoCross posted. if i try to open MP4Box.exe, all i get is a little black command box that flashes on the screen for less than a second. second, i'm not sure what you want me to do with that commmand line you posted.

@anyone
so i can run the 1'46", 4:3 source clip thru the whole MeGUI process fine, in 4:3 and 16:9 ratios. if i check Automatic Deinterlace, i will get an error when muxing.

i have yet to get anything else to complete. it seems that the error always occurs in the muxing stage, so i will try some different versions of MP4Box and see if that helps. this is the last few lines of the attached log file.

Log for job job2-3

Unknown input file type
Error importing C:\THE_OFFICE\VIDEO_TS\01\pilot_Video.mp4: Feature Not Supported
(Feature Not Supported)

thanx

sPunkt
30th January 2006, 23:21
Go to Tools->Settings, and make sure that 'Automatically set number of threads' is not checked. It's a Win98 problem.

Fixed it - thanks!

Doom9
30th January 2006, 23:36
Error importing C:\THE_OFFICE\VIDEO_TS\01\pilot_Video.mp4: Feature Not Supported
(Feature Not Supported)That's the prototype of mp4box screwing up :(

What I mean by "run the commandline" is (and you really should learn that.. it may not be an everyday thing today but knowing what a commandline is still helps today.. there are multiple tasks that can be done more efficiently from it). run a commandline goes like this: press start, click on run, type cmd, press enter. There's your commandprompt.. the holy grail of computing (and how the old guard started out.. even today, if you ever enter linux or unix territory you are dead in the water without a commandline). Then you can copy and paste the commandline and press enter to run it.
Needless to say that you need to be in the directory where your mp4box is in.. so type something like "cd "d:\my software\my really amazing path\blah blah blah\"" .. cd is short for change directory.. and you need the quote that starts before d:\. If you have windows xp, you can also start typing, then press tab to try autocompletion of paths.

berrinam
31st January 2006, 07:48
After updating MeGUI to version that needs Framework 2, shutdown didn't work. Now I'm using v2033. System - windows xp prof sp2, logged as advanced user.
More information required. Does it always fail? Are you sure it was checked? Did any jobs have errors, or did you abort any jobs?

Igor Kharchenko
31st January 2006, 09:22
More information required. Does it always fail?
Yes.
Are you sure it was checked?
Absolutely. At queue tab and at setup form.
Did any jobs have errors, or did you abort any jobs?
No errors. There was 2 jobs for auto-2-pass. After finishing they had 'done' status.
I'll try to do some tests with admin rights.

max-holz
31st January 2006, 14:29
I'am actually using 2055 version; I notice that projected filesize doesn't take care of the audio file size that I have prepared separately. What's happen? In previous version seems to work well.

Doom9
31st January 2006, 14:40
What's happen? In previous version seems to work well.Well.. what has happened is that you didn't post the log and without that there's no service ;)

cmw
31st January 2006, 15:01
I get an error "Unexpected Value in file ....
Make sure you have decomb.dll in your avisynth plugin path.

The bar runs though again then and declares the source as hybrid film/ntsc (which can't be correct).

This problem was discussed here earlier but I can't see any solution. My ff_interlace.log (http://cmw.cybton.com/ff_interlace.log)
As you can see, this does not make much sense.

I have the fdecomb.dll there (and detection will work for progressive files. My file is interlaced DV, 25fps PAL.

The interesting thing is, that it will also correctly identify e.g. interlaced DVD Source, it will just give me this error with DV Video. Is there any way to fix this?

I use MeGUI 0.2.3.2058


Additional Question: Can NAAC Audio be used with Nero 7 Plugins? Because this does absolutely not work, neither with BeSweet nor AviSynth Audio. BeSweet log tells me error configuring bsn and audio synth says


Channels=2, BitsPerSample=16, SampleRate=48000Hz
C:\Programme\Rippen\Neroraw\neroraw.exe -o "C:\DVD\VTS_01_1 T01 2_0ch 224Kbps DELAY 0ms.mp4" -rr 48000 -rb 16 -rc 2 -cbr 128 Error:
System.ApplicationException: Can't start encoder: Cannot process request because the process (420) has exited. ---> System.InvalidOperationException: Cannot process request because the process (420) has exited.
at System.Diagnostics.Process.GetProcessHandle(Int32 access, Boolean throwIfExited)
at System.Diagnostics.Process.set_PriorityClass(ProcessPriorityClass value)
at MeGUI.AviSynthAudioEncoder.createEncoderProcess(AviSynthClip a)
--- End of inner exception stack trace ---
at MeGUI.AviSynthAudioEncoder.createEncoderProcess(AviSynthClip a)
at MeGUI.AviSynthAudioEncoder.encode()



Thanks in advance,

best regards,cmw

Avish
31st January 2006, 17:13
More information required. Does it always fail? Are you sure it was checked? Did any jobs have errors, or did you abort any jobs?
I was going to report the same thing that Shutdown ain't working. It happened last 3 times. I woke up in the morning & the machine is still up n' running, but the encode is finished 2-3 hours back.

Shutdown option checked at queue tab and at the setup form.
No errors. Encoding successfully finished. ;)

max-holz
31st January 2006, 18:57
I select this avs script with MeGUI 0.2.3.2059:

LoadPlugin("C:\Programmi\x264\DGDecode.dll")
LoadPlugin("C:\Programmi\x264\plugins\Undot.dll")
LoadPlugin("C:\Programmi\x264\plugins\Deen.dll")
LoadPlugin("C:\Programmi\x264\plugins\fft3dfilter.dll")
LoadPlugin("C:\Programmi\x264\plugins\DctFilter.dll")
LoadPlugin("C:\Programmi\x264\plugins\ColorMatrix.dll")
LoadPlugin("C:\Programmi\x264\plugins\MaskTools.dll")
Import("C:\Programmi\x264\QMF_bistecc.avs")
Import("C:\Programmi\x264\DeHalo_Alpha.avs")
Import("C:\Programmi\x264\LRemoveDust2.avs")
mpeg2source("C:\Scambio\Elaborazione Video\PortiereDiNotte\PortiereDiNotte.d2v")
#crop(4,14,-0,-16)
crop(4,14,-0,-14)
#640, 352
function Filter_Motion_Nil(clip c)
{
c = UnDot(c)
c = FFT3DFilter(c,Sigma=2.3,bw=32,bh=32,bt=4,ow=16,oh=16)
c = LanczosResize(c,640, 336)
c = DeHalo_alpha(c)
Return c
}
function Filter_Motion_Min(clip c)
{
c = UnDot(c)
c = FFT3DFilter(c,Sigma=2.4,bw=32,bh=32,bt=4,ow=16,oh=16)
c = BicubicResize(c,640, 336,0,0.75)
c = DeHalo_alpha(c)
Return c
}
function Filter_Motion_Mid(clip c)
{
c = Undot(c)
c = FFT3DFilter(c,Sigma=2.5,bw=32,bh=32,bt=3,ow=16,oh=16)
c = BicubicResize(c,640, 336,0,0.5)
c = DctFilter(c,1,1,1,1,1,1,.5,0)
Return c
}
function Filter_Motion_High(clip c)
{
c = Undot(c)
c = Deen(c,"c3d",0,7,8,3)
c = BicubicResize(c,640, 336,0.333,0.333)
c = LRemoveDust_YV12(c,17,2)
c = DctFilter(c,1,1,1,1,1,1,.5,0)
Return c
}
function Filter_Motion_Very_High(clip c)
{
c = UnDot(c)
c = Deen(c,"c3d",0,8,9,3)
c = BilinearResize(c,640, 336)
c = LRemoveDust_YV12(c,17,2)
c = DctFilter(c,1,1,1,1,1,1,.5,0)
Return c
}
QMF(0.65,2.25,5.15,7.05,3).ColorMatrix()


then try to open bitrate calculator from tools and I receive this message:

Microsoft Visual C++ Runtime Library

Program C:\....\megui.exe

R6034
An application has made an attempt to load the C runtime library incorrectly.
Please contact the application's support team for more information.

I want to point some facts for Doom9:

1) I use this script for other encoding with previous version of MeGui without error

2) The script in this case is well rendered by AVSEdit

3)No log is generated by MeGUI or in the Event Viewer

4) I didn't done any modifications or installations from last time I use MeGUI succesfully (with version 2054) so is not a problem on my machine.

dimzon
31st January 2006, 19:05
I select this avs script with MeGUI 0.2.3.2059:

Please, help us to locate issue. Try to simplify your script until this error disapear and post here - which script block caused this error.

max-holz
31st January 2006, 19:19
Please, help us to locate issue. Try to simplify your script until this error disapear and post here - which script block caused this error.

I debug application, I catch the error in AvisynthWrapper.cs


public AviSynthClip(string func, string arg , AviSynthColorspace forceColorspace, AviSynthScriptEnvironment env)
{

_vi = new AVSDLLVideoInfo();
_avs = new IntPtr(0);
_colorSpace = AviSynthColorspace.Unknown;
_sampleType = AudioSampleType.Unknown;
if(0!=dimzon_avs_init(ref _avs, func, arg, ref _vi, ref _colorSpace, ref _sampleType, forceColorspace.ToString()))
{
string err = getLastError();
cleanup(false);
throw new AviSynthException(err);
}
}

For the line in red Visual Studio open a popup with this message:

LoaderLock was detected
Message: Attempting managed execution inside OS Loader lock. Do not attempt to run managed code inside a DllMain or image initialization function since doing so can cause the application to hang.

I hope this can help you

P.S. the popup seems to indicate this function: forceColorspace.ToString()
Message: Attempting managed execution inside OS Loader lock. Do not attempt to run managed code inside a DllMain or image initialization function since doing so can cause the application to hang.

dimzon
31st January 2006, 19:33
LoaderLock was detected
Message: Attempting managed execution inside OS Loader lock. Do not attempt to run managed code inside a DllMain or image initialization function since doing so can cause the application to hang.
Ohh, holy shit...

Seem's like we discover AviSynth or/and AviSynth's plugin bug. It means one of AviSyhth plugin contains somethig like "LoadLibrary" @ DllMain. This is really bad, but can not produce error. But .NET Runtime detects it @ creates an Exception...

Can you help us to find wich LoadPlugin produce such error?

max-holz
31st January 2006, 20:19
Well Dimzon I have just remembered that I do one thing, on sunday I have installed a cvs build of ffdshow. I uninstalled that version and reinstalled another version and now everythig is well. I'am sorry

berrinam
31st January 2006, 22:07
The bar runs though again then and declares the source as hybrid film/ntsc (which can't be correct). Since it only has rubbish to work with (have a look at your ff_interlace.log file -- every single line says "I don't know what diffa means-I don't know what diffb means". How is source detection supposed to use any of that information?

I have the fdecomb.dll there (and detection will work for progressive files.FDecomb.dll or just Decomb.dll?

This time, instead of pressing the Analyse button, skip it and after you have loaded your DV source in the AviSynth Creator, press Save, and save the file. Open it in the main MeGUI window, and I expect it will tell you an AviSynth error. If you can't fix it based on that error, report back with the error message.

Additional Question: Can NAAC Audio be used with Nero 7 Plugins? Because this does absolutely not work, neither with BeSweet nor AviSynth Audio. BeSweet log tells me error configuring bsn and audio synth saysDid you follow the MeGUI guide in the sticky and set up everything as it says, because Nero 7 AAC does work with AviSynth audio.

ChronoCross
1st February 2006, 00:23
when adding a pre-rendering job and hitting queue meGUI throws an error in AVS script message. because the pre-rendering job hasn't been created yet there is no .avi file to be read. you can click yes for continue and it queues just fine but it should probably have a special case where it doesn't check the validity of the .avs loading the lossless file

Inc
1st February 2006, 00:55
Report: 0.2.3.2060
If changing to "mkv" as output file, MeGUI forces an "avi" extension and doesnt encode properly.

Someone aware of that?

Doom9
1st February 2006, 06:38
@incredible: logfiles are incredibly helpful. And unless x264 output via x264.exe is used, the video encoder output has to be named .avi because mkvmerge needs an input it can understand. So you should get X video jobs and a mux job on top of that.

berrinam
1st February 2006, 08:40
i think the sar computation on build 0.2.3.2060 is broken. my encode output show way stretched out videos whether my source is anamorphic at 1.85 or 2.35.

Please read the guidelines first:

...
POST YOUR LOGFILE. MeGUI writes lots of valuable information in the logfile. Try reading the log yourself, and see if you find the error, or any outrageous values (ones which are clearly wrong). If you can solve it based on that, good for you. Otherwise, it may help someone else solving your problem.
Describe the simplest way to reproduce your problem. Imagine the people reading your instructions are idiots, so you have to tell them exactly what to do, in a fool-proof way.
No-one is going to spend 2 days running 10 encodes, on the off-chance that at the end of them, they might crash. Work out how to cause your problem to happen again, and then it is much easier for the problem to be solved.
Too much information is better than too little. Don't make the developers pry the information out of you, as it is too much work for them, and they will just ignore you.
...

Inc
1st February 2006, 09:32
@incredible: logfiles are incredibly helpful
;) Yep that really makes sense.

cmw
1st February 2006, 10:18
FDecomb.dll or just Decomb.dll?



Sorry, was a typo, i have Decomb.dll in my AviSynth Plugin directory.



This time, instead of pressing the Analyse button, skip it and after you have loaded your DV source in the AviSynth Creator, press Save, and save the file. Open it in the main MeGUI window, and I expect it will tell you an AviSynth error. If you can't fix it based on that error, report back with the error message.



No, the avisynth will load into the MeGui Window. However, there are some issues with aspect ratio. I did autocrop and suggest resolution and it seems ok in the preview, but if i load it the aspect ratio is all messed up. Hmm, this seems to be an error with cropping. It crops the things i want not in, but the "Auto Suggest Resolution" thingie seems not to get that it should substact the cropped pixels from the suggested resolution to maintain aspect ratio...

I have checked again for all file mentioned in the guide, and I can't find an error... I made a picture of my folder structure and contents of the AviSynth Plugin directory, maybe this helps.

http://cmw.cybton.com/structure.png


Did you follow the MeGUI guide in the sticky and set up everything as it says, because Nero 7 AAC does work with AviSynth audio.

Yes, i did, I have a folder with neroraw.exe in it, with aac.dll ver 2.5.9.994, aacenc32.dll ver 4.2.0.27 and bsn.dll (53kb, changed 05.03.2004).

I have set the path to neroraw.exe. There was another neroraw.exe in the megui folder though, which was alot bigger (20kb isntead of 6.50 kb) and also 4 days newer (dateted jan. 30th, not jan. 26th). I tried to use this one but it didn't work either...

dimzon
1st February 2006, 10:58
Well Dimzon I have just remembered that I do one thing, on sunday I have installed a cvs build of ffdshow. I uninstalled that version and reinstalled another version and now everythig is well. I'am sorry
Can you perform such actions:

Install problematic ffdshow build again
remove ffavisynth.dll from avisynth plugins folder
check your script in megui again

max-holz
1st February 2006, 14:14
Can you perform such actions:

Install problematic ffdshow build again
remove ffavisynth.dll from avisynth plugins folder
check your script in megui again


Sorry Dimzon I restart again my encoding. :o
Indeed this is the problematic ffdshow: http://rapidshare.de/files/12073437/ffdshow-20060129-icc-sse.exe.html

You can also read another post that confirm my same error here: http://forum.doom9.org/showthread.php?t=98600&page=41&highlight=ffdshow

Ciao