View Full Version : AutoMKV 0.93a - (DVD/TS/AVI/AVS to X264/XviD/WVC1 into MKV/MP4/WMV) update 30/12/2007
delacroixp
13th April 2007, 19:01
I did an anamorphic encode of The Deer Hunter 720x576 PAL/16:9... setting AutoMKV to 'automatic' DAR (mkv container).
Normally the width would morph into 1024 pixels... but because of a column crop of 16 (L&R 8)... AutoMKV signalled a 1015 width...
It didn't seem right to me since (704/720)1024 = 1003.52... so I set MkvMerge at 1004x432... but I'm not sure if black-space morphs in the same way as the actual movie.
Would 16 columns of black space in the VOB remain 16 columns on playback ?
:):D:eek:
Pascal
delacroixp
13th April 2007, 19:07
delacroixp: You are correct. I misread the first email and thought you were talking about CRF encode. A CRF encode would be "tiny". My-Bad.
Well... you might love brick walls... especially if it has a mosaic kind of pattern... so CQ-QP gives you the power to insist...
:):D:eek:
Pascal
SeeMoreDigital
13th April 2007, 19:36
Try using this little tool: -
http://www.ziova.com/forum/index.php?showtopic=873
Buzz.... While we are on this subject. Is there any chance a "User Value" or "User Ratio" option can be included for both Xvid and x264. Something like this: -
http://img238.imageshack.us/img238/3151/proposalkm4.png
Cheers all
buzzqw
13th April 2007, 19:52
@SMD
i will look at this... iirc for x264 is the --sar option ?
BHH
buzzqw
13th April 2007, 22:29
@SMD
ok, i used preset value for xvid (if so selected) or custom inserted values
for x264 i have used this table
Required Custom Player Info
PAR Setting PAR Setting Video Size
4:3 PAL 64:60 (or 16:15) 4:3 or 768x576
4:3 NTSC 64:72 (or 16:18) 4:3 or 640x480
16:9 PAL 64:45 16:9 or 1024x576
16:9 NTSC 64:54 16:9 or 853x480
courtesy from SeeMoreDigital Site http://seemoredigital.net/03_Video_Only_Info/What_is_an_anamorphic_encode.html
BHH
TheRyuu
14th April 2007, 03:03
Suggestion, would it be possible to like have a box for the custom avisynth script instead of one line?
Were each line was a new line in the avs script.
Then I could run something like this:
SetMTMode(2, 0)
FluxSmoothT(8)
dull = ColorMatrix(Mode="Rec.601->Rec.709",scaling=2,threads=2)
sharp = dull.SeeSaw(NRlimit=0, NRlimit2=5, Sstr=1.70, Szp=1, Slimit=50, Sdamplo=29, Spower=1, sootheT=0, SdampHi=35)",3)
Soothe(sharp, dull, 5)
or
SetMTMode(2, 0)
ColorMatrix(Mode="Rec.601->Rec.709",scaling=2,threads=2)
a=last
b=FluxSmoothT(8)
SeeSaw(a,b, NRlimit=0, NRlimit2=5, Sstr=1.70, Szp=1, Slimit=50, Sdamplo=29, Spower=1, sootheT=0, SdampHi=35)
I was just thinking about it because I could use a different (and better) script using Soothe, SetMTMode, etc... like that.
Ya know? Just some thinking as I was encoding a few things.
Also, I just realized that that Tobytl problem occurred on mine as well. .81 (or .80d as the title of the program says) fixes it for me :)
Loving the nocolormatrix option.
And what exactly is the "cartoon mode used for"??
Like for encoding cartoons/anime and whatnot?
Keep up the work man, best encoder I ever used.
buzzqw
14th April 2007, 08:31
@wizboy11
so you are brave enough ? :)
let's try prove it...
first of all open a movie.avs and take a close look to it, you will note something like
#test1
#test2
#test3
#test4
#test5
go in \exe\filter folder make a copy of base.avs (call it base_std.avs)
open the base.avs in text editor
you will see again these #testX, use this as reference point for your script
so in your base.avs could look like
#loadpluginstart
#test1
#loadpluginend
#importstart
#test2
#importend
#herethesource
#filter1start
#test3
#filter1end
#cropstart
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
fixed_aspect = aspectratio
c_width = width(cropclip)
c_height = Round(height(cropclip) / fixed_aspect)
input_par = float(float(c_width)/float(c_height))
input_par = input_par > 1.4 ? input_par : (4.0/3.0)
out_width = outwidth
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
autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
#cropend
#resizestart
#test4
#resizeend
#filter2start
#test5
SetMTMode(2, 0)
FluxSmoothT(8)
dull = ColorMatrix(Mode="Rec.601->Rec.709",scaling=2,threads=2)
sharp = dull.SeeSaw(NRlimit=0, NRlimit2=5, Sstr=1.70, Szp=1, Slimit=50, Sdamplo=29, Spower=1, sootheT=0, SdampHi=35)",3)
Soothe(sharp, dull, 5)
#filter2end
do now a new encoding...
this is a one way to proceed, adding a box for editing avs is better... i now... but i won't to take automkv as easy as possible..., so it is better to tweak the base.avs
And what exactly is the "cartoon mode used for"??
xvid as special way of dealing with cartoon/anime source file, this check will enable this options in xvid
BHH
delacroixp
14th April 2007, 09:37
delacroixp, isn't simple to accomodate all needs and like
sometimes i wish you take mkvmagic source and do the all the fabulous works is needed.
This is a free time, free willed, free money project... and your sarcasm isn't well accepted.
best regards
Andres
EDIT: latest dvdfabdecrypter isn't accepting command line (as already posted)
Some people have very crazy ideas and only you will know what's best... and what's possible...
This is a true OSS project... it's just a shame that you have to shoulder all the actual work...
It's all good
:):D:eek:
Pascal
delacroixp
14th April 2007, 09:57
I did an anamorphic encode of The Deer Hunter 720x576 PAL/16:9... setting AutoMKV to 'automatic' DAR (mkv container).
Normally the width would morph into 1024 pixels... but because of a column crop of 16 (L&R 8)... AutoMKV signalled a 1015 width...
It didn't seem right to me since (704/720)1024 = 1003.52... so I set MkvMerge at 1004x432... but I'm not sure if black-space morphs in the same way as the actual movie.
Would 16 columns of black space in the VOB remain 16 columns on playback ?
Try using this little tool: -
http://www.ziova.com/forum/index.php?showtopic=873
Awesome post (http://forum.doom9.org/showthread.php?t=107039)... beautifully explained... and tx to you and Moitah for bringing a plan together and making it happen... gr8 team work...
All good
:):D:eek:
Pascal
BTW
I recently discovered a goldmine educational resource in lynda.com (http://lynda.com/)... I went through one of their tutorials on 'Digital Video Principles' which really explains all the fundamentals of PAL, NTSC... 24, 25, 30 fps film/video... chroma subsampling and much more... in a 3hr flash presentation... well worth the investment.
buzzqw
14th April 2007, 11:12
i have added some check for insert avs fuction (as last line)
No Colormatrix (no more need for nocolormatrix file)
Greyscale
MVDenoise
MVDegrain2
any other quick filter to insert ? (better if filter without parameters , so tweak(sat=xxx, hue=yyy...) isn't a good filter... only if i used with fixed parameter)
also added LimitedSharpenFaster as resize with a line like
Limitedsharpenfaster(smode=4,ss_x=1.25, ss_y=1.25, strength=150, overshoot=1,dest_x=out_width,dest_y=out_height)
it's good ?
BHH
buzzqw
14th April 2007, 13:48
ok added, simple box like this
http://img242.imageshack.us/img242/874/automkvadvsetzt4.png (http://imageshack.us)
there are space for more.. suggestions ?
EDIT: added Limiter()
BHH
TheRyuu
14th April 2007, 17:05
Thanks :p
That way should work well since I basically use the same script for everything. If you ever do add the box in AutoMKV maybe you can put it in advanced options and have some option called "advanced avisynth script" and old if that box is checked, would the avisynth box come up.
Only an idea but editing the base.avs file will work just fine for me. So if I do edit the base avs file, I would just leave the avisynth filter things in AutoMKV set to "None"?
Also, I was checking out the "Auto" feature in the Custom Matrix thing. For a 2,800kb/s moive, it was using Sharktooth's EQM v3LR.cqm. I thought that LR was for things under 1600kb/s and that v3HR would be better in this situation.
buzzqw
14th April 2007, 18:03
So if I do edit the base avs file, I would just leave the avisynth filter things in AutoMKV set to "None"?
:goodpost: that's right. in that way, modifing the base.avs, the same "modify" is applyend to all encoding
Also, I was checking out the "Auto" feature in the Custom Matrix thing. For a 2,800kb/s moive, it was using Sharktooth's EQM v3LR.cqm. I thought that LR was for things under 1600kb/s and that v3HR would be better in this situation.
isn't a bitrate issue but quantitizer ratio.
Open the log file and look at compression test: how % is ?
it is over 180% ?
here is the lookup table
Test % -> Matrix
50 "Sharktooth's EQM v3ULR.cqm"
85 "Jawor's 1CD Quantization Matrix.cqm"
95 "Sharktooth's EQM v3LR.cqm"
180 "Sharktooth's EQM v3HR.cqm"
250 "Didees SixOfNine-HVS.cqm"
350 "Fox Home Entertainment.cqm"
450 "Sharktooth's EQM v3EHR.cqm"
over "Sharktooth's EQM v3UHR.cqm"
BHH
TheRyuu
14th April 2007, 18:58
:goodpost: that's right. in that way, modifing the base.avs, the same "modify" is applyend to all encoding
isn't a bitrate issue but quantitizer ratio.
Open the log file and look at compression test: how % is ?
it is over 180% ?
here is the lookup table
Test % -> Matrix
50 "Sharktooth's EQM v3ULR.cqm"
85 "Jawor's 1CD Quantization Matrix.cqm"
95 "Sharktooth's EQM v3LR.cqm"
180 "Sharktooth's EQM v3HR.cqm"
250 "Didees SixOfNine-HVS.cqm"
350 "Fox Home Entertainment.cqm"
450 "Sharktooth's EQM v3EHR.cqm"
over "Sharktooth's EQM v3UHR.cqm"
BHH
I couldn't find it but I'll take your word for it :p
I'll leave it set to "Auto" :)
:thanks:
SeeMoreDigital
14th April 2007, 20:24
@SMD
i will look at this... iirc for x264 is the --sar option ?
BHHYes.... It provides the same thing :)
weaver4
14th April 2007, 22:26
I did a few movies using x264 - constant quality CRF. Much to my surprise these movies would not play on Quicktime on my Mac Mini. Played fine with VCL.
This brings up a bigger point. X264 is really broken. You have special encode parameters depending on what you are playing it on. Ipod, Apple TV, quicktime, PS2, PS3, xbox .... At least if you turned off qpel and gmc on XviD it would play on most anything. It appears that Nero has some momentum in that several SAPs are coming out that will play Nero AVC, Nero AVC will play on quick time. So I was wondering if we could have a profile for AutoMKV that is Nero AVC compatible?
buzzqw
15th April 2007, 07:35
Ipod, Apple TV, quicktime
Apple.
Apple product are very picky for muxer. If not muxed with compatible software it will throw errors.
it isn't a profile issue.
(let me investigate)
BHH
TheRyuu
15th April 2007, 18:06
Would there be a way to implement The aoTuV Ogg Vorbis audio encoder? (if it isn't used already for ogg encoding??)
I've read that the aoTuV version has better quality at almost all the bitrate levels compared to regular OggVorbis, mp3, and everything else.
Thanks.
Also, I found out something interesting. This is for dual core machines which gives a pretty nice speed boost. Only tested it in xvid so far.
I got one HUGE speed boost (especially on the first pass with xvid) if I added "SetMTMode(2, 0)" (w/o quotes) to the base.avs to make it look like this:
#loadpluginstart
#test1
#loadpluginend
#importstart
#test2
SetMTMode(2, 0)
#importend
SetMTMode(2, 0)
#herethesource
#filter1start
#test3
SetMTMode(2, 0)
#filter1end
#cropstart
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
fixed_aspect = aspectratio
c_width = width(cropclip)
c_height = Round(height(cropclip) / fixed_aspect)
input_par = float(float(c_width)/float(c_height))
input_par = input_par > 1.4 ? input_par : (4.0/3.0)
out_width = outwidth
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
autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
#cropend
#resizestart
#test4
SetMTMode(2, 0)
#resizeend
#filter2start
#test5
SetMTMode(2, 0) <---REMOVE IF YOU NOT GONNA USE AN AVISYNTH FILTER (it will cause it to be a bad script and crash)
#filter2end
Doing that gave me one big speed boost on the first xvid pass and a little bit more on the second pass as well.
Might be a nice trick if you have a dual core machine and want a speed improvement.
I'm not sure, but you might only need the first SetMTMode since that might make it apply to the rest of the script.
That also made it better use both cores having nearly 100% use of both of them instead of ~50% use of both of them (or 100% of ONLY ONE core on a dual core machine)
buzzqw
15th April 2007, 18:55
it is already the aoTuV (2.83) with Blacksword speedup
on next full update i will update the build to latest one!
i will include only the SSE build, if someone has a more powerfull processor feel free to download the appropriate build here http://homepage3.nifty.com/blacksword/
About MT... i can include some options... :) nice hint!
BHH
TheRyuu
15th April 2007, 19:06
it is already the aoTuV (2.83) with Blacksword speedup
on next full update i will update the build to latest one!
i will include only the SSE build, if someone has a more powerfull processor feel free to download the appropriate build here http://homepage3.nifty.com/blacksword/
About MT... i can include some options... :) nice hint!
BHH
Alright thanks. I kinda thought it was the aoTuV one since it used the whole numbers and not the -q thing like the regular Vorbis encoder does.
I was pretty shocked at the amount of speed that I gained by doing that especially on the first pass.
Also, I wonder if it could be applied to some of the other avs scripts... :)
Edit:
The first time I tried the SetMTMode it was only on my SeeSaw script but then I got the idea to try it on the whole thing. And thats what did it. One time though xvid_encraw crashed only because I didn't choose a avisynth filter and under #test5, was only the "SetMTMode(2 ,0)" which I gather made it crash so watch out for that.
Edit2:
On the AoTuV site, I'm gonna want to download the Dynamic Library version right? (it has the oggenc2 exe in it??)
(in my case it would be the sse3MT)
buzzqw
15th April 2007, 19:21
i am reading the documentation of MT...
wouldn't so simply integrate... because not all filter works well.. the bottleneck part of script are the deinterlace and the resize, but mostly the deinterlace part (if needed)
some test must be done to verify if MTi("leakkerneldeint()") works and so the other deinterlacer...
moreover even the avisynth.dll must be substituted... :rolleyes: don't know if could be so easy implemented...
it is surely a very nice and useful trick (to put in wiki) but it surely needed users with some knowledge...
About OGGENC use this build http://homepage3.nifty.com/blacksword/oggenc283_sse3mt_lancer20061110.zip if you have SSE3MT: Multi-threading version of SSE3 for Athlon64X2, Pentium D, Core Duo(Dual), Core2 Duo(Conroe & Merom core)
BHH
TheRyuu
15th April 2007, 19:30
i am reading the documentation of MT...
wouldn't so simply integrate... because not all filter works well.. the bottleneck part of script are the deinterlace and the resize, but mostly the deinterlace part (if needed)
some test must be done to verify if MTi("leakkerneldeint()") works and so the other deinterlacer...
moreover even the avisynth.dll must be substituted... :rolleyes: don't know if could be so easy implemented...
it is surely a very nice and useful trick (to put in wiki) but it surely needed users with some knowledge...
About OGGENC use this build http://homepage3.nifty.com/blacksword/oggenc283_sse3mt_lancer20061110.zip if you have SSE3MT: Multi-threading version of SSE3 for Athlon64X2, Pentium D, Core Duo(Dual), Core2 Duo(Conroe & Merom core)
BHH
Thats what I was thinking as well. Like add it to the wiki as some advanced tweak.
I've read that using SetMTMode(2, 0) (or just the 2) is the most compatible.
Edit:
Got a quick question.
I noticed new HybridFuPP resize options. What are they and how do they compare to more conventional resizers like spline36?
Thanks :)
Edit2:
some test must be done to verify if MTi("leakkerneldeint()") works and so the other deinterlacer...
I thought that using something like this was more the standard:
SetMTMode(2, 0)
leakkernaldeint()
instead of what you were saying:
MTi("leakkerneldeint()")
But I really wouldn't know for sure. Thats just what I remember reading plus the SetMTmode would work for the whole script instead of having to surround everything with MT()
buzzqw
15th April 2007, 19:38
I've read that using SetMTMode(2, 0) (or just the 2) is the most compatible.
yes... i will do some test ...
if positive i could add a check for enable MT for deinterlacers (i think only for pure deinterlacer not for decimanting/ivtc/hybrid source...)... but users must first substitute the avisynth.dll and pray for no crash :D
EDIT: HybridFuPP is both a resizer and a filters. An ALL in One! Very good resizer (mostly similar to lanczos) and very well studied suite of denoiser. Basing of quality of source is possible to select the correct preset.
An HybridFuPP HybridQ is like a bilinear resize + some strong denoisers (so no need for any other denoiser)
A good approach is to use HQ presest and one light other denoiser (degrainmedian, removegrain..)
BHH
buzzqw
15th April 2007, 19:47
But I really wouldn't know for sure. Thats just what I remember reading plus the SetMTmode would work for the whole script instead of having to surround everything with MT()
i suppose that enclosing specific filter maybe more stable and secure...
i suppose, again, that some combination of filters doesn't fuction (like fft3dfilter)
BHH
TheRyuu
15th April 2007, 19:58
yes... i will do some test ...
if positive i could add a check for enable MT for deinterlacers (i think only for pure deinterlacer not for decimanting/ivtc/hybrid source...)... but users must first substitute the avisynth.dll and pray for no crash :D
BHH
I tried using the settings "interlaced" and "Hybrid" field order with HQ checked it it didn't seem to be using MT. But the script didn't crash either.
And I haven't test ANY of these in x264, only xvid so far.
So you're correct and I kinda figured that not all filters would work.
Thanks.
Edit:
HybridFuPP wasn't working and I think it's because you didn't add the HybridFuPP.avsi filter into the filter folder yet.
buzzqw
15th April 2007, 21:19
hybridfupp will be ok in next full update... i had already done the code change... but in package (0.80spc) i haven't included all filters/scripts needed
BHH
TheRyuu
15th April 2007, 21:47
SetMTMode keeps crashing xvid_encraw so I guess it wasn't as good as it all seemed :p
Even if I restrict SetMTMode to the resizer and avisynth filter, it'll still crash...
Oh well, I guess it might need some further investigating but it was nice while it lasted. :)
Edit:
I'm doing some testing which in the base.avs file I turned on and off SetMTMode around certain parts and I'll see if that works.
Edit2:
Well, after a little bit of testing (ok, 1 encode) I finally got a script that didn't crash. This is only with xvid. This is for dual core, quad core, or hypertheaded CPU's.
#loadpluginstart
#test1
#loadpluginend
#importstart
#test2
SetMTMode(2, 0)
#importend
#herethesource
#filter1start
SetMTMode(0)
#test3
SetMTMode(2, 0)
#filter1end
#cropstart
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
fixed_aspect = aspectratio
c_width = width(cropclip)
c_height = Round(height(cropclip) / fixed_aspect)
input_par = float(float(c_width)/float(c_height))
input_par = input_par > 1.4 ? input_par : (4.0/3.0)
out_width = outwidth
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
autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
#cropend
#resizestart
SetMTMode(0)
#test4
SetMTMode(2, 0)
#resizeend
#filter2start
SetMTMode(0)
#test5
MT("insert script") <-for some reason, if I used SetMTMode(2) it would crash xvid_encraw. Set filter in AutoMKV to NONE and add your own here (or just copy and paste a filter from automkv).
#//So you would write (or copy and paste) the script you wanted to use were it says "inster script". KEEP the "" (quotation marks, they are part of the script).
#make sure to delete all this explaining stuff.
#filter2end
Anyone who wants to try it out, keep in mind that it is experimental and unstable but I think I've gotten it to not crash. (although it crashing seems random too...)
It seemed to work with a Interlaced Video (TFF, HQ checked) with a custom SeeSaw script at the end. If your not gonna use an avisynth filter script at the end delete that last MT() thing or it will not work.
Edit3:
Updated it only to add in (2, 0) to the SetMTMode so that it will detect the threads to use (so quad core will use 4, dual core 2).
Tested it on a number of different configs using fastest xvid thing. Worked well. Only thing that doesn't really gain anything is if the source is hybrid/party film. That went pretty slow compared to the others.
Seemed pretty stable.
TheRyuu
15th April 2007, 23:52
I made a wiki out of it:
http://automkv.wiki-site.com/index.php/Advanced_Multi-threading
Not sure were to put it on the main wiki page.
nx6
16th April 2007, 00:34
It's a specialized tweak. It shouldn't be on the main page.
The main page could use a more general table-of-contents like area leading into sections for individual topics, I get the impression from following a few links that there are some very informative pages on the Wiki, but you would miss them because they are only liked to by a couple other articles. So unless you're reading information about a topic and the page you're reading links to these articles, or you know the name of the article itself, you wouldn't have any idea these pages existed.
I also think the "Help" link in the navigational box should lead to a Q/A type page for help with problems using AutoMKV, instead of the manual. If someone is looking for help I would assume they had already read the manual for assistance.
That is a nice page you made, though.
TheRyuu
16th April 2007, 04:56
It's a specialized tweak. It shouldn't be on the main page.
The main page could use a more general table-of-contents like area leading into sections for individual topics, I get the impression from following a few links that there are some very informative pages on the Wiki, but you would miss them because they are only liked to by a couple other articles. So unless you're reading information about a topic and the page you're reading links to these articles, or you know the name of the article itself, you wouldn't have any idea these pages existed.
I also think the "Help" link in the navigational box should lead to a Q/A type page for help with problems using AutoMKV, instead of the manual. If someone is looking for help I would assume they had already read the manual for assistance.
That is a nice page you made, though.
I put it under Software Requirements and Installation (http://automkv.wiki-site.com/index.php/Help:Contents#Software_Requirements_and_Installation) and created an Advanced usage section.
I thought it fit well there.
Oh yea, and by speed boost I mean this:
http://img171.imageshack.us/img171/307/fastqb4.jpg
Thats with progressive source, xvid extra slow, and FluxSmoothT(8) and I think Colormatrix, Spline36 to 640x480 and of course my MT script.
I have no idea if thats how fast it would've been without MT but I doubt it would be that fast.
AMED
16th April 2007, 09:55
Hi buzzqw,
I'm having problems with the Anamorphic Encoding in Automkv.
whenever i play the resulting movie in VLC it is bigger than the original DVD
Here is the log
23:43:03 0.80b - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
23:43:04 Selected Input file: K:\CURSE_OF_THE_BLACK_PEARL\VIDEO_TS\VTS_01_0.IFO
23:43:04 Selected Output dir: K:\temp\
23:43:04 Selected Final Name: CURSE_OF_THE_BLACK_PEARL
23:43:04 Selected Container type: MKV
23:43:04 Selected Encoder: X264
23:43:04 Selected Size: Don't care about size
23:43:04 Selected Slice: 1
23:43:04 Selected Profile: ConstantQuality-CRF.xml
23:43:04 Selected Width: Original
23:43:04 Selected Resizer: NONE
23:43:04 Selected Filters: RemoveGrain(mode=5)
23:43:04 Selected Deinterlacer: AUTO
23:43:04 Selected Field Order: AUTO
23:43:04 Enabled CRF/CQ AutoRes at 18 value
23:43:04 Using Matrix: M4G_MRM_V2.cfg
23:43:04 Track Language 1: English (AC3 6ch, 0xBD 0x80) [0]
23:43:04 Audio Codec 1: Nero AAC
23:43:04 Audio Quality 1: 0.35
23:43:04 Audio Channel 1: Stereo
23:43:04 Advanced Audio Settings DUMP Track 1
23:43:04 Nero Option Profiles: AUTO --- Encoding Mode: Quality
23:43:04 CCT Option Profiles: AUTO --- Channel Options: AUTO
23:43:04 Lame Settings: ABR
23:43:04 Audio Normalization: 1
23:43:04 Frequency: AUTO --- Tempo : NONE
23:43:04 Pitch: NONE --- Other Add :
23:43:04 Advanced Audio Settings DUMP Track 2
23:43:04 Nero Option Profiles: AUTO --- Encoding Mode: Quality
23:43:04 CCT Option Profiles: AUTO --- Channel Options: AUTO
23:43:04 Lame Settings: ABR
23:43:04 Audio Normalization: 1
23:43:04 Frequency: AUTO --- Tempo : NONE
23:43:04 Pitch: NONE --- Other Add :
23:43:04 Activate Anamorphic Encoding
23:43:04
23:43:04 Starting Indexing
23:43:04 Dgindex CMD: J:\AutoMKV080_NORIP\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1 -YR=2 -AIF=[K:\CURSE_OF_THE_BLACK_PEARL\VIDEO_TS\VTS_01_1.vob] -OF=[K:\temp\movie] -exit -minimize
23:45:51 Finished indexing
23:45:51 Starting fixing audio delay on track number 1
23:45:51 DelayCut CMD: J:\AutoMKV080_NORIP\exe\dgindex\Delaycut.exe -auto -out "K:\temp\fixed1.ac3" "K:\temp\movie T01 3_2ch 448Kbps DELAY 0ms.ac3"
23:46:24 Original 1' Audio Size: 461377280 bytes
23:46:25 Finished fixing audio delay
23:46:25 Encoding K:\temp\fixed1.ac3 to NeroAAC with 0.35 quality
00:04:27 Encoded 1' Audio Track: 94416998 bytes
00:04:36 Number of Frames: 205985
00:04:36 Framerate: 25.000000
00:04:36 Movie length in Seconds: 8240
00:04:36 Movie Width/Height: 720/576
00:04:36 DgIndex AR: 16:9
00:07:12 Processing completed. Type is determined to be progressive.
00:07:12 Order: unk
00:07:12 Starting X264
00:07:13 CRF encoding X264: J:\AutoMKV080_NORIP\exe\encoder\x264.exe --pass 1 --crf 25.00 --stats "K:\temp\.stats" --progress --keyint 250 --bframes 3 --qpmin 10 --qpmax 51 --no-psnr --mixed-refs --trellis 1 --ref 3 --filter 0,0 --direct auto --vbv-maxrate 25000 --me umh --no-ssim --weightb --b-pyramid --b-rdo --bime --analyse p8x8,b8x8,i4x4,i8x8,p4x4 --8x8dct --threads 3 --cqmfile "J:\AutoMKV080_NORIP\profiles\X264-profiles\matrix\M4G_MRM_V2.cfg" --output "K:\temp\movie.mp4" "K:\temp\movie.avs"
03:14:21 Accepted values are between 31876710400 and 33889976320 bytes (movie+audio)
03:14:21 Got a file of size: 921590184 bytes + audio size 94416998 bytes (1016007168)
03:14:21 Only Movie Size: 921590184 bytes
03:14:21 "J:\AutoMKV080_NORIP\exe\matroska\mkvmerge.exe" -o "K:\temp\CURSE_OF_THE_BLACK_PEARL.mkv" --track-name -1:"CURSE_OF_THE_BLACK_PEARL" --aspect-ratio 1:2.350000 --chapters "J:\AutoMKV080_NORIP\exe\chapters.txt" "K:\temp\movie.mp4" --language -1:eng "K:\temp\audio.mp4" --title "Done with AutoMKV 0.80b http://forum.doom9.org/showthread.php?p=854221 "
03:16:17 Final Muxed size: 1015800131 bytes
03:16:17 Encoding finished: 03:33:14 elapsed time
03:16:17 -----------------------------------------------------------------------
03:16:17 Script AutoCrop.log
03:16:18
03:16:18 Crop(0,74,720,432)
03:16:18 -----------------------------------------------------------------------
03:16:18 Script Resmovie.avs
03:16:18 -----------------------------------------------------------------------
03:16:18 Script movie.avs
03:16:18
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\autocrop.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\BicublinResize.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\blockbuster.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\cnr2.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\ColorMatrix.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\Convolution3D.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\corrector.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\DctFilter.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\Decomb.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\Deen.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\degrainmedian.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\DGDecode.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\EEDI2.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\fft3dfilter.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\FluxSmooth.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\frfun7.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\hqdn3d.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\LeakKernelDeint.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\MaskTools.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\medianblur.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\MipSmooth.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\mt_masktools.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\mvtools.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\NicAudio.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\RemoveGrainSSE3.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\RepairS.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\SangNom.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\SimpleResize.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\SoundOut.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\TBilateral.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\TDeint.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\TIVTC.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\TomsMoComp.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\TTempSmooth.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\UnDot.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\UnFilter.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\VSFilter.dll")
03:16:18 #loadpluginstart
03:16:18
03:16:18 #test1
03:16:18
03:16:18 Import("J:\AutoMKV080_NORIP\exe\filter\MCBob_v03c.avsi")
03:16:18 Import("J:\AutoMKV080_NORIP\exe\filter\mvbob.avsi")
03:16:18 Import("J:\AutoMKV080_NORIP\exe\filter\seesaw.avsi")
03:16:18 Import("J:\AutoMKV080_NORIP\exe\filter\spresso.avsi")
03:16:18 #importstart
03:16:18
03:16:18 #test2
03:16:18
03:16:18 movie = mpeg2source("K:\temp\movie.d2v")
03:16:18 function getOrder(clip c) {
03:16:18 order = GetParity(c) ? 1 : 0
03:16:18 Return order }
03:16:18 #filter1start
03:16:18
03:16:18 #test3
03:16:18
03:16:18 #cropstart
03:16:18
03:16:18 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
03:16:18 fixed_aspect = 1
03:16:18 c_width = width(cropclip)
03:16:18 c_height = Round(height(cropclip) / fixed_aspect)
03:16:18 input_par = float(float(c_width)/float(c_height))
03:16:18 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
03:16:18 out_width = 720
03:16:18 out_height = Round(float(out_width) / input_par)
03:16:18 hmod = out_height - (floor(out_height / 16 ) * 16)
03:16:18 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
03:16:18 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
03:16:18 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
03:16:18
03:16:18 last = movie
03:16:18 #resizestart
03:16:18
03:16:18 #test4
03:16:18
03:16:18 #filter2start
03:16:18
03:16:18 #test5
03:16:18
03:16:18 RemoveGrain(mode=5)
03:16:18 ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
03:16:18 -----------------------------------------------------------------------
03:16:18 Script mkvmaudio.avs
03:16:18
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\NicAudio.dll")
03:16:18 LoadPlugin("J:\AutoMKV080_NORIP\exe\filter\SoundOut.dll")
03:16:18 NicAC3Source("K:\temp\fixed1.ac3")
03:16:18 #Applying STEREO downmixing routines
03:16:18 function stereo(clip a)
03:16:18 {
03:16:18 flr = GetChannel(a, 1, 2)
03:16:18 fcc = GetChannel(a, 3)
03:16:18 lfe = GetChannel(a, 4)
03:16:18 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
03:16:18 mix = MergeChannels(lfc, lfc)
03:16:18 lrc = MixAudio(flr, mix, 0.2929, 1.0)
03:16:18 blr = GetChannel(a, 5, 6)
03:16:18 Return MixAudio(lrc, blr, 1.0, 0.2929)
03:16:18 }
03:16:18 #
03:16:18 6==Audiochannels() ? stereo() : last
03:16:18 Normalize()
03:16:18 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="J:\AutoMKV080_NORIP\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.35 -if - -of audio.mp4",postfilename="",nofilename=true,showoutput=false)
03:16:18 -----------------------------------------------------------------------
03:16:18 Script mkvmaudio.bat
03:16:18
03:16:18 "J:\AutoMKV080_NORIP\exe\BeSweet\vdub.exe" /x "K:\temp\mkvmaudio.avs"
03:16:18 -----------------------------------------------------------------------
03:16:18 Script mkvmaudio2.avs
03:16:18 -----------------------------------------------------------------------
03:16:18 Script mkvmaudio2.bat
03:16:18
03:16:18 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - - the resolution reported by mkvtoolnix for the display height/width is 1134 x 576. If i manually change from display height/width to aspect ratio 16:9 and save it the video is the same size as the dvd source and looks fine.
I'm running the same source through again to make sure there is a problem.
delacroixp
16th April 2007, 10:42
Hi buzzqw,
I'm having problems with the Anamorphic Encoding in Automkv.
whenever i play the resulting movie in VLC it is bigger than the original DVD
The resolution reported by mkvtoolnix for the display height/width is 1134 x 576. If i manually change from display height/width to aspect ratio 16:9 and save it the video is the same size as the dvd source and looks fine.
I'm running the same source through again to make sure there is a problem.
Well... it looks like you've cropped Top=70 and Bottom=74 ... and since your width is unchanged, all-else being equal, the DAR resolution should be 1024x432. It might be usefull also, to reset your aspect-ratio in VLC.
Another way to see the dimensions is to view folder as 'details' and then activate the dimensions field (mkv seams to be well supported by MS... unlike divx files)... even the duration can be usefull at times.
buzzqw has included a custom anamorphic Width*Height option and along with SeeMoreDigital's Aspect Ratio Signalling (ARS) Calculation Tool (http://forum.doom9.org/showthread.php?t=107039) you'll be pretty much set for success in the future...
Anamorphic-to-DAR calculations can get pretty hairy at times when width-cropping is involved... not recommended for the feint-of-heart.
:):D:eek:
Pascal
*** NOTE ***
Sorry about name smallcaps
buzzqw
16th April 2007, 12:45
Here is the new full package !!! 0.81!
http://www.64k.it/andres/data/a/AutoMKV081.rar
http://www.64k.it/andres/data/a/AutoMKV081_NORIP.rar
0.81 16/04/2007 Full Package
ADDED: GreyScale and Carton Mode to XviD (look on Advanced Profiles editing)
ADDED: Is now possible to encode audio file to WMA audio. Just select your wav/ac3/mp3... input file, select wmv container and WVC1 profile for WMAPro or Quick profile for WMASTD (like 1_Pass_CBR.xml from WMAPRO and 1_Pass_CBR_Quick.xml for WMASTD, or use Advanced Audio Options)
ADDED: In Advanced profile editing some avisynth check
No Colormatrix, MVDenoise, MVDegrain2 (suggestion by wizboy11)
ADDED: LimitedSharpenFaster as resizer the resize string is like Limitedsharpenfaster(smode=4,ss_x=1.25, ss_y=1.25, strength=150, overshoot=1,dest_x=out_width,dest_y=out_height)
ADDED: FFmpeg as muxer. Will be avaiable in Advanced Settings only when selecting avi container (suggestion by FrieWiled)
ADDED: Check Crop values button, it will control that values are MOD4 or MOD2 (suggestion by delacroixp)
ADDED: Removed some resizers and added some other. HybridFuPP is a combination of resizer and filters.
ADDED: External subtitles are now saved to queue.
Note: When working with MKV are possible to load more then one subtitles. Just browse for these files and select one at time. Every time you will click on ADD to Queue the external subtitles will be saved and reset (check opening the queueXXX.ini). Also remember that external subtitle are remembered between consecutive encoding, for freeing simply open the external sub window and click cancel without selection any file
ADDED: Is now possible to encode audio to WMA without muxing to WMV (so you can build x264+wma muxed in mkv) (alpha, to test). Remember also that actually that neither mkvmerge or mp4box can mux wma audio (yes... pretty useless features... ;) )
ADDED: Possibility to use custom PAR on X264
ADDED: Possibility to use custom PAR on XviD
ADDED: Sar option to X264 profiles (actually valorized only in in Ipod/QuickTime)
ADDED: On Ipod profiles (Ipod and Ipod 5.5) the width is proposed at 640
ADDED: Changed Mp4Box.exe with NicMp4Mux.exe. Same compatibility and support for Apple
ADDED: Changed FFmpeg.exe encoding. Now in Advanced Settigs is possible to select the encoding (also memorized on queue)
ADDED: FFmpeg.exe can now encode to mpeg4
ADDED: FFmpeg.exe can now encode to h264
FIXED: When encoding to FFmpeg.exe audio switch to mp3 lame (just for set correctly the audio bitrate)
FIXED: Using FFmpeg.exe to encode for "msmpeg4v2" wasn't correctly move the file to destination folder
FIXED: Changed in WMV9 profiles the audio codec to wmapro
FIXED: On WMV the Quality for Autoresize is now 90
FIXED: -v_percopt usage on WMV profiles
FIXED: Use of -v_mslevel with new WMCmd.vbs
FIXED: In Advanced Audio Options is now memorized (on job queueing) the language (thanks to nx6)
FIXED: Removed some unused code
FIXED: When encoding to WMV with no audio, the audio options isn't included in command string
FIXED: Revisited WMV profiles name
FIXED: Now WMV encoding will pre-process audio to WAV (2 channels) and then will feed this wav to WMcmd encoder
FIXED: Changed a little bit the calculation of WMV bitrate. Will be less prone to oversize
FIXED: Movie deinterlacer before autocrop (suggestion by Tobytl)
FIXED: When AutoCrop isn't needed isn't more added to avs
FIXED: Queuing the same subtitles more than one time cause a multiple quotes to appear and break the queue. (thanks to nx6)
FIXED: Process this IFO wasn't selectable before input choice
FIXED: X264 Ipod profiles (??? need testing)
UPDATE: Downgraded DGindex to 1.4.8 (should fix all problem with tivtc ), mvtools 1.6.2,HybridFuPP 0.96, WMCmd.vbs 14/04/2007, oggenc 2.8.3 lancer aoTuV b5 (SSE needed)
BHH
Bigmango
16th April 2007, 13:25
Here is the new full package !!! 0.81!
Nice !
So you are not going to add a gui option to specify the video frame rate ?
I know about the avs command line, but this is not end user friendly...
buzzqw
16th April 2007, 13:55
@Bigmango
noted. Will be present in next update!
BHH
FrieWiled
16th April 2007, 14:24
buzzqw,
Thanks!!!
:)))
Will report back!
Bigmango
16th April 2007, 18:02
@Bigmango
noted. Will be present in next update!
BHH
:thanks:
delacroixp
16th April 2007, 23:11
I used avinaptic, which buzz told me about.
Awesome Utility (http://forum.doom9.org/showthread.php?t=123076)
[ About file ]
Name: BoB 02 - 640x360.mkv
Date: 20/03/2007 19:21:20
[ About H.264 encoding ]
User data: crf=23.0
[ DRF analysis ]
Average DRF: 25.505621
Standard deviation: 3.105367
Max DRF: 34
DRF<10: 0 ( 0.000 %)
DRF=10: 188 ( 0.251 %)
DRF=11: 144 ( 0.192 %)
DRF=12: 309 ( 0.412 %)
DRF=13: 135 ( 0.180 %)
DRF=14: 167 ( 0.223 %)
DRF=15: 183 ( 0.244 %)
DRF=16: 153 ( 0.204 %)
DRF=17: 117 ( 0.156 %)
DRF=18: 133 ( 0.177 %)
DRF=19: 204 ( 0.272 %)
DRF=20: 715 ( 0.954 %)
DRF=21: 1572 ( 2.097 %) #
DRF=22: 4357 ( 5.811 %) #
DRF=23: 8309 ( 11.081 %) ###
DRF=24: 9955 ( 13.277 %) ###
DRF=25: 11611 ( 15.485 %) ####
DRF=26: 9386 ( 12.518 %) ###
DRF=27: 7814 ( 10.421 %) ###
DRF=28: 7064 ( 9.421 %) ##
DRF=29: 5988 ( 7.986 %) ##
DRF=30: 3879 ( 5.173 %) #
DRF=31: 1846 ( 2.462 %) #
DRF=32: 645 ( 0.860 %)
DRF=33: 80 ( 0.107 %)
DRF=34: 27 ( 0.036 %)
DRF>34: 0 ( 0.000 %)
This report was created by AVInaptic (06-03-2007) on 21 mar 2007, h 20:03:47
What does it all mean...
It certainly looks like a variety of statistical quantizers are being used... all the way from Q10 to Q34...
Stupid question here: what is the numerical range for the ConstantQuality-CRF profile quality scale? I'm been thinking of trying something higher in quality than 18.
Unless you're working with RAW AVI or a very high bitrate, possibly Sony Superbit, production then Q18 is considered the lowest level
this is a big error :)
The CRF profile is NOT A CONSTANT QUALITY PROFILE but a CONSTANT RATE FACTOR PROFILE.
You got me thinking about quality levels above Q18-CRF... I know that buzzqw mentioned that the CQ-CRF-profile is a CONSTANT RATE FACTOR PROFILE and Q18 isn't even an average quality but merely a nominal figure where the average quality could be 2-levels less at Q20... as in the case of the above AVInaptic analysis of a Q23-CQ-CRF encode... and the actual quality can range from Q10 to Q34...
However, Q18-CQ-CRF is still the lowest setting generally used for this profile unless you're encoding RAW AVI as source-material for future projects and would prefer to use, possibly, Q16-CQ-CRF...
So I tried Q18-CQ-CRF on DAR resolution (1024x576) comparing the results to a Q18-CQ-CRF Anamorphic (720x576) encode and to the VOB-original...
Anamorphic Text http://souls-online.net/delacroixp/AutoMKV/BoB/BoB_Text_Anamorphic.png ... DAR http://souls-online.net/delacroixp/AutoMKV/BoB/BoB_Text_DAR.png ... VOB http://souls-online.net/delacroixp/AutoMKV/BoB/BoB_Text_VOB.png
Nobody is interested in great looking text... but it is a relative indicator of the quality of the rest of the encode... look especially at the bottom of the angled leg of the capital R...
Then I also used VLC Player to take snapshots during the movie...
Anamorphic http://souls-online.net/delacroixp/AutoMKV/BoB/BoB_ Anamorphic_Thumb.jpg (http://souls-online.net/delacroixp/AutoMKV/BoB/BoB_Anamorphic.png) ... DAR http://souls-online.net/delacroixp/AutoMKV/BoB/BoB_DAR_Thumb.jpg (http://souls-online.net/delacroixp/AutoMKV/BoB/BoB_DAR.png) ... VOB http://souls-online.net/delacroixp/AutoMKV/BoB/BoB_VOB_Thumb.jpg (http://souls-online.net/delacroixp/AutoMKV/BoB/BoB_VOB.png)
If you download the VLC snapshots and watch the jeep, particularly between the Anamorphic and DAR encode... the clarity and detail will just jump right out at you...
This DAR quality, however, does not come cheep... the Anamorphic encode is 45% less-than the VOB while the DAR encode is only 24% less-than the VOB original... and encodes times are also 25% slower. A further consideration is that Q18-Anamorphic may equate to Q19 or even Q20-DAR and your movie has been correctly resized during encode rather than, in realtime on plaback... where quality may suffer...
I used the Lanczos4 resize filter though there may well be a filter better suited since the movie hasn't been resized, as much as, re-mapped to it's originally intended resolution.
Is it worth it... well that's up to you...
:):D:eek:
Pascal
BTW
Does anyone know of a utility that will take a snapshot of any particular frame-number... from a VOB, MKV or MP4 video file...
Bigmango
16th April 2007, 23:29
BTW
Does anyone know of a utility that will take a snapshot of any particular frame-number... from a VOB, MKV or MP4 video file...
Yes, Avidemux. You can go to any frame number and then save the frame (menu/save)
http://fixounet.free.fr/avidemux/
Latest unstable windows devel version is here (the devel version is nice as it includes the latest codec versions, use the official version if you get bugs):
http://www.razorbyte.com.au/avidemux/
(http://www.razorbyte.com.au/avidemux/)
sunflash10
16th April 2007, 23:41
Yes, Avidemux. You can go to any frame number and then save the frame (menu/save)
http://fixounet.free.fr/avidemux/
Latest unstable windows devel version is here (the devel version is nice as it includes the latest codec versions, use the official version if you get bugs):
http://www.razorbyte.com.au/avidemux/
(http://www.razorbyte.com.au/avidemux/)
Another alternative would be Media Player Classic.
That way, you don't have to install anything.
TheRyuu
17th April 2007, 01:06
It seems that using the Auto mode for deinterlacer doesn't seem to analyze the movie right.
I know for a fact that the move is 29fps with it being 3p/2i so 3/2 pull down is needed (not sure what you call it. IVTC? Inverse Tech something... not that video literate here but you get the point right?)
However, for some reason, the deinterlacer is using Party Film with a hybrid field. Both are wrong. I also know that it is TFF and requires the decimating filter. Luckily I know how to see a 3/2 film (it ain't hard, just look at the video in step mode in MPC to see the 3p frames and 2i frames in a pattern).
How come the auto deinterlacer isn't analyzing it correctly?? Or is it just not perfect when it comes to everything :)
ricardo.santos
17th April 2007, 01:07
Ive been trying AutoMKV but i always used to get errors while testing it, this is actually the first version that doesnt give me any errors:
i used a 5 minute vob and a target size of 50 Mg to test it against AutoGk, StaxRip,Avi.Net,Fairuse WIZARD,vIRTUALdUB Mod using Xvid, all using same audio/video settings.
1-AutoMkv was the only producing an undersized file (42mg) all the others were right on, the quality at 42 mg was good but so were the others when i also tested them at 42mg.
2- AutoMkv took 35% more time to encode the same file. AutoGk was faster even with the Compcheck test
3- AutoMkv was the one that took more time to setup, StaxRip his fully customazible but has a more user friendly GUI, my opinion anyway. too many tabs and drop down menus.
It has potential with all the choice of codecs, but i will stick with Autogk/avi.Net for my xvid backups. Keep up the good work
gonwk
17th April 2007, 03:54
Hi folks,
@ Ricardo ... first of all I have to inform you that I am not at all Video expert ... just point & click type of a person ...
but is anyone of the ones that you mentioned "Portable" meaning all applications needed "Contained" in it's own little folder ...
I can tell you that is why I won't have "AutoGK" on my computer ... and I have never been able to use "Staxrip" ...
G!
nx6
17th April 2007, 06:36
Okay, I'm having issues with the new build. This is a two minute sample I made for the purpose of testing encoding and filter settings.
00:33:21 0.81 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
00:33:21 Selected Input file: S:\AutoMKV081\Bleach Test 2\VTS_01_0.d2v
00:33:21 Selected Output dir: S:\AutoMKV081\Bleach Test 2\temp\
00:33:21 Selected Final Name: BT02v081Test2
00:33:21 Selected Container type: MKV
00:33:21 Selected Encoder: X264
00:33:21 Selected Size: 1 CD
00:33:21 Selected Slice: 1
00:33:21 Selected Profile: ConstantQuality-CRF.xml
00:33:21 Selected Width: Original
00:33:21 Selected Resizer: NONE
00:33:21 Selected Filters: NONE
00:33:21 Selected Deinterlacer: AUTO
00:33:21 Selected Field Order: AUTO
00:33:21 Enabled CRF/CQ AutoRes at 18 value
00:33:21 Track Language 1: S:\AutoMKV081\Bleach Test 2\VTS_01_0 T01 2_0ch 224Kbps DELAY -135ms.ac3
00:33:21 Audio Codec 1: Nero AAC
00:33:21 Audio Quality 1: 0.35
00:33:21 Audio Channel 1: Stereo
00:33:21 Track Language 2: S:\AutoMKV081\Bleach Test 2\VTS_01_0 T02 2_0ch 224Kbps DELAY -135ms.ac3
00:33:21 Audio Codec 2: Nero AAC
00:33:21 Audio Quality 2: 0.35
00:33:21 Audio Chennel 2: Stereo
00:33:21 Advanced Audio Settings DUMP Track 1
00:33:21 Movie title Name: (no filters)
00:33:21 Nero Option Profiles: AUTO --- Encoding Mode: Quality
00:33:21 CCT Option Profiles: AUTO --- Channel Options: AUTO
00:33:21 Lame Settings: ABR
00:33:21 Audio Normalization: 1
00:33:21 Frequency: AUTO --- Tempo : NONE
00:33:21 Pitch: NONE --- Other Add :
00:33:21 Advanced Audio Settings DUMP Track 2
00:33:21 Nero Option Profiles: AUTO --- Encoding Mode: Quality
00:33:21 CCT Option Profiles: AUTO --- Channel Options: AUTO
00:33:21 Lame Settings: ABR
00:33:21 Audio Normalization: 1
00:33:21 Frequency: AUTO --- Tempo : NONE
00:33:21 Pitch: NONE --- Other Add :
00:33:21 Selected Unlimited media size
00:33:22 DelayCut CMD: S:\AutoMKV081\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV081\Bleach Test 2\temp\fixed1.ac3" "S:\AutoMKV081\Bleach Test 2\VTS_01_0 T01 2_0ch 224Kbps DELAY -135ms.ac3"
00:33:22 DelayCut CMD: S:\AutoMKV081\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV081\Bleach Test 2\temp\fixed2.ac3" "S:\AutoMKV081\Bleach Test 2\VTS_01_0 T02 2_0ch 224Kbps DELAY -135ms.ac3"
00:33:22 Encoding S:\AutoMKV081\Bleach Test 2\temp\fixed1.ac3 to NeroAAC with 0.35 quality
00:33:53 Encoded 1' Audio Track: 1438861 bytes
00:33:53 Encoding S:\AutoMKV081\Bleach Test 2\temp\fixed2.ac3 to NeroAAC with 0.35 quality
00:34:20 Encoded 2' Audio Track: 1454831 bytes
00:34:25 Avi engage mode not corrected, switched to DirectShowSource
00:34:28 !!! BREAK - FILE NOT SUPPORTED !!! - Trying with MediaInfo!
00:34:29 Aspect ratio: 4:3
00:34:29 Number of Frames:
00:34:29 Framerate:
00:34:29 Movie length in Seconds: 1
00:34:29 Movie Width/Height: /
00:34:29 DgIndex AR: 4:3
00:34:29 Number of Frames:
00:34:29 Framerate:
00:34:29 Movie length in Seconds: 1
00:34:29 Movie Width/Height: /
00:34:29 DgIndex AR: 4:3
00:34:33 Order: unk
00:34:33 Starting X264
00:34:33 CRF encoding X264: S:\AutoMKV081\exe\encoder\x264.exe --pass 1 --crf 18 --stats "S:\AutoMKV081\Bleach Test 2\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 2 --output "S:\AutoMKV081\Bleach Test 2\temp\movie.mp4" "S:\AutoMKV081\Bleach Test 2\temp\movie.avs"
00:34:36 Accepted values are between 697303040 and 741343232 bytes (movie+audio)
00:34:36 Got a file of size: 0 bytes + audio size 2893694 bytes (2893694)
00:36:46 "S:\AutoMKV081\exe\matroska\mkvmerge.exe" -o "S:\AutoMKV081\Bleach Test 2\temp\BT02v081Test2.mkv" --track-name -1:"BT02v081Test2" --aspect-ratio 1:-1.#IND00 "S:\AutoMKV081\Bleach Test 2\temp\movie.mp4" --language -1:und "S:\AutoMKV081\Bleach Test 2\temp\audio.mp4" --language -1:und "S:\AutoMKV081\Bleach Test 2\temp\audio2.mp4" --title "(no filters)"
00:36:49 Final Muxed size: -1 bytes
00:36:49 Encoding finished: 00:03:28 elapsed time
00:36:49 -----------------------------------------------------------------------
00:36:49 Script AutoCrop.log
00:36:49 -----------------------------------------------------------------------
00:36:49 Script Resmovie.avs
00:36:49 -----------------------------------------------------------------------
00:36:49 Script movie.avs
00:36:49
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\AddGrain.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\autocrop.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\BicublinResize.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\blockbuster.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\cnr2.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\ColorMatrix.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\Convolution3D.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\corrector.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\DctFilter.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\Decomb.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\Deen.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\degrainmedian.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\DGDecode.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\EEDI2.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\fft3dfilter.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\FluxSmooth.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\frfun7.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\hqdn3d.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\LeakKernelDeint.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\MaskTools.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\medianblur.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\MipSmooth.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\MSharpen.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\mt_masktools.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\mvtools.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\NicAudio.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\RemoveGrainS.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\RepairS.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\SangNom.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\SimpleResize.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\SoundOut.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\TBilateral.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\TDeint.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\TIVTC.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\TomsMoComp.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\TTempSmooth.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\UnDot.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\UnFilter.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\VSFilter.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\warpsharp.dll")
00:36:49 #loadpluginstart
00:36:49
00:36:49 #test1
00:36:49
00:36:49 Import("S:\AutoMKV081\exe\filter\HybridFuPP.avsi")
00:36:49 Import("S:\AutoMKV081\exe\filter\LimitedSharpenFaster.avsi")
00:36:49 Import("S:\AutoMKV081\exe\filter\MCBob_v03c.avsi")
00:36:49 Import("S:\AutoMKV081\exe\filter\mvbob.avsi")
00:36:49 Import("S:\AutoMKV081\exe\filter\seesaw.avsi")
00:36:49 Import("S:\AutoMKV081\exe\filter\spresso.avsi")
00:36:49 #importstart
00:36:49
00:36:49 #test2
00:36:49
00:36:49 movie = mpeg2source("S:\AutoMKV081\Bleach Test 2\VTS_01_0.d2v")
00:36:49 function getOrder(clip c) {
00:36:49 order = GetParity(c) ? 1 : 0
00:36:49 Return order }
00:36:49 #filter1start
00:36:49
00:36:49 #test3
00:36:49
00:36:49 last = movie
00:36:49 #resizestart
00:36:49
00:36:49 #test4
00:36:49
00:36:49 #filter2start
00:36:49
00:36:49 #test5
00:36:49
00:36:49 return last
00:36:49 -----------------------------------------------------------------------
00:36:49 Script mkvmaudio.avs
00:36:49
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\NicAudio.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\SoundOut.dll")
00:36:49 NicAC3Source("S:\AutoMKV081\Bleach Test 2\temp\fixed1.ac3")
00:36:49 #Applying STEREO downmixing routines
00:36:49 function stereo(clip a)
00:36:49 {
00:36:49 flr = GetChannel(a, 1, 2)
00:36:49 fcc = GetChannel(a, 3)
00:36:49 lfe = GetChannel(a, 4)
00:36:49 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
00:36:49 mix = MergeChannels(lfc, lfc)
00:36:49 lrc = MixAudio(flr, mix, 0.2929, 1.0)
00:36:49 blr = GetChannel(a, 5, 6)
00:36:49 Return MixAudio(lrc, blr, 1.0, 0.2929)
00:36:49 }
00:36:49 #
00:36:49 6==Audiochannels() ? stereo() : last
00:36:49 Normalize()
00:36:49 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV081\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.35 -if - -of audio.mp4",postfilename="",nofilename=true,showoutput=false)
00:36:49 -----------------------------------------------------------------------
00:36:49 Script mkvmaudio.bat
00:36:49
00:36:49 "S:\AutoMKV081\exe\BeSweet\vdub.exe" /x "S:\AutoMKV081\Bleach Test 2\temp\mkvmaudio.avs"
00:36:49 -----------------------------------------------------------------------
00:36:49 Script mkvmaudio2.avs
00:36:49
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\NicAudio.dll")
00:36:49 LoadPlugin("S:\AutoMKV081\exe\filter\SoundOut.dll")
00:36:49 NicAC3Source("S:\AutoMKV081\Bleach Test 2\temp\fixed2.ac3")
00:36:49 #Applying STEREO downmixing routines
00:36:49 function stereo(clip a)
00:36:49 {
00:36:49 flr = GetChannel(a, 1, 2)
00:36:49 fcc = GetChannel(a, 3)
00:36:49 lfe = GetChannel(a, 4)
00:36:49 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
00:36:49 mix = MergeChannels(lfc, lfc)
00:36:49 lrc = MixAudio(flr, mix, 0.2929, 1.0)
00:36:49 blr = GetChannel(a, 5, 6)
00:36:49 Return MixAudio(lrc, blr, 1.0, 0.2929)
00:36:49 }
00:36:49 #
00:36:49 6==Audiochannels() ? stereo() : last
00:36:49 Normalize()
00:36:49 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV081\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.35 -if - -of audio2.mp4",postfilename="",nofilename=true,showoutput=false)
00:36:49 -----------------------------------------------------------------------
00:36:49 Script mkvmaudio2.bat
00:36:49
00:36:49 "S:\AutoMKV081\exe\BeSweet\vdub.exe" /x "S:\AutoMKV081\Bleach Test 2\temp\mkvmaudio2.avs"
00:36:49
00:36:49 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
buzzqw
17th April 2007, 07:13
@wizboy11
more then ofte appear this problem... i must "tune" better bautodeint...
@nx6
kay, I'm having issues with the new build
UPDATE: Downgraded DGindex to 1.4.8 (should fix all problem with tivtc )
most probably you have done VTS_01_0.d2v with 1.49 beta xxx BUT now i downgrade dgindex to resolve most of issue with ivtc.
Re-DgIndex your sample :)
@ricardo.santos
i used a 5 minute vob and a target size of 50 Mg to test it against AutoGk, StaxRip,Avi.Net,Fairuse WIZARD,vIRTUALdUB Mod using Xvid, all using same audio/video settings.
the problem is VFW Vs XviD_EncRaw. XviD_Encraw isn't so precise to hit final size... most depends on imin/imax/pmin/pmax...
AutoMkv took 35% more time to encode the same file
most probably is interlaced. AutoGK deinterlace AFTER cropping, AutoMKV deinterlace BEFORE cropping, so some chroma aberration doesn't appear
AutoMkv was the one that took more time to setup,
... automkv is a three click application.. launch it, browse your file, click start
It has potential with all the choice of codecs, but i will stick with Autogk/avi.Net for my xvid backups. Keep up the good work
thanks ricardo! i will try to make automkv better and better ! :)
BHH
nx6
17th April 2007, 07:47
@nx6
most probably you have done VTS_01_0.d2v with 1.49 beta xxx BUT now i downgrade dgindex to resolve most of issue with ivtc.
Re-DgIndex your sample :)
Well, that might have been part of the problem, but it's still failing to encode. I just now made a new d2v sample from the original VOBs.
01:41:00 0.81 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
01:41:00 Selected Input file: S:\AutoMKV081\Bleach Test 3\VTS_01_1.d2v
01:41:00 Selected Output dir: S:\AutoMKV081\Bleach Test 3\temp\
01:41:00 Selected Final Name: BT03v081
01:41:00 Selected Container type: MKV
01:41:00 Selected Encoder: X264
01:41:00 Selected Size: 1 CD
01:41:00 Selected Slice: 1
01:41:00 Selected Profile: ConstantQuality-CRF.xml
01:41:00 Selected Width: Original
01:41:00 Selected Resizer: NONE
01:41:00 Selected Filters: NONE
01:41:00 Selected Deinterlacer: AUTO
01:41:00 Selected Field Order: AUTO
01:41:00 Enabled CRF/CQ AutoRes at 18 value
01:41:00 Track Language 1: S:\AutoMKV081\Bleach Test 3\VTS_01_1 T01 2_0ch 224Kbps DELAY -185ms.ac3
01:41:00 Audio Codec 1: Nero AAC
01:41:00 Audio Quality 1: 0.30
01:41:00 Audio Channel 1: Stereo
01:41:00 Track Language 2: S:\AutoMKV081\Bleach Test 3\VTS_01_1 T02 2_0ch 224Kbps DELAY -185ms.ac3
01:41:00 Audio Codec 2: Nero AAC
01:41:00 Audio Quality 2: 0.30
01:41:00 Audio Chennel 2: Stereo
01:41:00 Advanced Audio Settings DUMP Track 1
01:41:00 Movie title Name: (no filters)
01:41:00 Audio Track Language: eng
01:41:00 Nero Option Profiles: AUTO --- Encoding Mode: Quality
01:41:00 CCT Option Profiles: AUTO --- Channel Options: AUTO
01:41:00 Lame Settings: ABR
01:41:00 Audio Normalization: 1
01:41:00 Frequency: AUTO --- Tempo : NONE
01:41:00 Pitch: NONE --- Other Add :
01:41:00 Advanced Audio Settings DUMP Track 2
01:41:00 Audio Track Language: jpn
01:41:00 Nero Option Profiles: AUTO --- Encoding Mode: Quality
01:41:00 CCT Option Profiles: AUTO --- Channel Options: AUTO
01:41:00 Lame Settings: ABR
01:41:00 Audio Normalization: 1
01:41:00 Frequency: AUTO --- Tempo : NONE
01:41:00 Pitch: NONE --- Other Add :
01:41:00 Selected Unlimited media size
01:41:00 DelayCut CMD: S:\AutoMKV081\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV081\Bleach Test 3\temp\fixed1.ac3" "S:\AutoMKV081\Bleach Test 3\VTS_01_1 T01 2_0ch 224Kbps DELAY -185ms.ac3"
01:41:01 DelayCut CMD: S:\AutoMKV081\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV081\Bleach Test 3\temp\fixed2.ac3" "S:\AutoMKV081\Bleach Test 3\VTS_01_1 T02 2_0ch 224Kbps DELAY -185ms.ac3"
01:41:03 Encoding S:\AutoMKV081\Bleach Test 3\temp\fixed1.ac3 to NeroAAC with 0.30 quality
01:41:29 Encoded 1' Audio Track: 986982 bytes
01:41:29 Encoding S:\AutoMKV081\Bleach Test 3\temp\fixed2.ac3 to NeroAAC with 0.30 quality
01:41:51 Encoded 2' Audio Track: 994291 bytes
01:42:05 Number of Frames: 3406
01:42:05 Framerate: 29.970030
01:42:05 Movie length in Seconds: 114
01:42:05 Movie Width/Height: 720/480
01:42:05 DgIndex AR: 4:3
01:43:28 Order: unk
01:43:28 Starting X264
01:43:28 CRF encoding X264: S:\AutoMKV081\exe\encoder\x264.exe --pass 1 --crf 18 --stats "S:\AutoMKV081\Bleach Test 3\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 2 --output "S:\AutoMKV081\Bleach Test 3\temp\movie.mp4" "S:\AutoMKV081\Bleach Test 3\temp\movie.avs"
01:43:31 Accepted values are between 697303040 and 741343232 bytes (movie+audio)
01:43:31 Got a file of size: 0 bytes + audio size 1981275 bytes (1981275)
01:45:42 "S:\AutoMKV081\exe\matroska\mkvmerge.exe" -o "S:\AutoMKV081\Bleach Test 3\temp\BT03v081.mkv" --track-name -1:"BT03v081" --aspect-ratio 1:1.000000 "S:\AutoMKV081\Bleach Test 3\temp\movie.mp4" --language -1:eng "S:\AutoMKV081\Bleach Test 3\temp\audio.mp4" --language -1:jpn "S:\AutoMKV081\Bleach Test 3\temp\audio2.mp4" --title "(no filters)"
01:45:43 Final Muxed size: -1 bytes
01:45:43 Encoding finished: 00:04:43 elapsed time
01:45:43 -----------------------------------------------------------------------
01:45:43 Script AutoCrop.log
01:45:43
01:45:43 Crop(4,0,712,480)
01:45:43 -----------------------------------------------------------------------
01:45:43 Script Resmovie.avs
01:45:43 -----------------------------------------------------------------------
01:45:43 Script movie.avs
01:45:43
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\AddGrain.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\autocrop.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\BicublinResize.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\blockbuster.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\cnr2.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\ColorMatrix.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\Convolution3D.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\corrector.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\DctFilter.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\Decomb.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\Deen.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\degrainmedian.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\DGDecode.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\EEDI2.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\fft3dfilter.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\FluxSmooth.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\frfun7.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\hqdn3d.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\LeakKernelDeint.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\MaskTools.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\medianblur.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\MipSmooth.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\MSharpen.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\mt_masktools.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\mvtools.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\NicAudio.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\RemoveGrainS.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\RepairS.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\SangNom.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\SimpleResize.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\SoundOut.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\TBilateral.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\TDeint.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\TIVTC.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\TomsMoComp.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\TTempSmooth.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\UnDot.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\UnFilter.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\VSFilter.dll")
01:45:43 LoadPlugin("S:\AutoMKV081\exe\filter\warpsharp.dll")
01:45:43 #loadpluginstart
01:45:43
01:45:43 #test1
01:45:43
01:45:43 Import("S:\AutoMKV081\exe\filter\HybridFuPP.avsi")
01:45:43 Import("S:\AutoMKV081\exe\filter\LimitedSharpenFaster.avsi")
01:45:43 Import("S:\AutoMKV081\exe\filter\MCBob_v03c.avsi")
01:45:43 Import("S:\AutoMKV081\exe\filter\mvbob.avsi")
01:45:43 Import("S:\AutoMKV081\exe\filter\seesaw.avsi")
01:45:43 Import("S:\AutoMKV081\exe\filter\spresso.avsi")
01:45:43 #importstart
01:45:43
01:45:43 #test2
01:45:44
01:45:44 movie = mpeg2source("S:\AutoMKV081\Bleach Test 3\VTS_01_1.d2v")
01:45:44 function getOrder(clip c) {
01:45:44 order = GetParity(c) ? 1 : 0
01:45:44 Return order }
01:45:44 #filter1start
01:45:44
01:45:44 #test3
01:45:44
01:45:44 last = movie
01:45:44 #resizestart
01:45:44
01:45:44 #test4
01:45:44
01:45:44 #filter2start
01:45:44
01:45:44 #test5
01:45:44
01:45:44 -----------------------------------------------------------------------
01:45:44 Script mkvmaudio.avs
01:45:44
01:45:44 LoadPlugin("S:\AutoMKV081\exe\filter\NicAudio.dll")
01:45:44 LoadPlugin("S:\AutoMKV081\exe\filter\SoundOut.dll")
01:45:44 NicAC3Source("S:\AutoMKV081\Bleach Test 3\temp\fixed1.ac3")
01:45:44 #Applying STEREO downmixing routines
01:45:44 function stereo(clip a)
01:45:44 {
01:45:44 flr = GetChannel(a, 1, 2)
01:45:44 fcc = GetChannel(a, 3)
01:45:44 lfe = GetChannel(a, 4)
01:45:44 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
01:45:44 mix = MergeChannels(lfc, lfc)
01:45:44 lrc = MixAudio(flr, mix, 0.2929, 1.0)
01:45:44 blr = GetChannel(a, 5, 6)
01:45:44 Return MixAudio(lrc, blr, 1.0, 0.2929)
01:45:44 }
01:45:44 #
01:45:44 6==Audiochannels() ? stereo() : last
01:45:44 Normalize()
01:45:44 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV081\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.30 -if - -of audio.mp4",postfilename="",nofilename=true,showoutput=false)
01:45:44 -----------------------------------------------------------------------
01:45:44 Script mkvmaudio.bat
01:45:44
01:45:44 "S:\AutoMKV081\exe\BeSweet\vdub.exe" /x "S:\AutoMKV081\Bleach Test 3\temp\mkvmaudio.avs"
01:45:44 -----------------------------------------------------------------------
01:45:44 Script mkvmaudio2.avs
01:45:44
01:45:44 LoadPlugin("S:\AutoMKV081\exe\filter\NicAudio.dll")
01:45:44 LoadPlugin("S:\AutoMKV081\exe\filter\SoundOut.dll")
01:45:44 NicAC3Source("S:\AutoMKV081\Bleach Test 3\temp\fixed2.ac3")
01:45:44 #Applying STEREO downmixing routines
01:45:44 function stereo(clip a)
01:45:44 {
01:45:44 flr = GetChannel(a, 1, 2)
01:45:44 fcc = GetChannel(a, 3)
01:45:44 lfe = GetChannel(a, 4)
01:45:44 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
01:45:44 mix = MergeChannels(lfc, lfc)
01:45:44 lrc = MixAudio(flr, mix, 0.2929, 1.0)
01:45:44 blr = GetChannel(a, 5, 6)
01:45:44 Return MixAudio(lrc, blr, 1.0, 0.2929)
01:45:44 }
01:45:44 #
01:45:44 6==Audiochannels() ? stereo() : last
01:45:44 Normalize()
01:45:44 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV081\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.30 -if - -of audio2.mp4",postfilename="",nofilename=true,showoutput=false)
01:45:44 -----------------------------------------------------------------------
01:45:44 Script mkvmaudio2.bat
01:45:44
01:45:44 "S:\AutoMKV081\exe\BeSweet\vdub.exe" /x "S:\AutoMKV081\Bleach Test 3\temp\mkvmaudio2.avs"
01:45:44
01:45:44 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
I saw an error flash up real fast just before the job "finished" but I wasn't sure what was running when it happened. If you know I can rerun from DOS and give you the output.
delacroixp
17th April 2007, 08:12
Perhaps 'Original' could be set to mean 'DAR Original' and perhaps, 'AutoCrop Only' could be set to mean 'DAR AutoCrop Only'...
This would avoid the confusion amongst MP4v users you can't do anamorphic encodes inherently.
MKV users should probably resort to manual anamorphic encodes because of the complexities of calculating the correct DAR... especially when width-cropping has been implemented...
:):D:eek:
Pascal
delacroixp
17th April 2007, 08:28
Okay, I'm having issues with the new build. This is a two minute sample I made for the purpose of testing encoding and filter settings.
00:33:21 0.81 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
00:33:21 Selected Input file: S:\AutoMKV081\Bleach Test 2\VTS_01_0.d2v
00:33:21 Selected Output dir: S:\AutoMKV081\Bleach Test 2\temp\
00:36:49 Script mkvmaudio2.bat
00:36:49
00:36:49 "S:\AutoMKV081\exe\BeSweet\vdub.exe" /x "S:\AutoMKV081\Bleach Test 2\temp\mkvmaudio2.avs"
00:36:49
00:36:49 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
I take it you've been encoding Bleach (http://en.wikipedia.org/wiki/Bleach_(manga)), the Tokyo TV series... my nephew is nuts about the series and his younger brother just loves Dragonball Z (http://www.dragonballz.com/)...
Bleach has over 100 episodes and Drogonball Z has almost 300 episodes.
I'ld love to get the DVD's and make them a H264 encode version...
:):D:eek:
Pascal
delacroixp
17th April 2007, 08:36
:thanks: much for the heads-up on recommending Avidemux and Media Player Classic to capture specific frame-number snapshots...
Very much appreciated
:):D:eek:
Pascal
nx6
17th April 2007, 08:47
I'ld love to get the DVD's and make them a H264 encode version...
Pascal
That would be exactly what I'm doing. I haven't been thrilled with the quality of the DVD releases, though. The video has this slight blurriness to it. That is why I was asking about sharpening filters last week. There also are few extras (not that I'm heavy into extra content).
Meanwhile, I was watching Full Metal Alchemist last week, and they have a 5.1 English track in addition to the normal 2.0 channel Eng and Jap. and two angles for each episode so you can see all the credits and such in whichever language you choose.
Speaking of being sharper...
@buzzwq
I notice you're including the MSharpen filter (http://neuron2.net/msharpen/msharpen.html) in AutoMKV now. That's funny, that was the same filter I was adding to my set (http://forum.doom9.org/showpost.php?p=988043&postcount=1832) for v080b a few days ago. :D
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.