View Full Version : AutoMKV 0.93a - (DVD/TS/AVI/AVS to X264/XviD/WVC1 into MKV/MP4/WMV) update 30/12/2007
buzzqw
16th March 2007, 17:16
@nx6
understud the warning , fixed in next update !
BHH
buzzqw
16th March 2007, 18:00
@dlflannery
FIXED !
i cannot use neither x264 or xivdencraw to invoke soundout
but i must use virtualdub...
i would like to use ffmpeg... but i haven't find a working command line
BHH
delacroixp
16th March 2007, 19:08
complete and thorough 2-pass quality audio-boost... for those who prefer the 'perfect solution' and/or have time on their side.
isn't possible to do a two pass with command line encoder like neroaac /ogg/lame....
And I suppose there's a good reason why the BeSweet audio encoder by DSPguru couldn't be included as an option... ???
My Com Sci Proffessor would often say that 'A thing of beauty is a joy forever'... and the 2-pass encoder by BeSweet smacks of pure sunshine...
:) :D :eek:
Pascal
weaver4
16th March 2007, 20:22
there are two way of changing the profiles !
first, open the file into \profiles\x264-profiles\zxcvb.xml and edit it with notepad
second (and recommed) on advanced profiles editing modify the profile AND (after editing) check USE this Profile
in this way automkv will use this EDITED profile
about coding tech is better to use Nero (support 5.1ch!)
mini how-to
load the input file
select audio/container/codec/resize/width....
change the profile to crf
answer Go Unlimited
on advanced profile editing change bitratequantitizer from 18 to 20
check use this profile
click start
BHH
So what exacly does the CRF field do on the Advanced Settings Tab if it does not change the crf value of the encode? It seems to me that if I go over and put 20 into that field and then come back to the main tab and press encode it should encode with a crf of 20.
buzzqw
16th March 2007, 20:34
@weaver4
are you reffering to "Use CRF for Autoresize Routines" ?
if so this value is used only when doing autoresize, and usually with CRF profile the autoresize isn't needed
the exact what of editing the crf value was already exposed
BHH
EDIT: @delacroixp
besweet doens't work with avisynth, doesn't work with any file where is needed directshow , are you able to extract audio from an mkv with besweet ?
nx6
16th March 2007, 20:59
It sounds like AutoMKV should be reading it's default settings from an ini file (or the registry) instead of having defaults in the application code itself. This would then cause everyone to have a default profile, and give you a place to save settings.
I like this idea of having a default profile as well, as a file in the AutoMKV folder. I rather not have the program use the registry for a variety of reasons.
weaver4
17th March 2007, 00:44
@weaver4
are you reffering to "Use CRF for Autoresize Routines" ?
if so this value is used only when doing autoresize, and usually with CRF profile the autoresize isn't needed
the exact what of editing the crf value was already exposed
Yeah, that is what I was talking about. Now I got it.
weaver4
17th March 2007, 00:53
I am having a strange problem. My computer says I am out of resources whenever the avs file starts processing. The log file shows over and over again this entry as it trys to start wsscript It eventually runs out of system resouces and crashes my computer.
This appears to be related to the fix you did for 0.78b
========================================================
21:36:52 Unable to encode Audio, trying with DirectShowSource!
21:36:52 Encoding C:\Movies\temp\fixed1.ac3 to NeroAAC with 0.35 quality
21:36:52 Applying ReplayGain
21:36:52 Encoded 1' Audio Track: -1 bytes
21:36:52 Unable to encode Audio, trying with DirectShowSource!
21:36:52 Encoding C:\Movies\temp\fixed1.ac3 to NeroAAC with 0.35 quality
21:36:52 Applying ReplayGain
21:36:52 Encoded 1' Audio Track: -1 bytes
21:36:52 Unable to encode Audio, trying with DirectShowSource!
21:36:52 Encoding C:\Movies\temp\fixed1.ac3 to NeroAAC with 0.35 quality
21:36:53 Applying ReplayGain
21:36:53 Encoded 1' Audio Track: -1 bytes
21:36:53 Unable to encode Audio, trying with DirectShowSource!
21:36:53 Encoding C:\Movies\temp\fixed1.ac3 to NeroAAC with 0.35 quality
dlflannery
17th March 2007, 02:58
@dlflannery
FIXED !
i cannot use neither x264 or xivdencraw to invoke soundout
but i must use virtualdub...
i would like to use ffmpeg... but i haven't find a working command line
BHH
Do you mean you want a command line for ffmpeg for audio-only encoding with AVS input? I think I have the answer for that. Of course the ffmpeg build must have the avisynth option activated but most recent builds have that.
1. Define an AVS file with both video and audio in it. (ffmpeg will crash if you feed it an AVS with only audio in it.)
2. Here is an example command line that works -- tested on ffmpeg builds 7760 and 8047:
"C:\ffmpeg.exe" -i "C:\audio+video.avs" -vn -acodec mp3 -ab 128 -ac 2 -mbd 2 -async 1 -y "C:\audioOut.mp3"
It appears ffmpeg will process only the audio, but it will crash unless it can analyze both video and audio in the AVS file.
Edit after further testing:
You can synthesize the video for the video+audio AVS as follows:
# Source the audio clip as appropriate (this is just an example):
audio=directShowSource("inputFile",video = false);
# Following code synthesizes a blank video to match the audio so
# ffmpeg will not crash:
dur=audioLength(audio) / audioRate(audio)
video=blankClip(dur*20,320,240, "YUY2",20)
audioDub(video,audio)
This will work if inputFile is a video (with audio of course) or just an audio file, as long as it can be sourced in AVS.
nx6
17th March 2007, 04:16
@weaver4
are you reffering to "Use CRF for Autoresize Routines" ?
if so this value is used only when doing autoresize, and usually with CRF profile the autoresize isn't needed
the exact what of editing the crf value was already exposed
So when we are using CRF we don't have to define a resize?
Whenever I chose the CRF profile, the width would change to 720, so I was resetting it to AUTO or the actual width if I knew it offhand.
schizosmurf
17th March 2007, 06:34
PPC? So you're using a Mac?
PPC = Pocket PC, i have a Treo 700 which runs Windows Mobile 5
@schizosmurf
not only could be {} but also: are you able to play the file with mediaplayer classic / virtualdub ?
BHH
renamed the source file to just Bleach19.avi and still same result. also plays fine in mpc and virtualdub(with which it was originally encoded to xvid)
i think i've figured out the problem or part of it. didnt really read this the first few times but when i open up automkv, Vista gives the error "COM surrogate has stopped working." Heres the details of the error.
Problem signature:
Problem Event Name: APPCRASH
Application Name: DllHost.exe
Application Version: 6.0.6000.16386
Application Timestamp: 4549b14e
Fault Module Name: ffvfw.dll
Fault Module Version: 0.0.0.0
Fault Module Timestamp: 3eafd738
Exception Code: c0000005
Exception Offset: 00027742
OS Version: 6.0.6000.2.0.0.256.1
Locale ID: 1033
Additional Information 1: 8d13
Additional Information 2: cdca9b1d21d12b77d84f02df48e34311
Additional Information 3: 8d13
Additional Information 4: cdca9b1d21d12b77d84f02df48e34311
so i would be led to believe that there is some incompatibility between ffvfw.dll and Vista, right? any ideas/thoughts?
EDIT: uninstalled ffdshow, and the windows error stopped occuring upon opening automkv, but still getting the exact same behavior when i try to encode. so i guess that had nothing to do with it
BleedingGums
17th March 2007, 10:13
Is there a way to manually assign an audio delay without resorting to avs scripts? if not, it would me neat if there was.
buzzqw
17th March 2007, 10:19
@nx6
ADDED: In nex update if a file named "noneroAacEnc.here" is present in \exe\besweet folder , AutoMKV will not ask to download
@weaver4
this audio have some problem, on next update will be no more loop and "should be encoded ok"
@dlflannery
no, sorry, i have mispelled something
i wnat to invoke the mkvmaudio.avs (with soundout plugin) with ffmpeg.exe like "ffmpeg.exe mkvmaudio.avs". I don't want to use ffmpeg for audio but soundout
a big thanks anyway for your support !!!!
@nx6
as i wrote "usually" isn't needed.
a crf encoding is aimed , again usually, to a unknow file size, so the autoresize is a little non-sense. Autoresize has a reason to be used in conjuction with CRF AND Hit media Size
@schizosmurf
automkv on start don't load any dll... (and i haven't installed vista)... trying to upgrade ffdshow ?? or running automkv in winxp compatibility mode ?
BHH
buzzqw
17th March 2007, 10:22
Is there a way to manually assign an audio delay without resorting to avs scripts? if not, it would me neat if there was.
i use delaycut to "fix" the delay, so to fix the delay you must change the filename to moviexxx 420ms.ac3 .... into moviexxx 820ms.ac3
isn't as megui that use the delay function of mkvmerge when muxing
BHH
delacroixp
17th March 2007, 10:57
EDIT: @delacroixp
besweet doens't work with avisynth, doesn't work with any file where is needed directshow , are you able to extract audio from an mkv with besweet ?
I think my first movie was with MeGUI where I encoded the sound with BeSweet and then muxed it with MkvToolnix(ver 2.0.2) MkvMerge GUI.
I've been encoding 'Band of Brothers' with video-only... hoping to generate the soundtrack with BeSweet in VBR (Streaming quality) and then mux them together...
Encoding with video-only (using ConstantQuality-CRF) has allowed me to better guage filesize and the Quantizer required to fit everything (including extras) onto 1 4.5 GB DVD. I've downsized the resolution by 50% and I'm still hoping to downmix some of the extras into MONO... it's getting a bit tight...
With a quantizer of 24 and comparable VBR-audio... the quality is far from perfect but still pretty incredible...
Perhaps the right way may well be to drop the resolution to 640x368 (instead of 720x400) and use a 20 quantizer... I like the idea of 1 Disc fits all... though I'm also working on a 2 disc, full resolution (1024x576) version. The complete series is over 10 hours and 34GB... so I guess "H264 is a serious over-achiever".
I've got a few hrs of encoding on the run... so I'll have to check later...
OK... so what you're saying is "BeSweet audio boost, etc is all good... but you can't automate the process into a single job".
:) :D :eek:
Pascal
vgiozo
17th March 2007, 11:51
I encoded a movie with the new build 0.78c and the audio volume is quite low...how come? Is there sth I can do to fix it?
I encoded audio with Nero AAC at a constant bitrate of 160kbps stero...
EDIT:
I played the .ac3 file in the temp folder and the volume is normal...probably sth wrong with the downmixing? dont' know...
buzzqw
17th March 2007, 14:38
@vgiozo
have you update first to 0.78a and then to 0.78c?
the 0.78a fixes problem with "normalize" fuction (volume boost)
@delacroixp
maybe my english isn't enough, with besweet is impossible to catch audio from files avi/ogm/mkv/mp4
the two only way to grab audio from those file are
1) demux audio: to worry and dangerous, even more tools will be needed
2) processing with directshowsource and feed varius encoder with this audio
if you are able to use besweet with avs (without using fake avi), tell me
BHH
delacroixp
17th March 2007, 15:01
@delacroixp
maybe my english isn't enough, with besweet is impossible to catch audio from files avi/ogm/mkv/mp4
the two only way to grab audio from those file are
1) demux audio: to worry and dangerous, even more tools will be needed
2) processing with directshowsource and feed varius encoder with this audio
if you are able to use besweet with avs (without using fake avi), tell me
Maybe your English isn't so gr8... but I'm seriously clueless about scripts, ogm, etc and while I know demuxing avi is off-the-cards... probably 90% of the people out there are encoding movies from VOB's which have notoriously poor volume and could benefit from something like BeSweet's audio boost.
Dr DivX 2 OSS uses a system of sampling to gauge the necessary audio boost and then implement the change... also good but not quite perfect.
:) :D :eek:
Pascal
buzzqw
17th March 2007, 15:10
@delacroixp
feel free to use whatever program you want :rolleyes:
@vgiozo
got the strange case... aacgain.exe is fuctional with quality encoding (-q ) but isn't fuctional with -CBR...
strange...
i will search for a solution!
EDIT better answer: is unable to normalize HE_AAC/SBR files
BHH
vgiozo
17th March 2007, 15:45
Ok, Thanks for the info...
So if I encode the movie and use quality mode in audio processing, the volume will be normal?
I'll try and report back...
I had encoded another movie which had ac3 6ch audio with 0.78a and the same thing had happened, but did not notice low volume with movies that had ac3 2ch...that's why I thought of sth going "wrong" with the downmixing procedure, but I cannot support this guess...
I 'll reencode and report back...thanks for the great support...
weaver4
17th March 2007, 18:01
The problems that I was having with being unable to encode audio and the looping problem seem to be related to an old version of avisynth on my computer. I updated it and it started working. Apperantly 0.76 would work with the version avisynth I had and 0.78 wouldn't.
Sorry....my bad.
Konstantin_by
17th March 2007, 18:06
Hello
I tryed to encode with Automkv 0.78c: profile x264 HQ-slowest, mp4, couding tech acc 64 kbits, 704 width resolution. ON version 0.72 all works great. But on 0.78c video doesn't want to encode.
Maybe all that happen becouse use of AviSynth 2.5?
Sorry for my English.
RipcordAFF
17th March 2007, 18:22
Hey the program has been runnning fantastic and I loved it under XP but now I am running vista and I have problems. It does the Indexing fine I think, but any step where it opens the cmd window (testing interlace pattern, lets encode etc) It just flashes the cmd, closes it immediatly and moves to the next step. So it never does any actual encoding... any ideas? Thanks!
BTW Ive also tried running it under compatibility mode, still does same thing
delacroixp
17th March 2007, 18:40
@delacroixp
feel free to use whatever program you want :rolleyes:
Ta and :thanks: for all the fish.
What kind of audio boost does AutoMKV use ?
I'm not averse to a little hands-on and H264 is the forefront of modern movie encoding... so I'm sure you know what's best for the community at large, given the limitations of software.
:) :D :eek:
Pascal
buzzqw
17th March 2007, 19:03
@weaver4
i no more use bepipe but soundout (link in AutoMKV changelog!)
i will update the dependices to AviSynth 2.57!
Thanks!
@Konstantin_by
maybe... try upgrading avisynth build (link on first post)
@RipcordAFF
Bautodeint.exe NEED a yv12 decoder installed
Install the Koepi XviD Build (link on first post)
@delacroixp
http://en.wikipedia.org/wiki/Replay_Gain
is a very good Normalizer
@ALL
In next update (full package) i will include ffmpeg.exe for invoking SoundOut fuction. From my test seems more stable and faster then xvid/x264 when calling SoundOut.
I tested even VirtualDub , that's proven even more stable, but is a little slower.
Also using ffmpeg i can force the encoding directly with ffmpeg (in mp3) when both nicaudio / directshowsource / SoundOut fail
BHH
schizosmurf
17th March 2007, 19:35
[QUOTE=buzzqw;971677
automkv on start don't load any dll... (and i haven't installed vista)... trying to upgrade ffdshow ?? or running automkv in winxp compatibility mode ?
BHH[/QUOTE]
yea, that dll was bein loaded when vista tries to render the video for creating thumbnails in explorer. had nothing to do with the workings of AMKV. i tried reencoding the file with vitrual dub to a smaller size xvid .avi and there was a warnign when i loaded the source file
AVI: Opening file "C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi"
[!] AVI: Stream 0 (video) has a non-zero start position of 3 samples (+125
ms). VirtualDub does not currently support a non-zero start time and the
stream will be interpreted as starting from zero.
so maybe the non-zero starting point is the problem and explains why the AMKV error log showed
10:19:20 Number of Frames:
10:19:20 Framerate:
10:19:20 Movie lenght in Seconds: 0
10:19:20 Movie Width:
10:19:20 Movie Height:
10:19:20 !!! BREAK - FILE NOT SUPPORTED !!!
0 frames 0 framerate movie length of 0 width/height of zero, obviously these are all incorrect stats for the source file...
also is ffdshow even needed?
buzzqw
17th March 2007, 20:21
AVI: Stream 0 (video) has a non-zero start position of 3 samples (+125 ms). VirtualDub does not currently support a non-zero start time and the stream will be interpreted as starting from zero.
if virtualdub open this file then something good could be done!
after opening (in virtualdub) in "video" select direct stream copy and the same for audio, then go to file and save it with a new name
your problem should be fixed
BHH
schizosmurf
17th March 2007, 20:39
if virtualdub open this file then something good could be done!
after opening (in virtualdub) in "video" select direct stream copy and the same for audio, then go to file and save it with a new name
your problem should be fixed
BHH
just tried that and same result, seems vdub copied the "non-zero starting point" into the new file. i even tried cutting out the first ~1s hoping it would then create a new starting point in teh new file, but it stills keeps the "non-zero starting point"
nx6
17th March 2007, 21:58
I encoded audio with Nero AAC at a constant bitrate of 160kbps
Which setting is that? I still haven't deciphered the steps on the 0-1 quality scale that's used in the settings.
Sounds awesome... does the entire encode need to be in grayscale to truly benefit ?
I'm keen to encode 'The World at War' and 'The Cold War' series both of which are over 20 hrs long and 'mostly' in B&W... but not completely.
Since you were interested, I'm trying the full colorspace vs. greyscale colorspace encode comparison right now. I have the "full color" one done, but the grayscale one is not encoding. I'll have to do it again and pay more attention, post logs, etc before I see if this is going to work.
@ALL
Does anyone know of a video player for WindowsXP that is more efficient at playing X264 video than VLC media player.
I was having an issue with video freezing up for several seconds at a time or occasionally having high action portions of the screen scrambled, but audio plays normally through during this brief interruption. After looking at my system monitor during these times, I have come to the horrible realization my CPU is not powerful enough to play back some parts of the files I am creating! But another computer in the house (not mine) is able to play them back.
Would my graphics card have any effect on playback performance? I have a very low end graphics card and would be willing to replace it if it would fix this issue.
buzzqw
17th March 2007, 22:24
@schizosmurf
try this
create an avs script with directshowsource("c:\my_broken_avi.avi") #where the file name is the name of broken one's
feed automkv with this file (both for audio and video)
try encoding
@nx6
on advanced audio setting is possible to select the -CBR or -BR setting for Nero
Does anyone know of a video player for WindowsXP that is more efficient at playing X264 video than VLC media player.
1) mediaplayer classic + latest ffdshow + haali media splitter
2) mediaplayer classic +coreavc + haali media splitter
3) mplayer
Would my graphics card have any effect on playback performance?
newer ATI and Nvidea graphics card have integrated h264 decoders (iirc)
BHH
schizosmurf
17th March 2007, 22:30
@schizosmurf
try this
create an avs script with directshowsource("c:\my_broken_avi.avi") #where the file name is the name of broken one's
feed automkv with this file (both for audio and video)
try encoding
BHH
i've never used avs script before (manually created my own that is). is it just a txt file with .avs extention. and what do i need to put in it? just
directshowsource("c:\my_broken_avi.avi")
with filename changed ofcourse
delacroixp
17th March 2007, 22:31
@ALL
Does anyone know of a video player for WindowsXP that is more efficient at playing X264 video than VLC media player.
I was having an issue with video freezing up for several seconds at a time or occasionally having high action portions of the screen scrambled, but audio plays normally through during this brief interruption. After looking at my system monitor during these times, I have come to the horrible realization my CPU is not powerful enough to play back some parts of the files I am creating! But another computer in the house (not mine) is able to play them back.
Would my graphics card have any effect on playback performance? I have a very low end graphics card and would be willing to replace it if it would fix this issue.
http://www.inmatrix.com/
I've had gr8 satisfaction with the Inmatrix Zoom Player (see above link)... it has a very nifty download feature which updates all the latest codecs necessary for H264 playback (and other formats)... the downloads are customizable... so choose only the stuff that you want...
You can also purchase the Pro Edition if you so choose.
:) :D :eek:
Pascal
nx6
17th March 2007, 23:02
1) mediaplayer classic + latest ffdshow + haali media splitter
Haha! I already have this installed. [slapping head] :rolleyes:
newer ATI and Nvidea graphics card have integrated h264 decoders
I wonder how new it would have to be. I'd rather have something that is passively cooled, and I'm not really a "gamer".
buzzqw
18th March 2007, 10:08
@schizosmurf
i've never used avs script before (manually created my own that is). is it just a txt file with .avs extention. and what do i need to put in it? just
directshowsource("c:\my_broken_avi.avi")
with filename changed ofcourse
yes, exactly. Create a txt file with notepad, write directshowsource("c:\my_broken_avi.avi") , save it and rename to test.avs , open the script with virtualdub for more security. If virtualdub don't complain , use this file as input for automkv
@nx6
iirc the Ati X1 series (like X1300, X1600 ...)
i am not a gamer too... i have an old ATI AIW 9700PRO
BHH
weaver4
18th March 2007, 13:04
Haha! I already have this installed. [slapping head] :rolleyes:
I wonder how new it would have to be. I'd rather have something that is passively cooled, and I'm not really a "gamer".
I have a ati 9550 passive cooled, no problems with it, rock solid.
weaver4
18th March 2007, 16:05
Boy am I am having problems with audio. I tired to do aac audio last night and it just looped and kept tying to do it all night.
Today I tried a mp3 encode and the whole process stopped to ask me if it was OK to clip the audio [y/n].
buzzqw
18th March 2007, 16:20
@weaver4
looping and clipping ARE fixed
BUT if you want to try first download http://tirnanog.fate.jp/mirror/ffmpeg/ffmpeg.rev8047.7z and put ffmpeg.exe into \exe\besweet folder
then update with this "special build" http://www.64k.it/andres/data/a/AutoMKV078c-DLFlannery-2.exe
and please report back!
BHH
EDIT: you need even http://www.64k.it/andres/data/a/pthreadGC2.dll in \exe\besweet folder
weaver4
18th March 2007, 17:06
@weaver4
looping and clipping ARE fixed
BUT if you want to try first download http://tirnanog.fate.jp/mirror/ffmpeg/ffmpeg.rev8047.7z and put ffmpeg.exe into \exe\besweet folder
then update with this "special build" http://www.64k.it/andres/data/a/AutoMKV078c-DLFlannery-2.exe
and please report back!
BHH
EDIT: you need even http://www.64k.it/andres/data/a/pthreadGC2.dll in \exe\besweet folder
When ffmpeg.exe tries to run it says "This application has failed to start because pthreadGC2.dll was not found." I found this file at http://ffdshow.faireal.net/mirror/ I put it in the besweet folder and I will try it again.
delacroixp
18th March 2007, 18:39
The AI (artificial intelligence) of AutoMKV is just way out of control... I feel like I'm reliving 2001: A Space Odyssey... I had to re-encode ½ my initial encodes of BoB because AutoMKV insisted on resizing downto 700x400 instead of 720x400... and 1 of the re-encodes was also faulty.
This occurs during batch aswell as individually. Anyway I finished the series... all muxed, burnt and ready to go at Q24.
Since then I've tried full resolution (1024x576)... but AutoMKV insists on 720x576... this happens whether I choose Original, Auto-crop Only or set the resolution Manually.
17:08:52 0.78c - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
17:08:52 Selected Input file: H:\Movies\To Be Encoded\Band of Brothers\BoB 02\BoB 02.VOB
17:08:52 Selected Output dir: H:\Movies\To Be Encoded\Band of Brothers\BoB 02\temp\
17:08:52 Selected Final Name: BoB 02
17:08:52 Selected Container type: MKV
17:08:52 Selected Encoder: X264
17:08:52 Selected Size: Don't care about size
17:08:52 Selected Slice: 1
17:08:52 Selected Profile: ConstantQuality-CRF.xml
17:08:52 Selected Width: Original
17:08:52 Selected Resizer: NONE
17:08:52 Selected Filters: RemoveGrain(mode=2)
17:08:52 Selected Deinterlacer: AUTO
17:08:52 Selected Field Order: AUTO
17:08:52 Enabled CRF/CQ AutoRes at 18 value
17:08:52 Track Language 1: NONE
17:08:52 Audio Codec 1: Nero AAC
17:08:52 Audio Quality 1: 0.25
17:08:52 Audio Channel 1: Stereo
17:08:52 Advanced Audio Settings DUMP Track 1
17:08:52 Nero Option Profiles: AUTO --- Encoding Mode: Quality
17:08:52 CCT Option Profiles: AUTO --- Channel Options: AUTO
17:08:52 Lame Settings: ABR
17:08:52 Audio Normalization: 1
17:08:52 Frequency: AUTO --- Tempo : NONE
17:08:52 Pitch: NONE --- Other Add :
17:08:52 Advanced Audio Settings DUMP Track 2
17:08:52 Nero Option Profiles: AUTO --- Encoding Mode: Quality
17:08:52 CCT Option Profiles: AUTO --- Channel Options: AUTO
17:08:52 Lame Settings: ABR
17:08:52 Audio Normalization: 1
17:08:52 Frequency: AUTO --- Tempo : NONE
17:08:52 Pitch: NONE --- Other Add :
17:08:52
17:08:52 Dgindex CMD: F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\dgindex\dgindex.exe -FO=0 -OM=0 -YR=2 -If=[H:\Movies\To Be Encoded\Band of Brothers\BoB 02\BoB 02.VOB] -OF=[H:\Movies\To Be Encoded\Band of Brothers\BoB 02\temp\movie] -exit -minimize
17:11:40 Starting fixing audio delay on track number 0
17:11:40 Finished fixing audio delay
17:11:44 Number of Frames: 74981
17:11:44 Framerate: 25.000000
17:11:44 Movie lenght in Seconds: 3000
17:11:44 Movie Width: 720
17:11:44 Movie Height: 576
17:12:31 Processing completed. Type is determined to be progressive.
17:12:31 Order: unk
17:12:31 Starting X264
17:12:31 CRF encoding X264: F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\encoder\x264.exe --pass 1 --crf 24 --stats "H:\Movies\To Be Encoded\Band of Brothers\BoB 02\temp\.stats" --progress --keyint 250 --bframes 3 --qpmin 10 --qpmax 51 --no-psnr --mixed-refs --trellis 1 --ref 3 --filter -2,-1 --direct auto --vbv-maxrate 25000 --me umh --no-ssim --weightb --b-pyramid --b-rdo --bime --analyse p8x8,b8x8,i4x4,i8x8,p4x4 --8x8dct --threads 3 --output "H:\Movies\To Be Encoded\Band of Brothers\BoB 02\temp\movie.mp4" "H:\Movies\To Be Encoded\Band of Brothers\BoB 02\temp\movie.avs"
17:18:39 Accepted values are between 31876710400 and 33889976320 bytes (movie+audio)
17:18:39 Got a file of size: 20957151 bytes + audio size -2 bytes (20957148)
17:18:39 "F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\matroska\mkvmerge.exe" -o "H:\Movies\To Be Encoded\Band of Brothers\BoB 02\temp\BoB 02.mkv" --track-name -1:"BoB 02" --aspect-ratio 1:1.802817 "H:\Movies\To Be Encoded\Band of Brothers\BoB 02\temp\movie.mp4" --title "Done with AutoMKV 0.78c http://forum.doom9.org/showthread.php?p=854221 "
17:18:39 Final Muxed size: -1 bytes
17:18:39 Encoding finished: 00:09:47 elapsed time
17:18:39 -----------------------------------------------------------------------
17:18:39 Script AutoCrop.log
17:18:39
17:18:39 Crop(0,4,720,568)
17:18:39 -----------------------------------------------------------------------
17:18:39 Script Resmovie.avs
17:18:39 -----------------------------------------------------------------------
17:18:39 Script movie.avs
17:18:39
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\autocrop.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\BicublinResize.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\blockbuster.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\cnr2.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\ColorMatrix.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\Convolution3D.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\corrector.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\DctFilter.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\Decomb.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\Deen.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\degrainmedian.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\DGDecode.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\EEDI2.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\fft3dfilter.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\FluxSmooth.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\frfun7.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\hqdn3d.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\LeakKernelDeint.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\MaskTools.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\medianblur.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\MipSmooth.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\mt_masktools.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\mvtools.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\NicAudio.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\RemoveGrain.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\Repair.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\SangNom.dll")
17:18:39 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\SimpleResize.dll")
17:18:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\SoundOut.dll")
17:18:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\TBilateral.dll")
17:18:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\TDeint.dll")
17:18:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\TIVTC.dll")
17:18:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\TomsMoComp.dll")
17:18:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\TTempSmooth.dll")
17:18:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\UnDot.dll")
17:18:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\UnFilter.dll")
17:18:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\VSFilter.dll")
17:18:40 #loadpluginstart
17:18:40
17:18:40 #test1
17:18:40
17:18:40 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\MCBob_v03c.avsi")
17:18:40 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\mvbob.avsi")
17:18:40 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\seesaw.avsi")
17:18:40 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\exe\filter\spresso.avsi")
17:18:40 #importstart
17:18:40
17:18:40 #test2
17:18:40
17:18:40 movie = mpeg2source("H:\Movies\To Be Encoded\Band of Brothers\BoB 02\temp\movie.d2v")
17:18:40 function getOrder(clip c) {
17:18:40 order = GetParity(c) ? 1 : 0
17:18:40 Return order }
17:18:40 #filter1start
17:18:40
17:18:40 #test3
17:18:40
17:18:40 #cropstart
17:18:40
17:18:40 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
17:18:40 fixed_aspect = 1.422222
17:18:40 c_width = width(cropclip)
17:18:40 c_height = Round(height(cropclip) / fixed_aspect)
17:18:40 input_par = float(float(c_width)/float(c_height))
17:18:40 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
17:18:40 out_width = 720
17:18:40 out_height = Round(float(out_width) / input_par)
17:18:40 hmod = out_height - (floor(out_height / 16 ) * 16)
17:18:40 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
17:18:40 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
17:18:40 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
17:18:40
17:18:40 last = movie
17:18:40 #resizestart
17:18:40
17:18:40 #test4
17:18:40
17:18:40 #filter2start
17:18:40
17:18:40 #test5
17:18:40
17:18:40 RemoveGrain(mode=2)
17:18:40 ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
17:18:40 -----------------------------------------------------------------------
17:18:40 Script mkvmaudio.avs
17:18:40 -----------------------------------------------------------------------
17:18:40 Script mkvmaudio.bat
17:18:40 -----------------------------------------------------------------------
17:18:40 Script mkvmaudio2.avs
17:18:40 -----------------------------------------------------------------------
17:18:40 Script mkvmaudio2.bat
17:18:40
17:18:40 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
I should add that it's happened with 0.78 & 0.78c.
Sorry to trouble you on a Sunday.
:) :D :eek:
Pascal
weaver4
18th March 2007, 18:41
Well it looks like it got past the audio coding part (finally). I thought you would want to see the log file for the audio part since it looks like it had lots of problems.
I really do not remember these problems in 0.76, or was I just lucky?
========================
12:14:37 Finished indexing
12:14:37 Starting fixing audio delay on track number 1
12:14:37 DelayCut CMD: D:\Downloads\AutoMKV\AutoMKV078_NORIP\exe\dgindex\Delaycut.exe -auto -out "D:\Movies-H264\temp\fixed1.ac3" "D:\Movies-H264\temp\movie T01 3_2ch 448Kbps DELAY 0ms.ac3"
12:15:02 Original 1' Audio Size: 506270464 bytes
12:15:02 Finished fixing audio delay
12:15:02 Encoding D:\Movies-H264\temp\fixed1.ac3 to NeroAAC with 0.35 quality
12:15:13 Unable to encode Audio, trying with DirectShowSource!
12:15:13 Encoding D:\Movies-H264\temp\fixed1.ac3 to NeroAAC with 0.35 quality
12:36:22 Applying ReplayGain
12:39:22 Encoded 1' Audio Track: 0 bytes
12:39:22 Unable to encode Audio, even with DirectShowSource!, trying with FFmpeg!
12:55:32 Applying ReplayGain
13:05:04 Encoded 1' Audio Track: 144649166 bytes
delacroixp
18th March 2007, 18:46
Boy am I am having problems with audio. I tired to do aac audio last night and it just looped and kept tying to do it all night.
Today I tried a mp3 encode and the whole process stopped to ask me if it was OK to clip the audio [y/n].
weaver4... trust me... you're the only one who's doing the really interesting stuff around here.
:) :D :eek:
Pascal
buzzqw
18th March 2007, 18:49
Since then I've tried full resolution (1024x576)... but AutoMKV insists on 720x576... this happens whether I choose Original, Auto-crop Only or set the resolution Manually.
i will check (even i don't know what...)... but remember :logfile:
BHH
delacroixp
18th March 2007, 19:10
@buzzqw
It looks like there may be room for an improved Batch Interface... I've included an image (from Dr DivX OSS) which would move the 'start encoding button' to the Batch page... allow you to move your encodes up/down the queue... add plugins.... and portray a graphic display of the progress of your encode (See pic... pending approval).
:) :D :eek:
Pascal
The Image is up (see original post)... a new batch layout would go a long way towards mass-production.
weaver4
18th March 2007, 19:18
I agree with delacroixp. The interface for Dr.Divx is absolutely great. Too bad the Doctor is:
> Crash Prone
> Only does DivX
dlflannery
18th March 2007, 19:23
I tested MKV/X264 and MP4/X264 encodings. BTW I used ffmpeg build 8047 (and the .dll it needs).
Two kinds of (spliced clip) AVS input files:
1. Separate audio-only and video-only files.
2. One video+audio file loaded for both video source and audio track one source.
For the MKV container I had to force 4:3 aspect ratio (but this is not a problem -- rather a feature!)
I tried one with Delay Cut. I suspect that doesn't make any difference for AVS inputs, correct ?
All cases went smoothly with good results.
One feature request: Please add ".avs" to the list of file types in the audio track file browsers.
This looks good! :thanks:
buzzqw
18th March 2007, 20:06
@delacroixp
i am very happy. :rolleyes:
17:11:44 Movie Width: 720
17:11:44 Movie Height: 576
could you guess this value from what is taken ?
DGINDEX! this value are the true value inside the mpeg file!
if your player took the dar and display 1080i or whatever blame your player! :mad:
or, if you are absolutly sure about width/height post a bug on DgIndex/dvd2avi forum
@dlflannery
first of all :thanks: !
I tried one with Delay Cut. I suspect that doesn't make any difference for AVS inputs, correct ?
absolutly right, delaycut cannot "fix" an AVS... :)
about request: DONE!
BHH
nx6
18th March 2007, 20:55
iirc the Ati X1 series (like X1300, X1600 ...)
i am not a gamer too... i have an old ATI AIW 9700PRO
I have a ati 9550 passive cooled, no problems with it, rock solid.
Thanks, both of you.
I've done some checking around and have found the lists of cards that support accelerated video decoding for ATI and NVidia. I'll post them here since someone else might find them worthwhile here.
Cards supporting ATI Avivo. (http://ati.amd.com/technology/avivo/products.html)
Cards supporting NVidia Pure Video. (http://www.nvidia.com/page/purevideo_support.html)
I'm going to grab a GeForce 6600GT off eBay here in the next week. I don't want too spend much on this machine as I'd sorta like to replace it in the future and I don't have a PCI Express motherboard. I hope the fan's not too loud.
mediaplayer classic+ffdshow+haali media splitter worked a little better. CPU usage appeared to be about the same but mediaplayer coped by dropping individual frames in the high action areas instead of freezing up completely until the scene passed like VLC. I haven't had a chance to install Zoom Player.
salman1
18th March 2007, 22:52
how to see the output video if i need to crop or not?
THX A LOT
schizosmurf
19th March 2007, 00:06
@schizosmurf
If virtualdub don't complain , use this file as input for automkv
same results. it seems whatever is opening the cmd window immediatly after clicking start encoding is not providing the correct info for the file since the log shows
18:03:22 Number of Frames:
18:03:22 Framerate:
18:03:22 Movie lenght in Seconds: 0
18:03:22 Movie Width:
18:03:22 Movie Height:
18:03:22 !!! BREAK - FILE NOT SUPPORTED !!!
i noticed its using my 64bit version of the cmd.exe instead of the 32bit version, perhpas thats why it doesnt process whatever commands properly?
instead of runnin thru C:\Windows\System32\cmd.exe
it goes thru C:\Windows\SysWOW64\cmd.exe
salman1
19th March 2007, 00:32
what is this errror?
http://maxupload.com/img/F1AEE0F5.jpg
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.