View Full Version : AutoMKV 0.93a - (DVD/TS/AVI/AVS to X264/XviD/WVC1 into MKV/MP4/WMV) update 30/12/2007
buzzqw
14th February 2007, 20:32
Did you understand the problem that no matter what rate you load in a profile, if you check the "Use This Profile" (perhaps you changed the v_keydist) the rate gets multiplied by 1024. If you don't check this, it does not get multiplied by 1024 ??
to correct this i had divided in profiles by 1000 the v_bitrate
Es. from <v_bitrate>512000</v_bitrate> to <v_bitrate>512</v_bitrate>
i hadn't change the code, this value will be multiplied by 1024 in final script
Are you inviting me to do that instead of you, or in addition, or what?
i had already done, BUT i would like if can suggest/build more correct profiles
Everything I did with movie.avs and movie_wmv.bat was AFTER the encoding stalled and I terminated the WME script command window
please look at time.avs: is avisource or directshowsource in use ?
also: is frame.txt created ?
x264.exe just starts idling when about 10% is encoded
this issue is related to you pc AND x264.exe, try disabling Antivirus/firewall
tell me any progress!
BHH
dlflannery
14th February 2007, 21:36
@buzzqw:
What you have done with the Zune profiles sounds good to me. Only after I test them would I possibly have any changes to suggest. Thanks!
I can create the .xml files based on your posts, or should I wait for the next version, in case there are other things you changed, not mentioned in your posts?
Regarding the 1024 bitrate factor, are you saying no code change is needed beyond 74e -- just using 512 instead of 512000 in the xml profile?
buzzqw
14th February 2007, 21:44
I can create the .xml files based on your posts, or should I wait for the next version, in case there are other things you changed, not mentioned in your posts?
sounds good to me... tomorrow i will pm you with a direct link to new WMV ZUNE profile package.
Do your best on changing/fixing these profiles !
Regarding the 1024 bitrate factor, are you saying no code change is needed beyond 74e -- just using 512 instead of 512000 in the xml profile?
YES! since i multiply by 1000 there is no need to write 512000
BHH
dlflannery
15th February 2007, 03:51
.....please look at time.avs: is avisource or directshowsource in use ?
also: is frame.txt created ?
BHH
time.avs uses avisource.
frame.txt has this:
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
3143 30.000000 320 240 1
dlflannery
15th February 2007, 04:38
@buzzqw
I edited the Zune_1pass_quick profile to 512 for bitrate (instead of 512000). This prevents the huge numbers, as you said it would. However there are still some minor problems that you might want to fix in the next release:
I have saved this profile in my automkv.ini file. If I start the program and go to the Advanced profile Editing tab, the command line window will have some odd number (like 128000) for the v_bitrate. If I click Reload Profile the number changes to 512000. If I then check Use this Profile the number changes to 524288 (= 512000 * 1.024). If I encode before checking Use this Profile the bitrate passed to the encoder will by 512000. After checking it, the bitrate passed is 524288.
Shouldn't the command line window and the number passed to the encoder be identical for all these conditions?
If I set the bitrate up to 600 on the Advanced Settings tab, the value used for encoding is 624400 (i.e., 600000 * 1.024). Looks like 1000 is used in some cases and 1024 in others.
These are minor inconsistencies -- no significant difference in the encoding result -- just confusing to the operator.
I'll look forward to your PM regarding the new profiles.
Regards and thanks.
dlflannery
15th February 2007, 06:46
I modified the Zune_2_pass profile as follows:
1. v_bitrate at 512 instead of 512000
2. v_peakbitrate at 736000 instead of 1500000
I used 64kpbs audio so the total peak bit rate should have been 800 kbps or less.
The encoded .wmv had a peak bitrate (mediaInfo says) of 1.2 Mbps! Looking at the options file for the WME command line script indicates that the v_mode option should be 4 (instead of 3 now used) if the peak bitrate is going to be limited by the v_peakbitrate option.
So I further modified the profile by using 4 for v_mode. However the command line passed to the script now was missing several things:
1. v_codec
2. v_bitrate
3 v_mode
and the encoding was not good -- single pass very low bitrate.
So I modified movie_wmv.bat by adding these options:
-v_codec WMV8
-v_bitrate 512000
-v_mode 4
The encoding went OK and the result .wmv was good. MediaInfo said the peak bitrate was 736 kbps, as desired, and the file synched to the Zune device without forced re-encoding and played fine. It looks like some code changes will be needed to implement this 2-pass VBR WMV8 profile, since apparently the code removed three needed parameters from the encoder command line options when I set the v_mode to 4 in the profile XML file (???). Also, probably should use 64_44_2 for the audio option instead of 128_44_2.
I repeated but with v_bitrate set to 400. All OK and the clip played fine on the Zune device with no noticeable quality loss compared to 512 bitrate. The file size was reduced to 85% of what it was at 512. My interest in 2-pass started recently when an OP PM'ed me they were having blocks in fast motion portions using the 1-pass CBR profile. I would guess with peak bitrate allowed up to 736 kbps, the blocks would be removed even at only 400 kbps average rate. (I've never had blocks but none of my test videos have enough rapid motion, I guess.)
buzzqw
15th February 2007, 10:58
@dlflannery
check your pm
thanks!
BHH
dlflannery
15th February 2007, 16:25
@dlflannery
check your pm
thanks!
BHH
Got the profiles and test program. The Zune 2 pass profile tests good! Got the same file length (within 6 bytes) that I got with my modified movie_wvm.bat before, and the specs per mediaInfo are identical. Plays good on Zune device and does not require re-encoding on synch. With this profile (and any WMV7 or WMV8 VBR mode 4) the audio bitrate should be limited to 64kbps. Is there a way to have the program enforce that?
I will test the other Zune profiles but I looked at them and they seem correct.
I still see the command line v_bitrate jumping up by factor of 1.024 when I check "Use this Profile" (??).
Looks good so far! Thanks!
glynor
15th February 2007, 17:42
@dlflannery
@glynor
i prefer not to do hack... expecially due on quickcrapplayer bugs... , BUT go on advenced settings, click on last avs string and add: AssumeFPS(30000,1001) or AssumeFPS(24000,1001)
BHH
Thanks. I can certainly understand you not wanting to do a hack for Apple's incompetent software.
Unfortunately, I tried out using the AssumeFPS(30000,1001) and it still doesn't work. The results are somewhat better, but still no good (I now don't get an error message, and the audio plays, but the video is black in Quicktime Player). I've tried a wide variety of settings and profiles, including limiting the output bitrate to 600 and the width to 320). Interestingly, when I include the AssumeFPS(30000,1001) line with a 29.970 FPS source, the resulting MP4 I get is 29.971 FPS, but I no longer get the error message in QTPlayer, just the black video window.
The main reason I need to be able to support Quicktime Player is that I have a lot of people I produce content for that use Macs. VLC is available for OSX and works, but I can't force people to install and use additional software... :(
Also, a lot of people I know in other forums have expressed interest in using AutoMKV to produce iPod compatible MP4s, but I can't get this to work well either. If I select the PD-iPod 5.5G.xml profile with basically any encoding settings, I get this:
http://www.geocities.com/ri0n/automkv/ipod_fails.jpg
The vanilla PD-iPod.xml profile appears to work, but I still get no video playback in Quicktime (which makes me think it's not gonna work on an actual iPod either, though I don't have one available to test right this second).
Anyone have any further ideas? I've searched for the past two hours around the forums but haven't come up with much...
buzzqw
15th February 2007, 18:14
i have an idea of what search around... but i first MUST (and i dislike) install quicktime player :(
BHH
glynor
15th February 2007, 18:56
i have an idea of what search around... but i first MUST (and i dislike) install quicktime player :(
Can't say I blame you there!
My office is about 70% mac users, so I don't have much choice to support them. I like Quicktime on the Mac honestly, but for Windows I certainly prefer the alternative...
Shark_jlc
16th February 2007, 04:41
I already had DVDFab Decrypter installed, so I grabbed the AutoMKV build that did not have it.
When I run AutoMKV, it appears to not detect my installation of DVDFab Decrypter and DGIndex just kinda... sits there.
Also, a clean way to cancel an encode would be nice.
Thanks for the tool!
dlflannery
16th February 2007, 05:07
I've tested all three 2-pass Zune profiles. No problems were seen. Peak bitrates reported by mediaInfo are 736kbps for WMV7 and WMV8 and 1.5 Mbps for WMV9. All files synched without re-encoding to my Zune device and played fine. It may have been my imagination but I actually thought I could detect the slight quality differences.
I happened to find a strange problem. Just before one encoding I was curious about what resizers were available so I pulled down the Resize Filter menu. I didn't change the filter from the Simple Resize that is normally there. However the encoding called the WMCmd script twice. The first time was very short, then the second time produced the output file which was OK. Here is part of the log file:
22:43:03 Autoresize CMD: cscript.exe "C:\AutoMKV074\exe\encoder\WMCmd.vbs" -input "C:\Video\ForZune\temp\resmovie.avs" -output "C:\Video\ForZune\temp\resmovie.wmv" -v_codec WMV7 -v_mode 2 -v_quality 85 -s_config "C:\Video\ForZune\temp\wmv_crb" -v_bframedist 1 -v_dquantoption 2 -v_lookahead 0 -v_mbmodecost 0 -v_mmatch 0 -v_mslevel 1 -v_msrange 0 -v_mvcoding 1 -v_mvcost 0 -v_peakbitrate 736000 -v_bdeltaqp 1 -a_codec WMASTD -a_mode 0 -title "Bf2passQktest" -year 2007 -copyright "Done with AutoMKV! 0.74e" -a_setting 64_44_2
22:43:24 Tested total movie: 5%
22:43:24 AutoResize movie size: 392706 bytes
22:43:24 Movie Width suggested: 51136 value based on sample size (14527.27% of original width)
22:43:24 WMV CMD: cscript.exe "C:\AutoMKV074\exe\encoder\WMCmd.vbs" -input "C:\Video\ForZune\temp\movie.avs" -output "C:\Video\ForZune\temp\movie.wmv" -v_codec WMV7 -v_mode 4 -v_bitrate 512000 -s_config "C:\Video\ForZune\temp\wmv_crb" -v_bframedist 1 -v_dquantoption 2 -v_lookahead 0 -v_mbmodecost 0 -v_mmatch 0 -v_mslevel 1 -v_msrange 0 -v_mvcoding 1 -v_mvcost 0 -v_peakbitrate 736000 -v_bdeltaqp 1 -a_codec WMASTD -a_mode 0 -title "Bf2passQktest" -year 2007 -copyright "Done with AutoMKV! 0.74e" -a_setting 64_44_2
22:45:13 Final Muxed size: 10646474 bytes
Only after pulling down the resizer choices (not changing) is the first call to WMCmd.vbs made. (???)
cosmos
16th February 2007, 08:34
I already had DVDFab Decrypter installed, so I grabbed the AutoMKV build that did not have it.
When I run AutoMKV, it appears to not detect my installation of DVDFab Decrypter and DGIndex just kinda... sits there.
Doesn't work that way actually: the no-fab version of AutoMKV is not for those who have fab installed, but rather for those who due to legal constraints would be in violation of local law if fab was downloaded... Plus AutoMKV needs a specific version of fab decrypter, one which understands command line switches.
Bottomline: just download the "full" version (and do make sure that in your first rip with the automkv's embedded fab you answer "no" to the "fab updated version found; update?" prompt)
buzzqw
16th February 2007, 08:54
@cosmos
thanks, good answer!
thanks ! (wow... someone can answer at automkv questions... and it isn't me !!! )
@dlflannery
automkv will dinamically parse value in its box... so it will wait till a choice is made (even if encoding is started)
BHH
buzzqw
16th February 2007, 11:42
@glynor
.... something strange is around..
i have done some test (Quicktime profile and no "hack" at all):
with PAL material: ok audio and ok video
with FILM material: after TIVTC (so 23.9xx framerate) it is OK video and audio
with quicktime player 7.1.3.100 (for windows)
link to a playable (for me...) mp4 (http://www.64k.it/andres/data/q/test_quicktime.zip) done with automkv
:confused:
BHH
cosmos
16th February 2007, 11:49
@cosmos
thanks, good answer!
thanks ! (wow... someone can answer at automkv questions... and it isn't me !!! )
You have thrown so much effort into maintaining AutoMKV and answering questions around, that I really feel I have to return something as well :) :helpful: Just our appreciation for all the work you've done for a great piece of software :)
SeeMoreDigital
16th February 2007, 12:35
Hi glynor,
If you want MPEG-4 AVC encodes to be QuickTime player 7 compatible, you will have to edit the "CE-QuickTime.xml" file. You need to change the default number of B-frames from "1" to "0". And only encode using "2Ch" AAC audio.
QT7 will then be able to save the .MP4 file to .MOV ;)
Please note: This is not an issue with AutoMKV... it's been around for a year or so.
Cheers
dlflannery
16th February 2007, 14:47
@dlflannery
automkv will dinamically parse value in its box... so it will wait till a choice is made (even if encoding is started)
BHH
The encoding is set up identically in two cases but in one case the extra run of WMCmd.vbs occurs. The only difference was in one case I pulled down the Resize Filter menu to look at the choices but did not change the filter choice from what it already was. This was done before starting encoding. This does not seem logical to me. What is the first short run doing?
buzzqw
16th February 2007, 14:51
the extra run could be due to AUTORESIZE, if you leave width=AUTO , automkv will try to define the better width (and so more wvm to run)
BHH
dlflannery
16th February 2007, 15:04
the extra run could be due to AUTORESIZE, if you leave width=AUTO , automkv will try to define the better width (and so more wvm to run)
BHH
Ah....! That is it! I didn't notice before but when I "touch" the Resize Filters pull down menu, the width gets changed from 320 to automatic. Thanks BHH! :thanks:
glynor
16th February 2007, 16:08
@glynor
.... something strange is around..
i have done some test (Quicktime profile and no "hack" at all):
with PAL material: ok audio and ok video
with FILM material: after TIVTC (so 23.9xx framerate) it is OK video and audio
with quicktime player 7.1.3.100 (for windows)
Well I'm confused as well... :confused:
That file you posted plays just fine for me in Quickcraptime Player as well! However, I did my best to reproduce those settings exactly, except for the framerate of the source footage and no joy (it won't play the video). Here's two example files, neither of which play in QT for me. One was done with no hacks at all (no AssumeFPS and no hack to the Quicktime profile to turn off B-frames), and the other was done with both. Combinations of the two (with the B-Frames hack but no AssumeFPS and vice versa) makes no difference....
Wait, wait wait....
:stupid:
While I was finishing making those example files up (and after I had typed the above), I noticed that this entire time, I'd been using the eqm_avc_hr.cfg custom matrix. I set that a long while ago and basically forgot it was even there (I mean I knew it was there, but it never dawned on me that it would matter)... Your example was identical to mine in pretty much every way other than the framerate and the custom matrix. When I disabled the custom matrix, the QT Player could play the resulting files just fine, with no hacks required.
Sorry!!! And thanks so much for the help! I wouldn't have figured it out without the example file to compare side by side...
That change fixed the issue with playback and both the CE-Quicktime.xml profile and the PD-iPod.xml profile. The PD-iPod 5.5G.xml profile still crashes x264 though, so that's still unusable and is something else... (But, frankly, who cares if the vanilla iPod profile works.)
buzzqw
16th February 2007, 16:30
no bframes wasn't an issue ? good... no need to change the profile :)
and now i will do some testing on ipod profiles!
thanks glynor ! :))
BHH
EDIT: fixed ipod 5.5 error... simply change <level>7<level> to <level>3<level> :D
glynor
16th February 2007, 16:35
no bframes wasn't an issue ? good... no need to change the profile :)
Nope. B-Frames were not the issue. Working fine with the existing profile.
Thanks again! I'm very pleased!
EDIT: You have no idea how much time this has just saved me in my everyday work. AutoMKV on my Core2 Duo windows machine absolutely stomps on my PowerMac G5 Quad with Apple Compressor in encoding time. Plus, I think the quality is a better to boot!! All I have to do now is export my projects out of Final Cut Pro to DV AVI files, and I can use AutoMKV to do the heavy-lifting MPEG-4 compression!
buzzqw
16th February 2007, 20:29
@glynor
i am happy with you !
BUT first of all i must thanks all the developers of the astonishing programs/filters Automkv use , without these people Automkv will be less then nothing :mykudos:
BHH
jeffy
16th February 2007, 21:03
@jeffy and @travisbell
ops... got it !
was due to the modify of "no pop-up" for bbsummary , previusly i will check the first 10000 frames... now, erroneusly check all frames...
fixed ! www.64k.it/andres/data/a/AutoMKV074e.exe
thanks !!
BHH
:thanks: for fixing. I apologize for thanking you so late.
Shark_jlc
16th February 2007, 23:37
Doesn't work that way actually: the no-fab version of AutoMKV is not for those who have fab installed, but rather for those who due to legal constraints would be in violation of local law if fab was downloaded... Plus AutoMKV needs a specific version of fab decrypter, one which understands command line switches.
Bottomline: just download the "full" version (and do make sure that in your first rip with the automkv's embedded fab you answer "no" to the "fab updated version found; update?" prompt)
I did figure this out after reading through the last 10 or so pages of this thread.
However, it's unfortunate that that is how AutoMKV works with DVDFab Decrypter, because that version does not correctly work with the movies I am trying to rip.
At least, that is my guess after getting a 7 Kb wmv file for a 2+ hour disney movie
:/
jeffy
16th February 2007, 23:47
I did figure this out after reading through the last 10 or so pages of this thread.
However, it's unfortunate that that is how AutoMKV works with DVDFab Decrypter, because that version does not correctly work with the movies I am trying to rip.
At least, that is my guess after getting a 7 Kb wmv file for a 2+ hour disney movie
:/
Suggestion:
Do you have WMV codecs installed (try another non-DVD file...)?
And convert to WMV.
DDogg
17th February 2007, 01:11
I did figure this out after reading through the last 10 or so pages of this thread.
However, it's unfortunate that that is how AutoMKV works with DVDFab Decrypter, because that version does not correctly work with the movies I am trying to rip.
At least, that is my guess after getting a 7 Kb wmv file for a 2+ hour disney movie
:/Take a few minutes and learn to use a program called RipIt4Me for these problematic titles, or use the version of DVDFab Decrypter you like. Use AutoMkV on the resulting ripped files.
Shark_jlc
17th February 2007, 02:55
Take a few minutes and learn to use a program called RipIt4Me for these problematic titles, or use the version of DVDFab Decrypter you like. Use AutoMkV on the resulting ripped files.
I've tried all of this, and will be starting a seperate thread for my issues so as not to continue bogging down this one.
Thanks all.
TheRyuu
17th February 2007, 04:58
Is there some list of what all the abbreviations mean?
Like on all of the X264 codec xml scripts.
What does the AE (Anime?) mean, CE, HQ (high quality?)
Also, two situations, what would be the best setup/filters.
Anime episode/movie.
And regular movie.
I've been using No resize (to keep it at 720x480 since thats what I want). And the Convolution3d (preset="animeBQ") (best quality?) for animes and Convolution3d (preset="movieHQ") for movies.
(if I resized it I would use Lanczos4Resize)
And for a custom matrix I've been using Sharktooth's EQM v3ULR.cqm with Xvid Extra Slow (default) and with X264 I've been using M4G_High_Detail_V3.1.cfg.
Any suggestions (and what some of the abbreviations mean...)? Thanks.
Great program BTW. Love it.
buzzqw
17th February 2007, 15:12
Like on all of the X264 codec xml scripts.
What does the AE (Anime?) mean, CE, HQ (high quality?)
ok, now i am working an manual... also in next full update all x264 preset got renamed.. (i hope at end of next week)
I've been using No resize (to keep it at 720x480 since thats what I want). And the Convolution3d (preset="animeBQ") (best quality?) for animes and Convolution3d (preset="movieHQ") for movies.
conservative and good filter, for already clean anime/film (used to gain a little bit of compressibility)
And for a custom matrix I've been using Sharktooth's EQM v3ULR.cqm with Xvid Extra Slow (default) and with X264 I've been using M4G_High_Detail_V3.1.cfg.
Attention... Attention Ultra LOW Rate is for bitrate very low less then 500kbs is it your case ?
@ALL
ok, i had found the way to run all script minimized, without any (or very few) prompt that steal window... BUT... what is the lose ?
i cannot guarantee that "prepare only phase" will fuction again, also i will use vbs script (as an old suggestion of glynor) and some nasty and bad antivirus (namely Norton) can intercept those files as virus... :p
Again: wcscript SHOULD be present in all win2k and MUST be in winXP but i cannot bet on it...
please tell me your opinion
to test if wcscript is installed download this file http://www.64k.it/andres/data/a/test.vbs and launch it (i can guarantee that is SAFE to run)
EDIT: or create a new test.vbs and paste this Wscript.echo "AutoMKV Test"
BHH
SeeMoreDigital
17th February 2007, 15:34
Hi Buzz,
I've been meaning to ask you. When generating MP4 files with AAC audio and MPEG-4 video, is there any particular reason why the AAC ADTS audio stream is muxed into the MP4 container twice container?
The first time as an AAC "audio only" in MP4 stream. And the second time as the finished/completed .MP4 file with video.
PS: I was bored the other day so I designed some tweeks to the GUI... I'll PM them to you ;)
buzzqw
17th February 2007, 17:04
@SMD
well.. and old story... since mkvmerge dislike aac audio i mux the CCT AAC audio file in MP4 , so this MP4 files could be muxed without hassle into mp4 or mkv
about gui.. feel free to post ! thanks!
BHH
TheRyuu
17th February 2007, 17:16
Attention... Attention Ultra LOW Rate is for bitrate very low less then 500kbs is it your case ?
BHH
No. Thanks for letting me know what it was though.
Is there a good all around custom matrix?
And before I even start the encode, how am I suppose to know the bitrate since doesn't AutoMKV automatically select a bitrate?
Also what would be a good HQ custom matrix?
SeeMoreDigital
17th February 2007, 18:33
@SMD
well.. and old story... since mkvmerge dislike aac audio i mux the CCT AAC audio file in MP4 , so this MP4 files could be muxed without hassle into mp4 or mkvThanks for confirming... I suspected it might have had something to do with MKV muxing...
By-the-way, when generating AAC-HE streams have you considered configuring MP4Box to add the "sbr" CLI tag during .MP4 muxing?
dlflannery
17th February 2007, 20:39
I captured some movies (30 fps) from a Canon SD450 digital camera. They are .avi and contain 640x480 mjpeg video and pcm audio, single channel (mono) at 88 kbps with 11 kbps sampling rate.
I have tried various combinations of inputting either the .avi or a .avs using directShowSource or AVISource, and either checking or not checking "Use Direct Show" in AutoMKV. The only way that works is if I load the .avi and check prepare only.
Then I modify the movie.avs file by adding the line shown in bold here:
audio=EnsureVBRMP3Sync(audio)
audio = MergeChannels(audio,audio)
audio=ConvertAudioToFloat(audio)
audio=getchannel(audio,1,2)
audiodub(audio,last)
Then if I run movie_wmv.bat I get a good result. This is for the Zune profiles (the new ones you PM'ed me).
I think the mono sound is the problem. The WME encoder determines a file length only about 30% of the true length (unless the extra line is added to movie.avs).
Unfortunately I don't see how to fix this by adding a last line to movie.avs. If you run the original movie.avs in WMP you get the error message that it tried to get a non-existing channel, which I assume comes from the line:
audio=getchannel(audio,1,2)
which fails with mono audio (?).
Is there any way to handle this without doing prepare only, and editing the movie.avs file?
buzzqw
17th February 2007, 21:03
@wizboy11
first try without matrix... the go with didee 6of9
@SMD
good hint... i will look at this
@dlflannery
ehh... www.64k.it/andres/data/a/AutoMKV074e.exe
look at audio channel.. :)
BHH
Schotenhüter
17th February 2007, 22:47
changelog?
dlflannery
17th February 2007, 23:13
@dlflannery
ehh... www.64k.it/andres/data/a/AutoMKV074e.exe
look at audio channel.. :)
BHH
Aha! Mono selection for WMV audio! Works great!
I thank you "mono a mono" :rolleyes:
I assume that was a test version -- it had some quirks:
1. If I tried to adjust the audio bitrate the mono reverted to stereo and could not be set to mono again.
2. A message box appeared twice on program startup asking if I wanted fixed or unlimited size. (I chose unlimited.)
3. I queued 4 mono conversions and it locked up during, or just after, encoding the first one. The behavior in terms of time and files created was as if the mono was not in effect.
TheRyuu
18th February 2007, 02:48
@wizboy11
first try without matrix... the go with didee 6of9
BHH
ok thanks.
BTW, the new .74 version (opposed to .72) fixed a problem I had with pulling out multiple audio streams.
IMHO, this is the best encoder gui EVA.
Edit: Got a problem
I seem to be stuck in an endless cycle of it saying "Hit media size" or "go unlimited". Whether I try to change the profile or the format or the container or the size. It just gets stuck.
Dreddlox
18th February 2007, 04:21
I only just found this program through quite a bit of searching and I am so far VERY happy with the functionality it provides. :D
I also have the "Hit media size" or "go unlimited" problem. It only occurs with some x264 profiles afaik, primarily with the default CQ_Lossless.xml. Deleting this file or changing to another profile via ini editing or using an old version resolves this.
edit: I am using ver 074e. version 074 also has the "Hit media size" or "go unlimited" problem but it doesn't prevent profile change, whereas 074e makes it impossible to change profile away from lossless
Now a few feature requests, small ones that I would ordinarily fix myself were it open source:
Would it be possible to divide the Basic Settings page into a Main Page(where input,output,dvd sense and the start/enqueue buttons are) and leave the rest on Basic Settings? I personally am using this to give my parents the ability to rip their DVDs, so a touch more simplicity would be nice.
Also, could the DVD ripping side be enhanced in these ways:
Save which DVD drive is chosen when program closes
Have an Auto-DVD detect on startup option
Have an option to take the output file name from the DVD's disc title (Even though they are ugly like 'CLOCKWORK_ORANGE_4X3MTD_NA')
If you could make these changes, this program would be perfect for what I will use it for. Thanks for everything you've done so far. I haven't encoded anything yet but am already loving AutoMKV!
dlflannery
18th February 2007, 15:13
ok, now i am working an manual... also in next full update all x264 preset got renamed.. (i hope at end of next week)
conservative and good filter, for already clean anime/film (used to gain a little bit of compressibility)
Attention... Attention Ultra LOW Rate is for bitrate very low less then 500kbs is it your case ?
@ALL
ok, i had found the way to run all script minimized, without any (or very few) prompt that steal window... BUT... what is the lose ?
i cannot guarantee that "prepare only phase" will fuction again, also i will use vbs script (as an old suggestion of glynor) and some nasty and bad antivirus (namely Norton) can intercept those files as virus... :p
Again: wcscript SHOULD be present in all win2k and MUST be in winXP but i cannot bet on it...
please tell me your opinion
BHH
I like being able to watch the batch files run in the command windows for debugging purposes. I understand that if the program is more "automatic" you would want to hide this. Is there any way to allow the user to have a choice?
buzzqw
18th February 2007, 16:17
update: 0.75 www.64k.it/andres/data/a/AutoMKV075.rar
this is an interim build to a full new package
please delete the profile directory, this package will contain the new x264 and wmv (and all xvid) profiles and matrix.
changelog
ADDED: Two new Zune Profiles, based on wmv9 encoding (suggestion by dlflannery)
ADDED: Mode 4 for WMV endoing (2 pass peak bitrate)
ADDED: Support for Audio encoding (only audio files, like audio.ac3 to audio.ogg)
ADDED: Mono to WMV audio channels (suggestion by dlflannery)
FIXED: When muxing in AVI, AutoMKV will force MP3 CBR muxing if CBR is selected on Advanced Audio Setting
FIXED: Some tuning in log files
FIXED: Several bugs on Zune Profiles. A big thanks to dlflannery for his tests
FIXED: Ipod 5.5G profile
FIXED: Renamed all X264 profiles
FIXED: some weird behavior of x264 CRF profiles (thanks to Mike Farmwald)
FIXED: Some new layout on gui, as ALWAYS a big thanks to SeeMoreDigital
FIXED: Renamed all x264 profiles
i added a hidden features (don't go crazy searching isn't visible)
if anyone don't report any problem on audio encoding i will be adopt this behavior to all running process
BHH
P.S. the builds i put on forum BUT not in first page are considered alpha/beta release, so don't worry about errors... :)
Barleyman
18th February 2007, 18:27
Buzz, I gotta teach you how to hint better like, "Damn, guys, I am just busting my backside for months, everyday, making AutoMKV solid and dependable for you ... can't a few of you help work on a freaking manual ???" :)
Actually, I wish I understood the Wiki thing as that would be a good place to do something where different folks could add on and expand.
Is a Wikimaster out there ... anybody?
I was actually talking about the very thing a while ago with one linux-head. About setting up wiki to make a manual for AutoMKV.. Predictably it's "so easy" it requires "no effort". Assuming you know how to set up fully functioning linux server box that's not going to be hacked right away.. Linux distros apparently come with wiki "built in" .. That also requires you have access to a box that's online 24/7 :rolleyes:
No doubt you could find someone to host the wiki but I have no idea where to ask for such. I don't think linux guys will check page 53 of WINDOWS mpeg4-gui thread anytime soon!
It would be possible to just write the darn thing as a forum thread of course, like someone did with the Zune-encoding. The problem with that is that the thread starter has to do all the edits even if other guys put in new text / comments..
I could possibly write xvid avi/mkv anamorphic CQ encoding guide myself assuming things have not changed too much.. And it looked like there was some new stuff such as automatrix etc..
..
And a suggestion Buzzqw - How about you include "changelog.txt" with the interim builds too? Now it only comes with full builds?
Barleyman
18th February 2007, 18:33
Hmh. After grand total of 20 seconds with google, I found this: http://wikihost.org/
Apparently they take the back end out of your hand for free gratis..
buzzqw
18th February 2007, 19:00
@Barleyman
never owned a wiki or used ... just read it
but thanks.. i will look tomorrow :)
i hope in few days to finish the "simple manual" aka a big pictures of all fuctions
i will be glady to help someone to write the wiki... i could do myself... yes.. i will do mysel (but everyone should add something...) but with my spare time :( that i usually give to code AutomMKV...
I think that wiki could be a long (in time) but absolute necessary project.
I will register on these site and invite everyone to contribute :)
BHH
Barleyman
18th February 2007, 21:02
So 1st try since .66 - Anamorphic XVID/AVI with CQ, Q=3, lame VBR6, resize none, filter none. I left the "custom matrix" to "auto" since I didn't know what else to do about it..
It looks like "auto" will always pick "Sharktooth's EQM v3LR.cqm"-matrix?
buzzqw
18th February 2007, 22:44
ok... you are doing a CQ encoding... well.. since is a CQ you are not use the Autoresize... and since not using autoresize the automatrix will trigger the base matrix...
automatrix will switch matrix based on autoresize, on cq encoding is impossible to set correctly...
i hope to be understud :)
BHH
dlflannery
19th February 2007, 01:26
I tested with four .avi (mjpeg + mono-pcm) using Zune quick one pass profile.
Everything looks good! :thanks:
However a problem occurred when I queued three of the files. Start Queue encoded all three files OK but when it was done the queue list still showed the middle file (1.ini) on the queue list. So I clicked the Start Queue button again just to see what would happen. It did not appear to do anything but it added the following to AutoMKV Log tab:
19:11:55 0.75 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
19:11:55 Selected Input file:
19:11:55 Selected Output dir: temp\
19:11:55 Selected Final Name: movie
19:11:55 Selected Container type: MKV
19:11:55 Selected Encoder: X264
19:11:55 Selected Size:
19:11:55 Selected Slice: 1
19:11:55 Selected Profile: ConstantQuality-QP.xml
19:11:55 Selected Width: Automatic
19:11:55 Selected Resizer: FastBilinearResize (neutral fast)
19:11:55 Selected Filters: RemoveGrain(mode=2)
19:11:55 Selected Deinterlacer: AUTO
19:11:55 Selected Field Order: AUTO
19:11:55 Track Language 1: NONE
19:11:55 Audio Codec 1: Nero AAC
19:11:55 Audio Quality 1: 0.35
19:11:55 Audio Channel 1: Stereo
19:11:55 Advanced Audio Settings DUMP Track 1
19:11:55 Nero Option Profiles: AUTO --- Encoding Mode: Quality
19:11:55 CCT Option Profiles: AUTO --- Channel Options: AUTO
19:11:55 Lame Settings: ABR
19:11:55 Audio Normalization: 1
19:11:55 Frequency: AUTO --- Tempo : NONE
19:11:55 Pitch: NONE --- Other Add :
19:11:55 Advanced Audio Settings DUMP Track 2
19:11:55 Nero Option Profiles: AUTO --- Encoding Mode: Quality
19:11:55 CCT Option Profiles: AUTO --- Channel Options: AUTO
19:11:55 Lame Settings: ABR
19:11:55 Audio Normalization: 1
19:11:55 Frequency: AUTO --- Tempo : NONE
19:11:55 Pitch: NONE --- Other Add :
19:11:55
19:11:55 Dgindex CMD: C:\AutoMKV075\exe\dgindex\dgindex.exe -FO=0 -OM=0 -YR=2 -If=[] -OF=[temp\movie] -exit -minimize
After this the queue list still contained the same item and the Start Queue button was still enabled.
Huerta
19th February 2007, 09:06
I keep getting this error when I try to encode something in Xvid.
"The application failed to initialize properly (0xc0150002). Click on OK to terminate the application."
Heres the pic of the error - http://i80.photobucket.com/albums/j190/b3rwyn/ddddddfasdfsaf.jpg
I have the Microsoft .NET Framework 1.1 installed. And the latest version of AVISynth but it's not working.
This also happens with MeGUI's xvid_encraw.exe.
Does anyone know how to fix it.
buzzqw
19th February 2007, 09:18
try updating the xvid_encraw build http://members.optusnet.com.au/squid_80/xvid_encraw.zip
also, what are your pc specs ? (cpu,ram, S.O.)
i suppose is AMD ~ 1800XP (or this family) ?
BHH
Barleyman
19th February 2007, 10:04
ok... you are doing a CQ encoding... well.. since is a CQ you are not use the Autoresize... and since not using autoresize the automatrix will trigger the base matrix...
automatrix will switch matrix based on autoresize, on cq encoding is impossible to set correctly...
Well all right. Matrixes, filters and profiles would probably be a good starting point for the documentation project. I have pretty vague ideas of what the matrixes do at all. Filters I'm more familiar with.
At least for the filters there was SOME documentation in earlier versions (dropped now?), for matrixes there is none AFAIK..
Barleyman
19th February 2007, 19:43
Speaking of filters in fact.. What would be good combination for dealing with those series that have noise added for extra "documentary"-feeling? You know, SHIELD, band of brothers, Oz ..
They tend to make something like 33-50% bigger file as I suspect the xvid encoding struggles with the "artistic" noise.
buzzqw
19th February 2007, 19:58
the key is GRAIN, try with degrainmedian
after the first encoding with default value start tuning the value.
another approach could be tryed with the deen or fluxsmooth
BHH
P.S. and at half of manual.. i hope if few day to complete (again isn't a full tutorial just an introduction)
Huerta
19th February 2007, 23:18
I updated it and still get the error.
My computer specs.
Dell Dimension 2400 Desktop (Got it with my Ford Focus)
MS Windows XP SP2
Intel Pentium 4 CPU 2.80GHz
256MB Ram
Intel 82845G/GL/GE/PE/GV Graphics Controller
70.9 GB Hardrive with 18 gigs of Free Space
If you need to know more just tell me.
Barleyman
20th February 2007, 00:05
Okay, I found a problem :sly:
South park again. Looks like .75 can recognize OK now it's interlaced. However I do get visible flickering deinterlace artifacts here and there.
Plus for some reason the encoding is slooooooooow.. 96 min to encode 22min cartoon on Athlon X64@2500MHz? I get whopping 6.5fps from xvid. Usually on this rig it's around 25..
Here's the logfile (http://personal.inet.fi/koti/ohramies/2007/Törkytorstai So .0.mpg.log)
If you want a cut of the mpg-file, how big it should be?
buzzqw
20th February 2007, 08:23
i am unable to download the file
got a message
Valitettavasti hakemaasi sivua ei löydy.
Tarkista osoitteen oikeinkirjoitus.
Copyright TeliaSonera 2005.
Sonera on TeliaSonera Finland Oyj:n rekisteröimä tavaramerkki.
:confused:
BHH
Barleyman
20th February 2007, 12:14
Hrmph. Tricky spaces and accented chars.
Try this: http://personal.inet.fi/koti/ohramies/2007/T%F6rkytorstai%20So%20.0.mpg.log
buzzqw
20th February 2007, 13:18
here the manual !!!
http://www.wikihost.org/wikis/automkv/programm/gebo.prg?name=start
i have no idea how to handle a wiki, i need some serius adimistrator :help: :help: :scared:
BHH
EDIT: @Barleyman
look here
22:22:27 Processing completed. Type is determined to be interlaced.
22:22:27 BFF: 42
22:22:27 TFF: 153
22:22:27 Order: var
the main problem is the 22:22:27 Order: var
in this case since the order isn't sure (var=variable) automkv will switch to an high quality deint procedure. And so is slow.
try forcing Interlaced TFF
daftperception
20th February 2007, 15:19
Hi I've been lurking around this post trying to make automkv into my default zune converter but I have two problems trust me I have searched. When I convert any surround sound movie it seems like it’s just picking any two channels and throwing them in there instead of turning them into stereo. Another problem is when I start encoding sometimes it fails to get the duration also the queue process is tedious and doesn't work for me atleast. Thanks for this tool your doing a great job.
edit:thanks
buzzqw
20th February 2007, 15:53
when encoding to zune and audio is multichannel choose STEREO downmixing, not original. In this way the audio will be properly downmixed
Another problem is when I start encoding sometimes it fails to get the duration
this is due to wmencoder... not to automkv, please install ffdshow (one way to determine video lenght is also looking at audio lenght :) )
queue process is tedious and doesn't work for me atleast
tedius ? i must admit the queue fuctions isn't my preferred code.. but.. tedius ?
BHH
Huerta
20th February 2007, 16:22
So can anyone help me with my problem.
buzzqw
20th February 2007, 16:44
@Huerta
download this http://tirnanog.fate.jp/mirror/XviD/xvid_encraw.7z
uncompress into \exe\encoder
the retry encoding utilizing only CQ encoding or SAP or Slow profiles.
for full compatibility with celtic_druid build open the xvid xml profiles and find <altpass2> and change to <altpass2>false</altpass2>
BUT not use CQ encoding AND HIT MEDIA SIZE (is ok to select CQ and Unlimited size)
sorry... i will ping squid_80...
BHH
glynor
20th February 2007, 18:24
This may be an incredibly stupid question, but in the Audio Track selection panes, there are three choices under the "Number of Channels combo box" that I'm not 100% clear on...
- Original
- DLP
- DLP II
I'm assuming that original copies over the original number of and encoding of the channels. However, if I have "Copy Original" selected as my chosen "codec", is it still necessary to choose "original" for the number of channels? If not, it would perhaps be better to grey out the combo box when Copy Original is selected (and if so, make it automatic when you choose Copy Original as the codec), and the same goes for the Quality slider (which is obviously ignored). Likewise, what happens if you choose "Original" as the "channel selection" and you have the codec set to LAME or NeroAAC?
DLP and DLP II. Is this Dolby Pro Logic 1/2? I assume it is, but since it's DLP not DPL, I'm a bit ambiguous. This could be a language translation thing (I know English cares a lot more about word position than many other languages), but in acronyms it's pretty important. Assuming it is, I also have a question about how it works... I assume if I select a 6-channel AC3 track as my input source and chose DLP II and NeroAAC as the codec then it will encode the "surround sound" data using the Pro Logic method. What are the limitations of this though? Does it work with all the codecs you can choose (LAME/WMV/OGG/etc)?
Is there any good place where I can go to look up additional info on this stuff?
buzzqw
20th February 2007, 20:16
if you select Copy Original there is no need to select any downmixing routines, since will be completely ignored.
DLP and DLP II
yes, is Dolby Pro Logic I and II , and yes, is a TYPO
all audio within automkv could accept dpl 1/2 since is the DECODER to expand/reconstruct the channels
i can suggest a search on hydrogenaudio or here in the audio forum.
BHH
P.S. as you know my language isn't english, even more i have learnd english most on IT books and by studing/playing RolePlayingGames... so more then mistake are to happen :)
gekan
20th February 2007, 20:19
the link to the manual on the first page is wrong. The link at the 1060th message is the correct one. :)
Thanks for the manual!
Barleyman
20th February 2007, 22:34
i have no idea how to handle a wiki, i need some serius adimistrator :help: :help: :scared:
Don't Panic!
No, I have no idea how to use wiki either but I'm usually pretty good with things you can do while having a beer..
It took me a minute to figure out where their help-page (well, wiki) is, http://wiki.wikihost.org/
Got to say at least the editor is pretty hostile. Can't upload images, make links..
Barleyman
20th February 2007, 23:38
I looked around a bit, looks like wikihost is not a very good choice compared with some others.. http://en.wikibooks.org/wiki/Wiki_Science:How_to_start_a_Wiki
http://en.wikipedia.org/wiki/Comparison_of_wiki_farms
There are some free ones with decent editor etc. Wikihost was just 1st one in google! Definitely their software is a mess compared to something like that: http://www.wetpaint.com/
(I think that one may be "bit" over the top for modest manual project. Good for making tv-series homepage, thought :rolleyes:)
Barleyman
21st February 2007, 01:10
I think it may be best to use the most common one, that is mediawiki. Wikipedia uses it and there's plenty of documentation for it: http://meta.wikimedia.org/wiki/Help:Contents http://en.wikipedia.org/wiki/Help:Contents/Editing_Wikipedia
One place that offers free hosting is http://www.wiki-site.com/
I'm bit sceptical about this "free hosting" as such, so at least with mediawiki your doc backup will work on other sites..
buzzqw
21st February 2007, 11:55
thanks again Barleyman
set-up a new wiki
http://automkv.wiki-site.com/index.php/Main_Page
BHH
glynor
21st February 2007, 16:51
There's a couple of things I've noticed with a recent DVD recode (episodes of Lost) I've been working on...
1. AutoMKV doesn't let me select my Daemon Tools provided virtual drive as the source drive. It just isn't in the drop down list at all, as if it thinks it's a hard drive.
2. My souce IFOs have a single 6 channel AC3 audio track. I'd like to include this track (as "original") in the MKV files I'm creating, and include a second track of the same audio track compressed to stereo AAC (for computers not set up for 5.1 channel sound or not set up to decode AC3). This doesn't work though. The second audio encode fails (giving the -1 size and the error message).
3. I'm having trouble with the video encoding as well, but I haven't had time to fully investigate this. I have had a number of my test encodes fail on my rip (ripped using DVD Decrypter in IFO mode to rip each episode individually) with the -1 final size. I'm using x264 and MKV, Highprofile, and no matrix. The encode works when using x264, Highprofile, and MP4 with simple audio, but I've been having it fail with the AC3 audio. Like I said, I haven't fully investigated this (since the encode process takes so long).
When I get home from work this evening (I'm in the US) I'll post some logs and look at #3 a bit more...
glynor
21st February 2007, 16:56
if you select Copy Original there is no
yes, is Dolby Pro Logic I and II , and yes, is a TYPO
P.S. as you know my language isn't english, even more i have learnd english most on IT books and by studing/playing RolePlayingGames... so more then mistake are to happen :)
I understand completely. I suspected that it was just a typo, but since I am by-no-means an audio engineer I figured it could also be some other newfangled thing I wasn't aware of!
And, frankly, your English is quite good, considering! Way better than my Italian!
i can suggest a search on hydrogenaudio or here in the audio forum.
Shoulda known better than to ask! I'll just have to get off my lazy ass and look that stuff up someday... :p
Shark_jlc
21st February 2007, 17:28
I've gone a little nuts on the wiki page. Hopefully it helps get people started cleaning it up a bit.
Edit: Ok, I'm done editing for the day. Have fun with it!
whiskey
21st February 2007, 17:58
Just wondering... whats the max file size support ? Since I tried today re-encode AVI 3.90 GB to MKV 1 DVDR and soon after I hit the start button message pops out BREAK - FILE NOT SUPPORTED..., also box with media settings "Size vs. Unlimited" likes to pop again randomly while changing other settings in program.
buzzqw
21st February 2007, 20:19
1. AutoMKV doesn't let me select my Daemon Tools provided virtual drive as the source drive. It just isn't in the drop down list at all, as if it thinks it's a hard drive.
what drive letter is ?
do you mean the check dvd drive button ?
about 2': got it... i must look.. but wouldn't be easy
about 3': a log of failed encoding would be useful
@Shark_jlc
:thanks: !!! you have done an excellent work !!!
one more help (when you have time) on left panel "Navigation" is possible to add "Filter" and "Profiles" i (and i hope more and more people) would like to add some tips and hints how to use and understand
a big thanks again !
P.S. if you need some administrator password for the wiki, tell me !
@whiskey
whats the max file size support
virtually unlimited, depends on avisynth processes like avisource or directshowsource
BREAK - FILE NOT SUPPORTED.
this mean that neither avisource or directshowsource are able to handle the file.
Are you able to play this file in media player classic ? or can you open thise file in virtualdub ?
also box with media settings "Size vs. Unlimited" likes to pop again randomly
isn't randomly, it change only when switching form crf/cq profile to non quality profiles
BHH
Surlyrich
22nd February 2007, 01:14
I have started using automkv to convert my HDTV rips, and I must say this is a great little program. I am converting to x264 using videoredo to edit out commercials first. One problem I have run into however, is that most of my HDTV caps are in 50fps. I have not been able to find any option in automkv to change this to say 25fps. I am guessing this can be added in the command line window somehow, just not sure how to do it... Any feedback would be appreciated.
Shark_jlc
22nd February 2007, 03:36
Buzzqw, your welcome for the edits :) Thank you for Automkv, its the first tool I've used to successfully create a good wmv file.
In regards to the wiki, I shouldn't need admin rights to do anything, so we are good there.
To clarify a request, the Navigation menu on the left is a very generic thing for wiki's. I generally do NOT see links to pages there. Instead there is a main page, that you get to, and the pages branch out from there.
As a matter of fact I'm not sure if you should really have the "help" link in the navigation go to the AutoMKV page.
I have created a blank filters page and a blank profiles page, and added links from the general help page to these pages.
I'll dig around a little more and see what else I can do.
Edit: I've made a redirect so going to profile or profiles goes to the same page, same goes for filter and filters.
gonwk
22nd February 2007, 05:12
Hi Buzzqw,
I was all excited when I found "AutoMKV 0.74" to be used instead of AutoGK ... since YOUR program contains all software needed within it's OWN folder and it does not poll different folders AND can be installed without being in "Administrator" mode.
Here is my problem ... I was doing a Short MPEG1 clip (test clip) conversion from mpeg1 to AVI ... and I tried AutoMKV 0.74C, D, and E ... and they all flunked with the following messages ...
1) Audio Not Encoded Correctly. I said ignore ... then
2) AviMUX_GUI crashes and I see Microsoft Report Crash message.
Also, What is the DEAL with AutoMKV 0.74E when I launch it I get a Pop-up window saying "CRF" and "Hit Media Size" or "Unlimited" ... what is th edeal with this ... then blocks me from changing Container form MKV to AVI?
Could you shed any light on this?
Also, is there a "Printer-Friendly" or "PDF" Help File or Guide?
THANKS!
G!
dlflannery
22nd February 2007, 07:16
Hi Buzzqw,
.........
Here is my problem ... I was doing a Short MPEG1 clip (test clip) conversion from mpeg1 to AVI ... and I tried AutoMKV 0.74C, D, and E ... and they all flunked with the following messages ...
1) Audio Not Encoded Correctly. I said ignore ... then
2) AviMUX_GUI crashes and I see Microsoft Report Crash message.
.............
Is your source audio monaural? I got that message when a source had mono audio, when doing a Zune WMV encoding. Buzzqw quickly added a mono selection to the WMV audio track setup and that fixed it. Have you tried pulling down the audio selection menu item that probably now says "Stereo"?
If you don't have mediaInfo (http://www.videohelp.com/tools?tool=MediaInfo), I recommend it. It will quickly tell you the info on your videos. It integrates with Explorer so you can right click to run it on the selected file.
buzzqw
22nd February 2007, 08:37
@Surlyrich
on deinterlacer box WRITE changefps(25.00) (overwriting AUTO)
@Shark_jlc
thanks again !
i added link for audio troubleshooting...
@gonwk
the hints of dlflannery are correct (even if you are encoding to avi). AutoMKV don't know of many audiochannels has source files.
Try selecting on Downmixing "Mono"
@dlflannery
very good hint ! (feel free to add to wiki... :D)
BHH
Barleyman
22nd February 2007, 12:35
I edited the front page.. Feel free to change the feature list in case there's nonsense there :D
buzzqw
22nd February 2007, 13:52
@Barleyman
very good job ! i added some link and tweaked a little
thanks !
BHH
P.S. noboby have reported problem with audio encoding that NOT MORE POP-UP since i use vbs... i will include even deinterlacer and movielenght to no pop-up series... in next update
vgiozo
22nd February 2007, 19:22
First of all, I would like to congratulate buzzqw for his excellent work and the very good program his has offered the community...
I am very glad to have come across this...
I just started using the program and as a total newbie, I am particularly drawn by ease of use, feature integration and performance...
AutoMkv does very well, but there are some things that could make it great.
So, following my compliments I would like to mention some extra features that could be integrated in the program and make it - to my mind - the best one around...
1) it would be great if one could set the desired video bitrate and immediately see a size calculation...if it could, depended on bitrate / file size, yield a recommended resolution or the resolution calculated to be used, it would be even better.
2) A preview of the (auto)cropped movie and the ability to make on the fly adjustments. This could rarely be an issue, but the autocrop selection might not be always perfect (my experience is not AutoMkv based)
These are the features i would consider great to see in the future...
Also, I'm not sure if I've come across a couple of bugs or I did something wrong...
a) When I select "don't care about size", the x264 encoding profile defaults to CQ_ASP_Q2_eq(crf).xml and I cannot change it.
(the default profile in AutoMkv 0.75 is Encoding-Mainprofile...same thing happens)
b) I am more used selecting bitrate of audio encoding rather than quality and when I click the "three exclamation mark" button and select a -BR, or -CBR encoding mode for Nero Digital in advanced settings, it does not change, it reverts immediately back to "quality" mode, or it never changes at all.
In fact any change made there is immediately reverted, like eg normalize audio.
(same goes with the newer 0.75 version posted above)
Hope i have not bored you...a million thanks once more for your work,
Cheers.
buzzqw
22nd February 2007, 20:36
about point A fixed in next update, thanks for the bug !
it reverts immediately back to "quality" mode, or it never changes at all
isn't a bug.. is a visual misinterpretaion ...
every time you open the advenced audio setting the values inside were reset.
but automkv will remember the setting.
anyway in next update the bitrate (after selecting -cbr/-cb) will be display correctly
about point 1 and 2... automkv don't know visual aspect or duration of movie before launching the encoding... so will be difficult to know lenght or crop..however i got the point and added in todo list :)
thanks !
BHH
glynor
22nd February 2007, 21:01
Sorry I didn't reply earlier -- It's been a week I'd rather forget.
I still haven't gotten the logs of the failed encodes (sorry), but regarding AutoMKV not having my Daemon Tools virtual drive available:
It's Drive V. It doesn't show up in the combobox list of drive letters at all next to the Check DVD drive button, so I can't choose it.
Just so you know, I assigned the virtual drive to V: by selecting it in the "Disk Management" MMC and changing the drive letter. I don't think this should make any difference, but I thought I'd mention it...
buzzqw
22nd February 2007, 22:49
@glynor
fixed !
till 0.75 i will not enumerate all drive but only till j:
in next release i will enumerate all existing drivers (from a: to z: if presents)
BHH
vgiozo
23rd February 2007, 13:11
about point 1 and 2... automkv don't know visual aspect or duration of movie before launching the encoding... so will be difficult to know lenght or crop..however i got the point and added in todo list :)
thanks !
I initially got the idea from Nero Recode...when one loads a ripped dvd, the program runs a short analysis and then presents, tunes resolution based on bitrate, etc...
Is there a way for AutoMkv to do some sort of analysis like that? (maybe it could be optional)
..maybe I'm asking for too much...this feature wasn't even in AutoGK which I was previously using...
Also I would not want the orientation of the program to change...this is mostly an automated (but not feature and performance decreased) program...
...but sometimes even for those who value their time and don't want to overlook a program while running as well as for those who are newbies (like me) and are not in fact willing to know much about video encoding, the above mentioned feature could be useful...
When loading the IFO file, isn't the duration of the movie shown somewhere ? (it must be in the subtitles if I'm not mistaken, eg PGC 01:45:38)
Could the program read the duration from there?
I'm so NOT in the know about such things, so all of the above are based on mere empirical observations...
Anyway, thanks once again, congratulations for the effort...
buzzqw
23rd February 2007, 14:09
Is there a way for AutoMkv to do some sort of analysis like that? (maybe it could be optional)
this kind of analysis are performed when automkv starts.
I will index the movie, computing the lenght,width, framerate... then it will start a compression test to determine better width/height
When loading the IFO file, isn't the duration of the movie shown somewhere ? (it must be in the subtitles if I'm not mistaken, eg PGC 01:45:38)
yes, it is the movie lenght
Could the program read the duration from there?
yes again, but dvd as input is one of the many type of input file that AutoMKV can process
maybe in a next future i will include mediainfo... and then i will know the lenght of movie..
Anyway automkv prefer to have a size to hit then to specify the bitrate, however you can specify the bitrate or the quality to use
BHH
TheRyuu
23rd February 2007, 17:31
I keep getting an "audio wasn't encoded properly".
Log:
11:26:53 0.75 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
11:26:53 Selected Input file: C:\Ep1\VTS_03_0.IFO
11:26:53 Selected Output dir: C:\Ep1\temp\
11:26:53 Selected Final Name: EP_1
11:26:53 Selected Container type: MKV
11:26:53 Selected Encoder: XviD
11:26:53 Selected Size: 700
11:26:53 Selected Slice: 1
11:26:53 Selected Profile: XviD_Extra_Slow.xml
11:26:53 Selected Width: 720
11:26:53 Selected Resizer: Lanczos4Resize
11:26:53 Selected Filters: Convolution3d (preset="animeHQ")
11:26:53 Selected Deinterlacer: Interlaced
11:26:53 Selected Field Order: TFF
11:26:53 NeroAACEnc.exe: not present
11:26:53 Enabled CRF/CQ AutoRes at 2.5 value
11:26:53 Track Language 1: English (AC3 2ch, 0xBD 0x80) [0]
11:26:53 Audio Codec 1: Ogg Vorbis
11:26:53 Audio Quality 1: 5
11:26:53 Audio Channel 1: Original
11:26:53 Advanced Audio Settings DUMP Track 1
11:26:53 Nero Option Profiles: AUTO --- Encoding Mode: Quality
11:26:53 CCT Option Profiles: AUTO --- Channel Options: AUTO
11:26:53 Lame Settings: VBR
11:26:53 Audio Normalization: 1
11:26:53 Frequency: AUTO --- Tempo : NONE
11:26:53 Pitch: NONE --- Other Add :
11:26:53 Advanced Audio Settings DUMP Track 2
11:26:53 Nero Option Profiles: AUTO --- Encoding Mode: Quality
11:26:53 CCT Option Profiles: AUTO --- Channel Options: AUTO
11:26:53 Lame Settings: VBR
11:26:53 Audio Normalization: 1
11:26:53 Frequency: AUTO --- Tempo : NONE
11:26:53 Pitch: NONE --- Other Add :
11:26:53 Selected 1' Sub tracks: RIP ALL SUBS
11:26:53 Activate use ProjectX
11:26:53
11:26:53 Starting SubRipping
11:27:31 Subtitle Size: 2488320 bytes
11:27:31 Finished SubRipping
11:27:31 Starting Indexing
11:27:31 Dgindex CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1 -YR=2 -AIF=[C:\Ep1\VTS_03_1.vob] -OF=[C:Ep1\temp\movie] -exit -minimize
11:27:41 Finished indexing
11:27:41 Starting fixing audio delay on track number 1
11:27:41 DelayCut CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\Delaycut.exe -auto -out "C:Ep1\temp\fixed1.ac3" "C:Ep1\temp\movie T01 2_0ch 192Kbps DELAY 467ms.ac3"
11:27:41 Original 1' Audio Size: 35493888 bytes
11:27:41 Finished fixing audio delay
11:27:42 Encoding C:\Ep1\temp\fixed1.ac3 to Ogg with 5 quality
11:27:45 Encoded 1' Audio Track: 4455 bytes
If I use "ProjectX for TS files" and uncheck DelayCut it does work (for 1 audio track only) but then the audio is way out of sync. So I kinda do need some way to fix the audio delay.
I'm making such a big file, if I just use the original audio ac3 file without any re-encoding I guess that might work right?
gonwk
23rd February 2007, 17:43
Hi folks,
@ Buzzqw, THANK YOU for your Reply and LOVE Your Program.
@ dlflannery, THANK YOU Very Much for your pointer ...
You are right ... my clip was a MPEG1, Chinese Karate movie clip ... I wanted to combine couple of my VCD's into 1 dvd ... so I had stripped the .DAT movie file ... and just copied it to a DVD and played it on my Philips DVD Player and I noticed that I could not select Mono Audio for the playback ... since the Darn "Stereo" audio of the VCD sounds Horribly Garbly ... like there are 2 different channels playing over each other ... so I Demuxed Audio and Video using DGIndex and fixed Audio from what it was to "Mono" and combined back ...
Anyway, sorry about Bore'ing you with my Story!
BTW, do you know of a STABLE, ACCURATE, and Freeware for Muxing up Video & Audio.
Thanks,
G!
buzzqw
23rd February 2007, 17:45
sorry... but why use "ProjectX for TS files" if your input is an ifo (dvd)?
projectx (must) be used only for ts or dvr/pvr files not for normal vobs
so DON'T CHECK USE PROJECTX AND CHECK USE DELAY CUT
you shouldn't have problem :)
but if any , please report back
BHH
buzzqw
23rd February 2007, 17:47
BTW, do you know of a STABLE, ACCURATE, and Freeware for Muxing up Video & Audio.
with automkv isn't needed !
if you feed automkv with the d2v file , automkv will ask for an audio file, so select your file. Then in downmix routines select Mono ! :)
BHH
Shark_jlc
23rd February 2007, 18:26
sorry... but why use "ProjectX for TS files" if your input is an ifo (dvd)?
projectx (must) be used only for ts or dvr/pvr files not for normal vobs
...
BHH
Can you add this kind of logic into AutoMKV, so these kind of wrong choices cannot be made?
buzzqw
23rd February 2007, 18:56
@Shark_jlc
ADDED ! for this specific case, only if input is TS (or family) files the Use ProjectX and Custom X.ini will be abled.
Thanks for suggestion !
feel free to report any "misleading" fuction !
BHH
gonwk
23rd February 2007, 18:58
Hi Buzzqw,
God Bless You Dude!
It does help if I know how to use the full power of your Tool.
I did not even realize that I could feed it .d2v.
BTW, you know I like Guides in any format but Wiki's to me are pain since you have to roll from page to page ... how about a "Printer-Friendly" format ... you know just single running page or .pdf or ...!?!?!?
THANKS AGAIN.
G!:)
buzzqw
23rd February 2007, 19:09
open the wiki page, click left on HELP
after loading, click on left Printable Version ! (i hope will be enough.. or if you want i can build the pdf version)
about d2v : http://automkv.wiki-site.com/index.php/Help:Contents#Step_1_-_Set_Input_File
in next full package i will include a pdf version :)
BHH
gonwk
23rd February 2007, 19:14
Hi Buzzqw,
I must be BLIND ... I saw it ... thanks ... More than enough.
G! "Dummy"
Shark_jlc
23rd February 2007, 19:47
In regards to the drop down which shows current status on the Main tab.
I believe it is showing everything that happens in the log, correct?
So, why not just make it a Status Bar, instead of a drop down? That seems like a more appropriate control type to use for that feature.
buzzqw
23rd February 2007, 20:00
the true log stay in AutoMKV log tab
the drop-down box is to log main events and i use it to give some hits/tips/help
i will glady add more help in this box (is simply triggered by clicking on varius buttons of automkv)
BHH
BleedingGums
23rd February 2007, 20:19
just a quick update on stability. AutoMKV .74e is on its 43rd item on its queue, has been running non-stop since the 12th and has not missed a beat yet.
Shark_jlc
23rd February 2007, 20:50
the true log stay in AutoMKV log tab
the drop-down box is to log main events and i use it to give some hits/tips/help
i will glady add more help in this box (is simply triggered by clicking on varius buttons of automkv)
BHH
I wasn't suggesting that the content of the drop down was bad.
I was suggesting a different control to display the content.
It's really up to you though :)
buzzqw
23rd February 2007, 21:01
@BleedingGums
OMG! i haven't tested more the 4 file...
just for info: all input file are in the same directory or on more ?
one more: what happened between 11 and 12 queued files ?
i cannot belive ...
thanks BleedingGums! :goodpost:
@Shark_jlc
:) no prob !
BHH
BleedingGums
23rd February 2007, 22:18
all the input file are in the same directory but different subfolders. All output files are then put in the same folder in an other different location.
i had queued 51 files. then i shut down and rebooted to minimize chances of crashing. unfortunetly when you reload autoMKV the queue files get resorted in 1/10/11/12...19/2/20/21...29/3/30/31... order, not a big deal but causes real chaos when trying to look over the log files. and i cant scroll the log window up cause there is too much stuff there. but as far as i can tell nothing happend out of the ordinary. All files come out superb, exept for a few where the deinterlacer gives up, but they are dvd mastering related and dont happen at 11 or 12 files intervals.
next time I queue more than 12 files ill keep an eye out.
what would happen between 11 and 12 files?
buzzqw
23rd February 2007, 22:27
what would happen between 11 and 12 files?
nothing... but you previusly written that
has been running non-stop since the 12th
so i suppose that something has happen at 11-12 queue ... :p
BHH
Shark_jlc
23rd February 2007, 22:37
nothing... but you previusly written that
so i suppose that something has happen at 11-12 queue ... :p
BHH
I think he meant his queue has been running since February 12th?
BleedingGums
23rd February 2007, 22:49
yea, AutoMKV has been running since febuary 12th :)
TheRyuu
24th February 2007, 17:38
Ok, this is what I mean by the problem I'm having.
This seems to happen when I re-encode the audio files regardless of how many there are but the best example I can think of is with dual audio.
11:21:50 0.75 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
11:21:50 Selected Input file: C:\Ep1\VTS_03_0.IFO
11:21:50 Selected Output dir: C:\Ep1\temp\
11:21:50 Selected Final Name: FLCL_EP_1
11:21:50 Selected Container type: MKV
11:21:50 Selected Encoder: XviD
11:21:50 Selected Size: 1 CD
11:21:50 Selected Slice: 1
11:21:50 Selected Profile: XviD_Extra_Slow.xml
11:21:50 Selected Width: Automatic
11:21:50 Selected Resizer: LanczosResize
11:21:50 Selected Filters: Convolution3d (preset="animeHQ")
11:21:50 Selected Deinterlacer: Interlaced
11:21:50 Selected Field Order: TFF
11:21:50 Manual Crop: Enabled
11:21:50 Left Crop: 0
11:21:50 Top Crop: 0
11:21:50 Right Crop: 0
11:21:50 Botton Crop: 0
11:21:50 Manual Width: 720
11:21:50 Manual Height: 540
11:21:50 NeroAACEnc.exe: not present
11:21:50 Track Language 1: English (AC3 2ch, 0xBD 0x80) [0]
11:21:50 Audio Codec 1: Ogg Vorbis
11:21:50 Audio Quality 1: 3
11:21:50 Audio Channel 1: Stereo
11:21:50 Track Language 2: Japanese (AC3 2ch, 0xBD 0x81) [0]
11:21:50 Audio Codec 2: Ogg Vorbis
11:21:50 Audio Quality 2: 3
11:21:50 Audio Chennel 2: Stereo
11:21:50 Advanced Audio Settings DUMP Track 1
11:21:50 Nero Option Profiles: AUTO --- Encoding Mode: Quality
11:21:50 CCT Option Profiles: AUTO --- Channel Options: AUTO
11:21:50 Lame Settings: VBR
11:21:50 Audio Normalization: 1
11:21:50 Frequency: AUTO --- Tempo : NONE
11:21:50 Pitch: NONE --- Other Add :
11:21:50 Advanced Audio Settings DUMP Track 2
11:21:50 Nero Option Profiles: AUTO --- Encoding Mode: Quality
11:21:50 CCT Option Profiles: AUTO --- Channel Options: AUTO
11:21:50 Lame Settings: VBR
11:21:50 Audio Normalization: 1
11:21:50 Frequency: AUTO --- Tempo : NONE
11:21:50 Pitch: NONE --- Other Add :
11:21:50 Selected 1' Sub tracks: English 0 (0xBD 0x20) [0]
11:21:50 Selected 2' Sub tracks: English 1 (0xBD 0x21) [0]
11:21:50
11:21:50 Starting SubRipping
11:22:29 Subtitle Size: 2488320 bytes
11:22:29 Finished SubRipping
11:22:29 Starting Indexing
11:22:29 Dgindex CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1,2 -YR=2 -AIF=[C:\Ep1\VTS_03_1.vob] -OF=[C:\Ep1\temp\movie] -exit -minimize
11:22:40 Finished indexing
11:22:40 Starting fixing audio delay on track number 1
11:22:40 DelayCut CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\Delaycut.exe -auto -out "C:\Ep1\temp\fixed1.ac3" "C:\Ep1\temp\movie T01 2_0ch 192Kbps DELAY 467ms.ac3"
11:22:41 Original 1' Audio Size: 35493888 bytes
11:22:41 DelayCut CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\Delaycut.exe -auto -out "C:\Ep1\temp\fixed2.ac3" "C:\Ep1\temp\movie T02 2_0ch 192Kbps DELAY 0ms.ac3"
11:22:43 Original 2' Audio Size: 35493888 bytes
11:22:43 Finished fixing audio delay
11:22:43 Encoding C:\Ep1\temp\fixed1.ac3 to Ogg with 3 quality
11:22:46 Encoded 1' Audio Track: 4034 bytes
I then get an audio wasn't encoded properly message and I then I hit "quit" then copied the log and came here.
Now, if I ONLY choose ONE audio stream, I think if I use "ProjectX" it works. Now I'm not sure if thats because I unchecked "DelayCut" in the process or what (thats probably it right? Since ProjectX probably isn't being used)
But I've tried that and that only fixes the problem with 1 audio stream I think not to mention it's out of sync now.
*Runs and tries it without delay cut* ;)
...
First audio stream encoding correctly... (this is without delay cut)
And I still get an audio wasn't encoded properly with the second audio track. I don't get why this is happening. From what I can tell it's demuxing it correctly (I get 2 ac3 files in the temp folder and they both have the correct languages.
Here's that log:
11:28:56 0.75 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
11:28:56 Selected Input file: C:\Ep1\VTS_03_0.IFO
11:28:56 Selected Output dir: C:\Ep1\temp\
11:28:56 Selected Final Name: FLCL_EP_1
11:28:56 Selected Container type: MKV
11:28:56 Selected Encoder: XviD
11:28:56 Selected Size: 1 CD
11:28:56 Selected Slice: 1
11:28:56 Selected Profile: XviD_Extra_Slow.xml
11:28:56 Selected Width: Automatic
11:28:56 Selected Resizer: LanczosResize
11:28:56 Selected Filters: Convolution3d (preset="animeHQ")
11:28:56 Selected Deinterlacer: Interlaced
11:28:56 Selected Field Order: TFF
11:28:56 Manual Crop: Enabled
11:28:56 Left Crop: 0
11:28:56 Top Crop: 0
11:28:56 Right Crop: 0
11:28:56 Botton Crop: 0
11:28:56 Manual Width: 720
11:28:56 Manual Height: 540
11:28:56 NeroAACEnc.exe: not present
11:28:56 Track Language 1: English (AC3 2ch, 0xBD 0x80) [0]
11:28:56 Audio Codec 1: Ogg Vorbis
11:28:56 Audio Quality 1: 3
11:28:56 Audio Channel 1: Stereo
11:28:56 Track Language 2: Japanese (AC3 2ch, 0xBD 0x81) [0]
11:28:56 Audio Codec 2: Ogg Vorbis
11:28:56 Audio Quality 2: 3
11:28:56 Audio Chennel 2: Stereo
11:28:56 Advanced Audio Settings DUMP Track 1
11:28:56 Nero Option Profiles: AUTO --- Encoding Mode: Quality
11:28:56 CCT Option Profiles: AUTO --- Channel Options: AUTO
11:28:56 Lame Settings: VBR
11:28:56 Audio Normalization: 1
11:28:56 Frequency: AUTO --- Tempo : NONE
11:28:56 Pitch: NONE --- Other Add :
11:28:56 Advanced Audio Settings DUMP Track 2
11:28:56 Nero Option Profiles: AUTO --- Encoding Mode: Quality
11:28:56 CCT Option Profiles: AUTO --- Channel Options: AUTO
11:28:56 Lame Settings: VBR
11:28:56 Audio Normalization: 1
11:28:56 Frequency: AUTO --- Tempo : NONE
11:28:56 Pitch: NONE --- Other Add :
11:28:56 Selected 1' Sub tracks: English 0 (0xBD 0x20) [0]
11:28:56 Selected 2' Sub tracks: English 1 (0xBD 0x21) [0]
11:28:56
11:28:56 Starting SubRipping
11:29:34 Subtitle Size: 2484224 bytes
11:29:34 Finished SubRipping
11:29:34 Starting Indexing
11:29:34 Dgindex CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1,2 -YR=2 -AIF=[C:\Ep1\VTS_03_1.vob] -OF=[C:\Ep1\temp\movie] -exit -minimize
11:29:45 Finished indexing
11:29:45 Original 1' Audio Size: 35482368 bytes
11:29:45 Original 2' Audio Size: 35493888 bytes
11:29:45 Not fixing audio delay
11:29:45 Encoding C:\EP1\temp\fixed1.ac3 to Ogg with 3 quality
11:31:13 Encoded 1' Audio Track: 18982458 bytes
11:31:13 Encoding C:\Ep1\temp\fixed2.dts to Ogg with 3 quality
11:31:16 Encoded 2' Audio Track: -1 bytes
This is using AutoMKV version 0.75 (came with that pack that renamed the profiles a page or two back).
Could it be that it's a dts file? Because when I selected that audio file from the different audio tracks in AutoMKV, it said Japanese AC3...etc... (Japanese (AC3 2ch, 0xBD 0x81))
Didn't say anything about a dts file.
And delay cut shouldn't have been running. I thought that I unchecked that.
Also, one of the filter names and were it's placed is kind of confusing. The Convolution3d(preset=Anime"BQ") or whatever it was is confusing. At first I thought it was "Best Quality" but I was wrong. It really means "Bad Quality" for a bad quality source.
I found it confusing because it was above the HQ (high quality) one so I just thought it meant "best quality".
Anyway, not sure if I'm doing something wrong or not.
Great program none the less.
buzzqw
24th February 2007, 18:19
first of all: check use delay cut and UNCHECK ProjectX
audio tracks are AC3 or DTS (play in mediaplayer classic, and do propriertis of files)?
also please post mkvmaudio.bat and mkvmaudio.avs from temp directory
also launch the mkvmaudio.vbs / mkvmaudio.bat from dos box, what is the error ? (or the mkvmaudio2.vbs /mkvmaudio2.bat)
thanks ! (and sorry but i have some difficulty to understud these errors)
BHH
dlflannery
24th February 2007, 20:01
Hi BHH,
I was encoding a ten minute .flv (FLV1) video today to the Zune 1 pass Quick profile, trying to find the combination of settings that worked reliably. What seems to work is to load the .flv file (not as .avs) and check Use Direct Show. The file has mono (.mp3) audio so I'm using the Mono audio setting.
I've tried both auto- and manual-crop. So far manual crop has worked everytime while with auto-crop it seems like the identical encoding will fail one time then succeed the next time. As usual the failures occur in the WME encoder, resulting in very short output files (no crashes so far).
I noticed a particular problem that seems like it has to be a bug. I was encoding with 128 kbps audio every test but one encoded file came out with 96 kbps audio. I thought maybe I accidentally set it to 96 but as you can see from the following log file section, the program was told to use 128 but in the WME script command line it was 96_44_2.
13:22:44 0.75 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
13:22:44 Selected Input file: C:\Video\TivoDoNetVideos\StevieRVaughan\GiveUpOnLove.flv
13:22:44 Selected Output dir: C:\Video\ForZune\temp\
13:22:44 Selected Final Name: GiveUpOnLove7
13:22:44 Selected Container type: WMV
13:22:44 Selected Encoder: WMV
13:22:44 Selected Size: 1 CD
13:22:44 Selected Slice: 1
13:22:44 Selected Profile: Zune_1_Pass_Quick.xml
13:22:44 Selected Width: Automatic
13:22:44 Selected Resizer: SimpleResize (neutral soft)
13:22:44 Selected Filters: NONE
13:22:44 Selected Deinterlacer: NONE
13:22:44 Selected Field Order: AUTO
13:22:44 Manual Crop: Enabled
13:22:44 Left Crop: 2
13:22:44 Top Crop: 2
13:22:44 Right Crop: 2
13:22:44 Botton Crop: 2
13:22:44 Manual Width: 320
13:22:44 Manual Height: 240
13:22:44 Enabled Bitrate encoding with value 500
13:22:44 Track Language 1: GiveUpOnLove.flv
13:22:44 Audio Codec 1: WMV
13:22:44 Audio Quality 1: 128
13:22:44 Audio Channel 1: Mono
13:22:44 Advanced Audio Settings DUMP Track 1
13:22:44 Nero Option Profiles: AUTO --- Encoding Mode: Quality
13:22:44 CCT Option Profiles: AUTO --- Channel Options: AUTO
13:22:44 Lame Settings: VBR
13:22:44 Audio Normalization: 0
13:22:44 Frequency: AUTO --- Tempo : NONE
13:22:44 Pitch: NONE --- Other Add :
13:22:44 Advanced Audio Settings DUMP Track 2
13:22:44 Nero Option Profiles: AUTO --- Encoding Mode: Quality
13:22:44 CCT Option Profiles: AUTO --- Channel Options: AUTO
13:22:44 Lame Settings: ABR
13:22:44 Audio Normalization: 1
13:22:44 Frequency: AUTO --- Tempo : NONE
13:22:44 Pitch: NONE --- Other Add :
13:22:44
13:22:55 Number of Frames: 14742
13:22:55 Framerate: 25.000000
13:22:55 Movie lenght in Seconds: 590
13:22:55 Movie Width: 320
13:22:55 Movie Height: 240
13:22:55 WMV CMD: cscript.exe "C:\AutoMKV075\exe\encoder\WMCmd.vbs"
-input "C:\Video\ForZune\temp\movie.avs"
-output "C:\Video\ForZune\temp\movie.wmv"
-v_codec WMV7
-v_mode 0 -v_bitrate 512000 -s_config "C:\Video\ForZune\temp\wmv_crb"
-v_bframedist 1 -v_dquantoption 2 -v_lookahead 0
-v_mbmodecost 0 -v_mmatch 0 -v_mslevel 1 -v_msrange 0
-v_mvcost 0 -v_peakbitrate 736000 -v_bdeltaqp 1 -a_codec WMASTD
-a_mode 0 -title "GiveUpOnLove7" -year 2007 -copyright "Done with AutoMKV! 0.75"
-a_setting 96_44_2
It looks like the audio bitrate was changed after I started the encoding, I think. (See two places marked in red.)
Thanks
buzzqw
24th February 2007, 20:34
i think i have understud ! (or i hope...)
the problem arise when encoding is started but you click on container or profile list's, on click (even if not changed) the bitrate goes to 96
the "bug" is that automkv will accept change in its settings while woriking...
BHH
TheRyuu
25th February 2007, 00:52
first of all: check use delay cut and UNCHECK ProjectX
audio tracks are AC3 or DTS (play in mediaplayer classic, and do propriertis of files)?
also please post mkvmaudio.bat and mkvmaudio.avs from temp directory
also launch the mkvmaudio.vbs / mkvmaudio.bat from dos box, what is the error ? (or the mkvmaudio2.vbs /mkvmaudio2.bat)
thanks ! (and sorry but i have some difficulty to understud these errors)
BHH
I believe the top log is with delay cut and the bottom log is without it (I think, but I'll run the encodes again tomorrow for the logs and the files you wanted since the problem happens every time.
And I know that the audio files are dts or ac3. What I don't get is that the Japanese track IS AC3 but in AutoMKV log it's saying it's a dts (as well as in the temp directory).
When I get back to my regular computer tomorrow I'll run the encodes again with what you asked and then post the files too.
Until then....I don't know :P
And sorry about explaining the errors, I'll try to go step by step of what I did next time I post the logs.
bhh
25th February 2007, 05:44
Excellent program you've got here buzqw, I'm thrilled to find it and have enjoyed reading this thread and following the development.
I have been doing some experimenting and think I have encountered a potential bug with batch processing. I am attempting to use the queue to batch process ripped verisions of my dvd collection using xvid with "specify quality" setting of between 80-90 with the CQ profile. This seems to work properly for one-offs and the bitrates scale up as you would expect with increased quality. The problem I have found is when batch processing, this "specify quality" setting has no affect and the encoding uses the defaut settings. This has been confirmed by queing up a series of encodes with the same source clip using different quality settings and all the files come out the same size. When running them individually without the queue, everything seems to work fine.
Also, I seem to get the error about improper audio whenever I try and encode two seperate audio tracks that use the same source audio channel. For example, I use an original AC3 5.1 source to encode a "Lame Stereo" version for track 1 and the same AC3 5.1 source using "copy original" for track 2. This will consistantly produce the error althrough each track will encode individually just fine.
Hope this helps and again, amazing program you've got here.
buzzqw
25th February 2007, 07:53
@wizboy11
i need the error arised from launching the batch files (and alos the batch files).
no need to fell sorry, it's the log that is missing of useful information !
@bhh (feel strange... sign as my)
about quality: i will look ! thanks
about same audio: already fixed in next update !
BHH
buzzqw
25th February 2007, 09:02
@bhh
about quality: first of all fixed in next update
but as i wrote in changelog (09/02/2006 0.74 update) the quality was not working in queue.
Now is working :)
BHH
Huerta
25th February 2007, 12:46
Something keeps happening to me. I tried encoding a file to xvid and it starts out fine by ripping the subs and transcoding the audio properly but it doesn't encode the video. Also I try to choose Mkv with Xvid_Slow and the Don't care about Media Size options but each time I choose Don't care about media size it changes it to Xvid_CQ. and I keep getting a Hit Media Size or Go Unlimited box each time I try to change it back.
05:21:09 0.75 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
05:21:09 Selected Input file: C:\DBZ\New Folder\VTS_02_0.IFO
05:21:09 Selected Output dir: C:\DBZ\New Folder\temp\
05:21:09 Selected Final Name: VTS_02_0
05:21:09 Selected Container type: MKV
05:21:09 Selected Encoder: XviD
05:21:09 Selected Size: Don't care about size
05:21:09 Selected Slice: 1
05:21:09 Selected Profile: XviD_CQ.xml
05:21:09 Selected Width: Automatic
05:21:09 Selected Resizer: NONE
05:21:09 Selected Filters: MipSmooth(preset = "AnimeHQ")
05:21:09 Selected Deinterlacer: AUTO
05:21:09 Selected Field Order: AUTO
05:21:09 NeroAACEnc.exe: not present
05:21:09 Track Language 1: All Audio Tracks
05:21:09 Audio Codec 1: Ogg Vorbis
05:21:09 Audio Quality 1: 5
05:21:09 Audio Channel 1: Stereo
05:21:09 Advanced Audio Settings DUMP Track 1
05:21:09 Nero Option Profiles: AUTO --- Encoding Mode: Quality
05:21:09 CCT Option Profiles: AUTO --- Channel Options: AUTO
05:21:09 Lame Settings: VBR
05:21:09 Audio Normalization: 1
05:21:09 Frequency: AUTO --- Tempo : NONE
05:21:09 Pitch: NONE --- Other Add :
05:21:09 Advanced Audio Settings DUMP Track 2
05:21:09 Nero Option Profiles: AUTO --- Encoding Mode: Quality
05:21:09 CCT Option Profiles: AUTO --- Channel Options: AUTO
05:21:09 Lame Settings: VBR
05:21:09 Audio Normalization: 1
05:21:09 Frequency: AUTO --- Tempo : NONE
05:21:09 Pitch: NONE --- Other Add :
05:21:09 Selected 1' Sub tracks: RIP ALL SUBS
05:21:09 Selected Unlimited media size
05:21:09 Starting SubRipping
05:21:44 Subtitle Size: 679936 bytes
05:21:44 Finished SubRipping
05:22:25 Starting fixing all audio files
05:22:25 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\New Folder\temp\fixed1.ac3" "C:\DBZ\New Folder\temp\movie T01 3_2ch 448Kbps DELAY -200ms.ac3"
05:22:28 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\New Folder\temp\fixed2.ac3" "C:\DBZ\New Folder\temp\movie T02 2_0ch 192Kbps DELAY -200ms.ac3"
05:22:34 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\New Folder\temp\fixed3.ac3" "C:\DBZ\New Folder\temp\movie T03 2_0ch 192Kbps DELAY -200ms.ac3"
05:22:38 Encoding C:\DBZ\New Folder\temp\fixed1.ac3 to Ogg with 5 quality
05:25:30 Encoding C:\DBZ\New Folder\temp\fixed2.ac3 to Ogg with 5 quality
05:27:22 Encoding C:\DBZ\New Folder\temp\fixed3.ac3 to Ogg with 5 quality
05:29:07 ForceFilm Detected: 99.900002% FILM found
05:29:11 Number of Frames: 37289
05:29:11 Framerate: 29.970030
05:29:11 Movie lenght in Seconds: 1245
05:29:11 Movie Width: 720
05:29:11 Movie Height: 480
05:32:00 Processing completed. Type is determined to be partly film.
05:32:00 Processing completed. Type is determined to be partly film.
05:32:00 BFF: 21
05:32:00 TFF: 174
05:32:00 Order: tff
05:32:01 CQ encoding XviD: C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\encoder\xvid_encraw.exe -cq 3 -progress -threads 1 -max_bframes 2 -imax 31 -quality 6 -vhqmode 1 -qtype 0 -pmax 31 -bmax 31 -framerate 29.970 -bquant_ratio 162 -bquant_offset 0 -nopacked -nochromame -noclosed_gop -bvhq -i "C:\DBZ\New Folder\temp\movie.avs" -type 2 -mkv "C:\DBZ\New Folder\temp\movie.mkv"
05:32:05 Accepted values are between 31876710400 and 33889976320 bytes (movie+audio)
05:32:05 Got a file of size: -1 bytes + audio size 61283811 bytes (61623776)
05:32:05 C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\matroska\mkvmerge.exe" -o "C:\DBZ\New Folder\temp\VTS_02_0.mkv_pre" --track-name -1:"VTS_02_0" --aspect-ratio 0:1.777778 --chapters "C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\chapters.txt" "C:\DBZ\New Folder\temp\movie.mkv" "C:\DBZ\New Folder\temp\audio1.ogg" "C:\DBZ\New Folder\temp\audio2.ogg" "C:\DBZ\New Folder\temp\audio3.ogg" "C:\DBZ\New Folder\temp\VTS_02_0.idx" --title "Done with AutoMKV 0.75 http://forum.doom9.org/showthread.php?p=854221 "
05:32:07 Final Muxed size: -1 bytes
05:32:07 Encoding finished: 00:10:58 elapsed time
05:32:07 -----------------------------------------------------------------------
05:32:07 Script AutoCrop.log
05:32:07
05:32:07 Crop(10,0,700,480)
05:32:07 -----------------------------------------------------------------------
05:32:07 Script Resmovie.avs
05:32:07
05:32:07 -----------------------------------------------------------------------
05:32:07 Script movie.avs
05:32:07
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\autocrop.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\BicublinResize.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\blockbuster.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\cnr2.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\ColorMatrix.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\Convolution3D.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\corrector.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\DctFilter.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\Decomb.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\Deen.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\degrainmedian.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\DGDecode.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\EEDI2.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\fft3dfilter.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\FluxSmooth.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\frfun7.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\hqdn3d.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\LeakKernelDeint.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\MaskTools.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\medianblur.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\MipSmooth.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\mt_masktools.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\mvtools.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\NicAudio.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\RemoveGrain.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\Repair.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\SangNom.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\SimpleResize.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\TBilateral.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\TDeint.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\TIVTC.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\TomsMoComp.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\TTempSmooth.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\UnDot.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\UnFilter.dll")
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\VSFilter.dll")
05:32:07 #loadpluginstart
05:32:07
05:32:07 #test1
05:32:07
05:32:07 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\MCBob_v03c.avsi")
05:32:07 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\mvbob.avsi")
05:32:07 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\seesaw.avsi")
05:32:07 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\spresso.avsi")
05:32:07 #importstart
05:32:07
05:32:07 #test2
05:32:07
05:32:07 movie = mpeg2source("C:\DBZ\New Folder\temp\movie.d2v")
05:32:07 function getOrder(clip c) {
05:32:07 order = GetParity(c) ? 1 : 0
05:32:07 Return order }
05:32:07 #filter1start
05:32:07
05:32:07 #test3
05:32:07
05:32:07 #cropstart
05:32:07
05:32:07 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
05:32:07 fixed_aspect = 1.185185
05:32:07 c_width = width(cropclip)
05:32:07 c_height = Round(height(cropclip) / fixed_aspect)
05:32:07 input_par = float(float(c_width)/float(c_height))
05:32:07 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
05:32:07 out_width = 720
05:32:07 out_height = Round(float(out_width) / input_par)
05:32:07 hmod = out_height - (floor(out_height / 16 ) * 16)
05:32:07 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
05:32:07 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
05:32:07 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
05:32:07
05:32:07 #resizestart
05:32:07
05:32:07 #test4
05:32:07
05:32:07 last = movie
05:32:07 edeintted = AssumeTFF().SeparateFields().SelectEven().EEDI2(field=-1)
05:32:07 tdeintted = TDeint(edeint=edeintted,order=1)
05:32:07 tfm(order=1,clip2=tdeintted).tdecimate(hybrid=3)
05:32:07 #filter2start
05:32:07
05:32:07 #test5
05:32:07
05:32:07 MipSmooth(preset = "AnimeHQ")
05:32:07 ColorMatrix("Rec.709->Rec.601",hints=false,threads=0)
05:32:07 -----------------------------------------------------------------------
05:32:07 Script mkvmaudio.avs
05:32:07
05:32:07 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\filter\NicAudio.dll")
05:32:07 NicAC3Source("C:\DBZ\New Folder\temp\fixed3.ac3")
05:32:07 EnsureVBRMP3Sync()
05:32:07 ConvertAudioTo16bit()
05:32:07 #Applyed STEREO downmixing routines
05:32:07 function stereo(clip a)
05:32:07 {
05:32:07 fl = GetChannel(a, 1)
05:32:07 fr = GetChannel(a, 2)
05:32:07 c = GetChannel(a, 3)
05:32:07 lfe = GetChannel(a, 4)
05:32:07 sl = GetChannel(a, 5)
05:32:07 sr = GetChannel(a, 6)
05:32:07 l_sl = MixAudio(fl, sl, 0.2929, 0.2929)
05:32:07 c_lfe = MixAudio(lfe, c, 0.2071, 0.2071)
05:32:07 r_sr = MixAudio(fr, sr, 0.2929, 0.2929)
05:32:07 l = MixAudio(l_sl, c_lfe, 1.0, 1.0)
05:32:07 r = MixAudio(r_sr, c_lfe, 1.0, 1.0)
05:32:07 Return MergeChannels(l, r).Normalize()
05:32:07 }
05:32:07 #
05:32:07 function original(clip a)
05:32:07 {
05:32:07 Normalize(a)
05:32:07 Return last
05:32:07 }
05:32:07 6==Audiochannels() ? stereo() : original()
05:32:07 -----------------------------------------------------------------------
05:32:07 Script mkvmaudio.bat
05:32:07
05:32:07 "C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\besweet\bepipe.exe" --script "Import(^C:\DBZ\New Folder\temp\mkvmaudio.avs^)" | "C:\Documents and Settings\Owner\Desktop\AutoMKV\exe\besweet\oggenc2.exe" -q 5 - -o "C:\DBZ\New Folder\temp\audio3.ogg"
05:32:07 -----------------------------------------------------------------------
05:32:07 Script mkvmaudio2.avs
05:32:07
05:32:07 -----------------------------------------------------------------------
05:32:07 Script mkvmaudio2.bat
05:32:07
05:32:07
05:32:07 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
bhh
25th February 2007, 14:02
amazing. :thanks:
btw, bhh is my initials and i use it on all the forums i participate in... not a cyber stalker or anything ;)
buzzqw
25th February 2007, 14:55
@Huerta
and I keep getting a Hit Media Size or Go Unlimited box each time I try to change it back
thanks ! fixed in next update
to fix now do this: do not set "don't care about size" but select XviD_CQ profile and answer "go unlimited"
also about movie not encoded is due to incompatibility between dgindex/dgdecode and TIVTC.
Two solution:
OR download dgindex 1.4.9 beta 12 (http://www.64k.it/andres/data/d/dgmpgdec149b12.zip) and unzip into \exe\filter and \exe\dgindex folders
OR download the latest TIVTC http://bengal.missouri.edu/~kes25c/TIVTCv101.zip and unzip into \exe\filter folder
anyway in next full package is fixed
BHH
gonwk
25th February 2007, 23:17
Hi Buzzqw,
A suggestion ... could you date your "Updates" so we can tell it is update from when!?!?
Also, I downloaded your latest update and plugged it in the "AutoMKV" folder ... and 0.74e still pops up the window saying "Go Unlimited" ... is this Normal?
Q: Am I installing your updates correctly ... just taking it and dropping it in the Original folder?
Thanks,
G!
dlflannery
25th February 2007, 23:27
I have several clips that are 640x480 AVI (mjpeg + mono mp3). I wanted to splice them together into one clip and make a Zune-compatible WMV. So I decided to try AVS source using (for example) the following AVS script:
function makeMovie(string fileName) {
audio=DirectShowSource(fileName, video = false)
audio = MergeChannels(audio,audio).resampleAudio(44100)
video=AVISource(fileName, audio = false)
return audiodub(audio, video)
}
makeMovie("C:\Video\NickPlane2006_12_27\NickPlane2.avi") ++
\ makeMovie("C:\Video\NickPlane2006_12_27\NickPlane3.avi")
This script plays OK in WMP11. Note that it has already converted the mono to stereo at 44kbps sample rate.
I input this AVS into AutoMKV and used the Zune 1 pass quick profile. However the encode fails --WME evaluates the length as 10 seconds (should be 61 sec) and quits early creating a very small file.
The movie.avs file in temp dir is:
Import("C:\Video\NickPlane2006_12_27\Nick2+3.avs")
audio=EnsureVBRMP3Sync(audio)
audio=ConvertAudioToFloat(audio)
audio=getchannel(audio,1,2)
audiodub(audio,last)
If I try to play movie.avs in WMP11 I get the error message: I don't know what "audio" means
Looking at my avs and movie.avs the problem is obvious. I need the following AVS command either at the end of my AVS script or at the beginning of movie.avs:
audio=getChannel(1,2)
After adding that command and running movie_wmv.bat I get a good encoding except the .wmv video size is still 640x480. This occurs whether I use the simpleResize with width=320 or the manual crop with size set to 320x240.
I found if I add these WME options in movie_wmv.bat:
-v_width 320 -v_height 240
the encoding runs good and produces the desired 320x240 output file, i.e. the encoder does the resizing. BTW, I found adding only the v_width option was not enough -- still produced 640x480.
It appears that AutoMKV does not apply the manual or auto resize functions to AVS source videos. (???) It looks like all it does in this case is convert the audio to float and send it to the WME encoder. Another question is why it converts the audio to float? I tried removing that command and the encoding was good.
Perhaps I don't understand what AutoMKV should do with an AVS input (??).
One idea for the Zune cases would be to have it add the -v_width and -v_height options, set to 320x240. I'm not sure what complications might happen for 16x9 formats however. The Zune spec (http://www.zune.net/en-us/support/howto/start/providecontent.htm#section5) says 320x180 (16:9 QVGA) but IIRC I have played files that were 320x192 in it, so I suspect the width must always be 320 but the height can range from 180 to 240.
Thanks!
Edit::stupid:
I had a feeling as I was writing the above that I should go check the manual before posting and ... sure enough there was the answer to my questions (most of them anyway) in the "Input to AutoMKV" section:
AVS file. Useful for encoding already prepared script. No filter or resize is applied, only audio will be asked. :o
gonwk
26th February 2007, 00:08
Hey dl,
I know I am GREEN to all of this ... but are you calling me Stupid ... :D
Just kidding ... I wish I know 1/1000000 of what you guys know on coding then I would be A-OK!
Nice seeing you around!
G!
TheRyuu
26th February 2007, 00:11
Ok, lets see if I can get you want you need here eh?
Here's the log with the settings I used. I checked "Use DelayCut" and ProjectX was not checked.
FIRST ENCODE (with DelayCut):
17:59:31 0.75 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
17:59:31 Selected Input file: C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\VTS_03_0.IFO
17:59:31 Selected Output dir: C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\
17:59:31 Selected Final Name: FLCL_EP_1
17:59:31 Selected Container type: MKV
17:59:31 Selected Encoder: XviD
17:59:31 Selected Size: 1 CD
17:59:31 Selected Slice: 1
17:59:31 Selected Profile: XviD_Extra_Slow.xml
17:59:31 Selected Width: Automatic
17:59:31 Selected Resizer: LanczosResize
17:59:31 Selected Filters: Convolution3d (preset="animeHQ")
17:59:31 Selected Deinterlacer: Interlaced
17:59:31 Selected Field Order: TFF
17:59:31 Manual Crop: Enabled
17:59:31 Left Crop: 0
17:59:31 Top Crop: 0
17:59:31 Right Crop: 0
17:59:31 Botton Crop: 0
17:59:31 Manual Width: 720
17:59:31 Manual Height: 540
17:59:31 NeroAACEnc.exe: not present
17:59:31 Track Language 1: English (AC3 2ch, 0xBD 0x80) [0]
17:59:31 Audio Codec 1: Ogg Vorbis
17:59:31 Audio Quality 1: 3
17:59:31 Audio Channel 1: Stereo
17:59:31 Track Language 2: Japanese (AC3 2ch, 0xBD 0x81) [0]
17:59:31 Audio Codec 2: Ogg Vorbis
17:59:31 Audio Quality 2: 3
17:59:31 Audio Chennel 2: Stereo
17:59:31 Advanced Audio Settings DUMP Track 1
17:59:31 Nero Option Profiles: AUTO --- Encoding Mode: Quality
17:59:31 CCT Option Profiles: AUTO --- Channel Options: AUTO
17:59:31 Lame Settings: VBR
17:59:31 Audio Normalization: 1
17:59:31 Frequency: AUTO --- Tempo : NONE
17:59:31 Pitch: NONE --- Other Add :
17:59:31 Advanced Audio Settings DUMP Track 2
17:59:31 Nero Option Profiles: AUTO --- Encoding Mode: Quality
17:59:31 CCT Option Profiles: AUTO --- Channel Options: AUTO
17:59:31 Lame Settings: VBR
17:59:31 Audio Normalization: 1
17:59:31 Frequency: AUTO --- Tempo : NONE
17:59:31 Pitch: NONE --- Other Add :
17:59:31 Selected 1' Sub tracks: English 0 (0xBD 0x20) [0]
17:59:31 Selected 2' Sub tracks: English 1 (0xBD 0x21) [0]
17:59:31
17:59:31 Starting SubRipping
18:00:10 Subtitle Size: 2488320 bytes
18:00:10 Finished SubRipping
18:00:10 Starting Indexing
18:00:10 Dgindex CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1,2 -YR=2 -AIF=[C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\VTS_03_1.vob] -OF=[C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\movie] -exit -minimize
18:00:21 Finished indexing
18:00:21 Starting fixing audio delay on track number 1
18:00:21 DelayCut CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\Delaycut.exe -auto -out "C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\fixed1.ac3" "C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\movie T01 2_0ch 192Kbps DELAY 467ms.ac3"
18:00:22 Original 1' Audio Size: 35493888 bytes
18:00:22 DelayCut CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\Delaycut.exe -auto -out "C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\fixed2.ac3" "C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\movie T02 2_0ch 192Kbps DELAY 0ms.ac3"
18:00:25 Original 2' Audio Size: 35493888 bytes
18:00:25 Finished fixing audio delay
18:00:25 Encoding C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\fixed1.ac3 to Ogg with 3 quality
18:00:28 Encoded 1' Audio Track: 4034 bytes
You also wanted a few files.
I put them all in a rar file for ya and attached it (mkvaudio.bat/.avs/.vbs) with the title "mkvaudio.rar" for the first encode.
Hope this helps. I get another "audio wasn't encoded properly error if I uncheck "use delay cut" too. I'll upload that in a little bit.
EDIT:
Ok, here are the results of a failing encode (get a "audio wasn't encoded properly") without delay cut (DelayCut unchecked, thats the only thing that really changed from the top encode).
Log:
Second Encode (without delay cut):
18:11:31 0.75 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
18:11:31 Selected Input file: C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\VTS_03_0.IFO
18:11:31 Selected Output dir: C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\
18:11:31 Selected Final Name: FLCL_EP_1
18:11:31 Selected Container type: MKV
18:11:31 Selected Encoder: XviD
18:11:31 Selected Size: 1 CD
18:11:31 Selected Slice: 1
18:11:31 Selected Profile: XviD_Extra_Slow.xml
18:11:31 Selected Width: Automatic
18:11:31 Selected Resizer: LanczosResize
18:11:31 Selected Filters: Convolution3d (preset="animeHQ")
18:11:31 Selected Deinterlacer: Interlaced
18:11:31 Selected Field Order: TFF
18:11:31 Manual Crop: Enabled
18:11:31 Left Crop: 0
18:11:31 Top Crop: 0
18:11:31 Right Crop: 0
18:11:31 Botton Crop: 0
18:11:31 Manual Width: 720
18:11:31 Manual Height: 540
18:11:31 NeroAACEnc.exe: not present
18:11:31 Track Language 1: English (AC3 2ch, 0xBD 0x80) [0]
18:11:31 Audio Codec 1: Ogg Vorbis
18:11:31 Audio Quality 1: 3
18:11:31 Audio Channel 1: Stereo
18:11:31 Track Language 2: Japanese (AC3 2ch, 0xBD 0x81) [0]
18:11:31 Audio Codec 2: Ogg Vorbis
18:11:31 Audio Quality 2: 3
18:11:31 Audio Chennel 2: Stereo
18:11:31 Advanced Audio Settings DUMP Track 1
18:11:31 Nero Option Profiles: AUTO --- Encoding Mode: Quality
18:11:31 CCT Option Profiles: AUTO --- Channel Options: AUTO
18:11:31 Lame Settings: VBR
18:11:31 Audio Normalization: 1
18:11:31 Frequency: AUTO --- Tempo : NONE
18:11:31 Pitch: NONE --- Other Add :
18:11:31 Advanced Audio Settings DUMP Track 2
18:11:31 Nero Option Profiles: AUTO --- Encoding Mode: Quality
18:11:31 CCT Option Profiles: AUTO --- Channel Options: AUTO
18:11:31 Lame Settings: VBR
18:11:31 Audio Normalization: 1
18:11:31 Frequency: AUTO --- Tempo : NONE
18:11:31 Pitch: NONE --- Other Add :
18:11:31 Selected 1' Sub tracks: English 0 (0xBD 0x20) [0]
18:11:31 Selected 2' Sub tracks: English 1 (0xBD 0x21) [0]
18:11:31
18:11:31 Starting SubRipping
18:12:10 Subtitle Size: 2488320 bytes
18:12:10 Finished SubRipping
18:12:10 Starting Indexing
18:12:10 Dgindex CMD: C:\_Downloads\AutoMKV\AutoMKV074\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1,2 -YR=2 -AIF=[C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\VTS_03_1.vob] -OF=[C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\movie] -exit -minimize
18:12:22 Finished indexing
18:12:22 Original 1' Audio Size: 35482368 bytes
18:12:22 Original 2' Audio Size: 35493888 bytes
18:12:22 Not fixing audio delay
18:12:22 Encoding C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\fixed1.ac3 to Ogg with 3 quality
18:13:50 Encoded 1' Audio Track: 18982458 bytes
18:13:50 Encoding C:\Documents and Settings\Dragon\My Documents\DVDs\FLCL\Ep1\temp\fixed2.dts to Ogg with 3 quality
18:13:53 Encoded 2' Audio Track: -1 bytes
Now, I'm not sure whats wrong with the first encode, but in this second encode it says "fixed2.dts" when the audio file should be an ac3 file.
And, I'll attach the mkvaudio things in a rar file. For the second encode, it'll be "mkvaudio2.rar" (without delaycut).
Hope it'll tell you something.
If you need anything else I'll be glad to give it. I can recreate the same problem over and over again.
dlflannery
26th February 2007, 02:09
Hey dl,
I know I am GREEN to all of this ... but are you calling me Stupid ... :D
Just kidding ... I wish I know 1/1000000 of what you guys know on coding then I would be A-OK!
Nice seeing you around!
G!
My :stupid: was pointing to my own post -- not yours! I think you understood that but just in case ..... ;)
BTW I don't know whether I am one of the "guys" who know about coding but I can assure you I'm a newbie to video and AVS, but I enjoy learning it and AutoMKV is not only very useful but serves as a learning tool too.
dlflannery
26th February 2007, 02:25
A couple of small things about 0.75:
1. The audio bitrate again switched from 128 to 96 during a Zune encoding as noted in this prior post (http://forum.doom9.org/showthread.php?p=959670#post959670). I looked at the Audio Track setting after the encode was done and it was still saying 128. I did not touch anything on the GUI after hitting the Start Encoding button. This only happens sometimes in a random way.
2. If I load a source file by dragging it into Select Input File, the Movie Name (for output) does not update like it does if I load by browsing.
Surlyrich
26th February 2007, 06:15
I am having a couple of problems with some ts files.
This one is not specifically automkv related, but with one of my caps, I used videoredo to edit out commercials and create a new ts file. Videoredo reported some audio errors, so I ran it through mpeg2repair. When demuxing with projectx, the audio track ends up coming out 3 mins shorter than the video, however the original ts file plays fine end to end. Is this a problem with the original file that can not be fixed, or should I be using some other method to edit the file rather than using videoredo and then mpeg2repair?
Another problem I have is with a ts cap that is 4:3 with black borders on the left and right. When choosing autocrop, the encoded file ends up stretched and with black boarders on the top and bottom. Not sure what I did wrong there. What would be the best way to encode these tyoes of caps?
Cheers
Huerta
26th February 2007, 08:42
@Huerta
thanks ! fixed in next update
to fix now do this: do not set "don't care about size" but select XviD_CQ profile and answer "go unlimited"
also about movie not encoded is due to incompatibility between dgindex/dgdecode and TIVTC.
Two solution:
OR download dgindex 1.4.9 beta 12 (http://www.64k.it/andres/data/d/dgmpgdec149b12.zip) and unzip into \exe\filter and \exe\dgindex folders
OR download the latest TIVTC http://bengal.missouri.edu/~kes25c/TIVTCv101.zip and unzip into \exe\filter folder
anyway in next full package is fixed
BHH
I did the first solution and I extracted the zip into both /exe/filter and /exe/dgindex folders. But that didn't work.
Then I tried the second option exactly but it still doesn't encode.
Then I did both at the same time but that didn't work either.
Are there any other solutions or did I miss something.
buzzqw
26th February 2007, 13:26
New full Package ! 0.76
stable NEW package WITH DVDFabDecrypter www.64k.it/andres/data/a/AutoMKV076.rar (8.14mb, all inclusive, NO install)
stable NEW package WITHOUT DVDFabDecrypter http://www.64k.it/andres/data/a/AutoMKV076_NODECRYPTER.rar (7.72mb, NO install)
Changelog
0.76
ADDED: Manual !!! and wiki http://automkv.wiki-site.com/index.php/Main_Page
ADDED: Some logos to codec and container :)
ADDED: DVD Drive will enumerate only the phisical device attached (thanks to glynor)
ADDED: Link to Wiki page
ADDED: Now is possible to queue works while use Specify Quality (suggestion by bhh)
ADDED: Is now possible to force manual crop AND manual width without specify the resizers. (suggestion by Bowo)
FIXED: If user load a source file by dragging it into Select Input File, the Movie Name (for output) does not update like it does if I load by browsing. (thanks to dlflannery)
FIXED: When select "don't care about size", the X264/XviD encoding goes erroneusly to profile defaults to CQ_ASP_Q2_eq(crf).xml (thanks to vgiozo and Huerta)
FIXED: ON avi muxing RECLIST is used only for Disk Settings over 2048MB
FIXED: Convolution3d (preset="animeBQ") is BAD QUALITY not BEST QUALITY...(thanks to wizboy11)
FIXED: If files isn't a TS (or family) files, the Use ProjectX and Use custom X.ini are disabled (suggestion by Shark_jlc)
FIXED: It's now possible to encode the same audio track with Copy Original and any other codec (Copy Original in first box, Lame in second... as example) (or Lame and Ogg...) (thanks to glynor)
FIXED: Removed pop-up from audio encoding, deinteralce test, and movielenght (remain autoresize and final encoding)
FIXED: DLP to DPL ... typos (thanks to glynor)
FIXED: When selecting -CBR or -CR in Advanced audio settings, for Nero AAC Enc, the bitrate will be displayed correctly (thanks to vgiozo)
FIXED: When selecting Don't care about size the X264 profile was not correctly set
UPDATE: Tivtc to 1.0.1, downgraded DgIndex to 1.4.9 beta 12, MKVMerge 2.0.2
@Huerta
please retry with this full package ! thanks !!
@Surlyrich
can you demux (audio and video) with videoredo the file ? if so do it
then point automkv to your m2v (or video only file), automkv will ask for audio, select your audio
configure remaining settings and start encode (don't check use projectx)
about stretch: on advanced settings do a manual crop or try "force muxing AR" to 16:9
@dlflannery
there isn't randomness on IT, just ordered chaos and entropy, some settings will trigger the switch...
BHH
DarkZell666
26th February 2007, 13:40
The link for the package without DVDFabDecrypter hasn't been copy/pasted properly I believe :)
buzzqw
26th February 2007, 13:52
Thanks DarkZell666 !
link fixed
BHH
Huerta
26th February 2007, 14:07
Man I just tried it but it still the same problem lol. It rips the subs and transcodes the audio just fine but it can't encode to Xvid. Heres the log. I think it happens somewhere in the section I bolded
06:51:26 0.76 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
06:51:26 Selected Input file: C:\DBZ\New Folder\VTS_02_0.IFO
06:51:26 Selected Output dir: C:\DBZ\New Folder\temp\
06:51:26 Selected Final Name: ep8
06:51:26 Selected Container type: MKV
06:51:26 Selected Encoder: XviD
06:51:26 Selected Size: 1 CD
06:51:26 Selected Slice: 1
06:51:26 Selected Profile: XviD_CQ.xml
06:51:26 Selected Width: 720
06:51:26 Selected Resizer: NONE
06:51:26 Selected Filters: MipSmooth(preset = "AnimeHQ")
06:51:26 Selected Deinterlacer: AUTO
06:51:26 Selected Field Order: AUTO
06:51:26 NeroAACEnc.exe: not present
06:51:26 Enabled CRF/CQ AutoRes at 3 value
06:51:26 Using Matrix: Sharktooth's EQM v3LR.cqm
06:51:26 Track Language 1: All Audio Tracks
06:51:26 Audio Codec 1: Ogg Vorbis
06:51:26 Audio Quality 1: 5
06:51:26 Audio Channel 1: Stereo
06:51:26 Advanced Audio Settings DUMP Track 1
06:51:26 Nero Option Profiles: AUTO --- Encoding Mode: Quality
06:51:26 CCT Option Profiles: AUTO --- Channel Options: AUTO
06:51:26 Lame Settings: VBR
06:51:26 Audio Normalization: 1
06:51:26 Frequency: AUTO --- Tempo : NONE
06:51:26 Pitch: NONE --- Other Add :
06:51:26 Advanced Audio Settings DUMP Track 2
06:51:26 Nero Option Profiles: AUTO --- Encoding Mode: Quality
06:51:26 CCT Option Profiles: AUTO --- Channel Options: AUTO
06:51:26 Lame Settings: VBR
06:51:26 Audio Normalization: 1
06:51:26 Frequency: AUTO --- Tempo : NONE
06:51:26 Pitch: NONE --- Other Add :
06:51:26 Selected 1' Sub tracks: RIP ALL SUBS
06:51:26 Activate Anamorphic Encoding
06:51:26 Selected Unlimited media size
06:51:26 Starting SubRipping
06:52:04 Subtitle Size: 679936 bytes
06:52:04 Finished SubRipping
06:53:03 Starting fixing all audio files
06:53:03 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\New Folder\temp\fixed1.ac3" "C:\DBZ\New Folder\temp\movie T01 3_2ch 448Kbps DELAY -200ms.ac3"
06:53:18 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\New Folder\temp\fixed2.ac3" "C:\DBZ\New Folder\temp\movie T02 2_0ch 192Kbps DELAY -200ms.ac3"
06:53:25 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\New Folder\temp\fixed3.ac3" "C:\DBZ\New Folder\temp\movie T03 2_0ch 192Kbps DELAY -200ms.ac3"
06:53:31 Encoding C:\DBZ\New Folder\temp\fixed1.ac3 to Ogg with 5 quality
06:56:39 Encoding C:\DBZ\New Folder\temp\fixed2.ac3 to Ogg with 5 quality
06:58:38 Encoding C:\DBZ\New Folder\temp\fixed3.ac3 to Ogg with 5 quality
07:00:26 ForceFilm Detected: 99.900002% FILM found
07:00:35 Number of Frames: 37289
07:00:35 Framerate: 29.970030
07:00:35 Movie lenght in Seconds: 1245
07:00:35 Movie Width: 720
07:00:35 Movie Height: 480
07:03:34 Processing completed. Type is determined to be partly film.
07:03:34 Processing completed. Type is determined to be partly film.
07:03:34 BFF: 21
07:03:34 TFF: 174
07:03:34 Order: tff
07:03:35 CQ encoding XviD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\encoder\xvid_encraw.exe -cq 3 -progress -threads 1 -max_bframes 2 -imax 31 -quality 6 -vhqmode 1 -qtype 0 -pmax 31 -bmax 31 -framerate 29.970 -bquant_ratio 162 -bquant_offset 0 -nopacked -nochromame -noclosed_gop -bvhq -qmatrix "C:\Documents and Settings\Owner\Desktop\AutoMKV076\profiles\XviD-profiles\matrix\Sharktooth's EQM v3LR.cqm" -i "C:\DBZ\New Folder\temp\movie.avs" -type 2 -mkv "C:\DBZ\New Folder\temp\movie.mkv"
07:03:48 Accepted values are between 697303040 and 741343232 bytes (movie+audio)
07:03:48 Got a file of size: -1 bytes + audio size 61284636 bytes (61624604)
07:03:48 C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\matroska\mkvmerge.exe" -o "C:\DBZ\New Folder\temp\ep8.mkv_pre" --track-name -1:"ep8" --aspect-ratio 0:1.777778 --chapters "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\chapters.txt" "C:\DBZ\New Folder\temp\movie.mkv" "C:\DBZ\New Folder\temp\audio1.ogg" "C:\DBZ\New Folder\temp\audio2.ogg" "C:\DBZ\New Folder\temp\audio3.ogg" "C:\DBZ\New Folder\temp\ep8.idx" --title "Done with AutoMKV 0.76 http://forum.doom9.org/showthread.php?p=854221 "
07:03:49 Final Muxed size: -1 bytes
07:03:49 Encoding finished: 00:12:23 elapsed time
07:03:49 -----------------------------------------------------------------------
07:03:49 Script AutoCrop.log
07:03:49
07:03:49 Crop(10,0,700,480)
07:03:49 -----------------------------------------------------------------------
07:03:49 Script Resmovie.avs
07:03:49
07:03:49 -----------------------------------------------------------------------
07:03:49 Script movie.avs
07:03:49
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\autocrop.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\BicublinResize.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\blockbuster.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\cnr2.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\ColorMatrix.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Convolution3D.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\corrector.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\DctFilter.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Decomb.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Deen.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\degrainmedian.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\DGDecode.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\EEDI2.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\fft3dfilter.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\FluxSmooth.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\frfun7.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\hqdn3d.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\LeakKernelDeint.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\MaskTools.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\medianblur.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\MipSmooth.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\mt_masktools.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\mvtools.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\NicAudio.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RemoveGrain.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Repair.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\SangNom.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\SimpleResize.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TBilateral.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TDeint.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TIVTC.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TomsMoComp.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TTempSmooth.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\UnDot.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\UnFilter.dll")
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\VSFilter.dll")
07:03:49 #loadpluginstart
07:03:49
07:03:49 #test1
07:03:49
07:03:49 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\MCBob_v03c.avsi")
07:03:49 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\mvbob.avsi")
07:03:49 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\seesaw.avsi")
07:03:49 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\spresso.avsi")
07:03:49 #importstart
07:03:49
07:03:49 #test2
07:03:49
07:03:49 movie = mpeg2source("C:\DBZ\New Folder\temp\movie.d2v")
07:03:49 function getOrder(clip c) {
07:03:49 order = GetParity(c) ? 1 : 0
07:03:49 Return order }
07:03:49 #filter1start
07:03:49
07:03:49 #test3
07:03:49
07:03:49 #cropstart
07:03:49
07:03:49 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
07:03:49 fixed_aspect = 1
07:03:49 c_width = width(cropclip)
07:03:49 c_height = Round(height(cropclip) / fixed_aspect)
07:03:49 input_par = float(float(c_width)/float(c_height))
07:03:49 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
07:03:49 out_width = 720
07:03:49 out_height = Round(float(out_width) / input_par)
07:03:49 hmod = out_height - (floor(out_height / 16 ) * 16)
07:03:49 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
07:03:49 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
07:03:49 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
07:03:49
07:03:49 last = movie
07:03:49 edeintted = AssumeTFF().SeparateFields().SelectEven().EEDI2(field=-1)
07:03:49 tdeintted = TDeint(edeint=edeintted,order=1)
07:03:49 tfm(order=1,clip2=tdeintted).tdecimate(hybrid=3)
07:03:49 #resizestart
07:03:49
07:03:49 #test4
07:03:49
07:03:49 #filter2start
07:03:49
07:03:49 #test5
07:03:49
07:03:49 MipSmooth(preset = "AnimeHQ")
07:03:49 ColorMatrix("Rec.709->Rec.601",hints=false,threads=0)
07:03:49 -----------------------------------------------------------------------
07:03:49 Script mkvmaudio.avs
07:03:49
07:03:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\NicAudio.dll")
07:03:49 NicAC3Source("C:\DBZ\New Folder\temp\fixed3.ac3")
07:03:49 EnsureVBRMP3Sync()
07:03:49 ConvertAudioTo16bit()
07:03:49 #Applyed STEREO downmixing routines
07:03:49 function stereo(clip a)
07:03:49 {
07:03:49 fl = GetChannel(a, 1)
07:03:49 fr = GetChannel(a, 2)
07:03:49 c = GetChannel(a, 3)
07:03:49 lfe = GetChannel(a, 4)
07:03:49 sl = GetChannel(a, 5)
07:03:49 sr = GetChannel(a, 6)
07:03:49 l_sl = MixAudio(fl, sl, 0.2929, 0.2929)
07:03:49 c_lfe = MixAudio(lfe, c, 0.2071, 0.2071)
07:03:49 r_sr = MixAudio(fr, sr, 0.2929, 0.2929)
07:03:49 l = MixAudio(l_sl, c_lfe, 1.0, 1.0)
07:03:49 r = MixAudio(r_sr, c_lfe, 1.0, 1.0)
07:03:49 Return MergeChannels(l, r).Normalize()
07:03:49 }
07:03:49 #
07:03:49 function original(clip a)
07:03:49 {
07:03:49 Normalize(a)
07:03:49 Return last
07:03:49 }
07:03:49 6==Audiochannels() ? stereo() : original()
07:03:49 -----------------------------------------------------------------------
07:03:49 Script mkvmaudio.bat
07:03:49
07:03:49 "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\besweet\bepipe.exe" --script "Import(^C:\DBZ\New Folder\temp\mkvmaudio.avs^)" | "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\besweet\oggenc2.exe" -q 5 - -o "C:\DBZ\New Folder\temp\audio3.ogg"
07:03:49 -----------------------------------------------------------------------
07:03:49 Script mkvmaudio2.avs
07:03:49
07:03:49 -----------------------------------------------------------------------
07:03:49 Script mkvmaudio2.bat
07:03:49
07:03:49
07:03:49 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
buzzqw
26th February 2007, 14:16
open the movie.avs in virtualdub or mediaplayer classic and post the error, thanks
BHH
Huerta
26th February 2007, 14:35
In Media Player Classic it says this exactly
"" "LoadPlugin:unable to load "C:/Documents and Settings/Owner/Desktop/AutoMKV076/exe/filter/RemoveGrain.dll"
(C:/DBZ/New Folder/temp/movie.avs, line 25)""
buzzqw
26th February 2007, 14:45
yes !
you need the big static version of removegrain ! (maybe cpu related)
download this
http://www.64k.it/andres/data/avisynth/RemoveGrain10.rar
remove the removegrain.dll from \exe\filter folder and
extract RemoveGrainS.dll into this folder
restart automkv ! :)
please post the update !
BHH
Huerta
26th February 2007, 15:09
Damn lol it's still no good. Heres the log
07:53:22 0.76 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
07:53:22 Selected Input file: C:\DBZ\New Folder\VTS_02_0.IFO
07:53:22 Selected Output dir: C:\DBZ\New Folder\temp\
07:53:22 Selected Final Name: VTS_02_0
07:53:22 Selected Container type: MKV
07:53:22 Selected Encoder: XviD
07:53:22 Selected Size: 1 CD
07:53:22 Selected Slice: 1
07:53:22 Selected Profile: XviD_CQ.xml
07:53:22 Selected Width: 720
07:53:22 Selected Resizer: NONE
07:53:22 Selected Filters: RemoveGrain(mode=2)
07:53:22 Selected Deinterlacer: AUTO
07:53:22 Selected Field Order: AUTO
07:53:22 NeroAACEnc.exe: not present
07:53:22 Enabled CRF/CQ AutoRes at 3 value
07:53:22 Using Matrix: Sharktooth's EQM v3LR.cqm
07:53:22 Track Language 1: All Audio Tracks
07:53:22 Audio Codec 1: Ogg Vorbis
07:53:22 Audio Quality 1: 5
07:53:22 Audio Channel 1: Stereo
07:53:22 Advanced Audio Settings DUMP Track 1
07:53:22 Nero Option Profiles: AUTO --- Encoding Mode: Quality
07:53:22 CCT Option Profiles: AUTO --- Channel Options: AUTO
07:53:22 Lame Settings: VBR
07:53:22 Audio Normalization: 1
07:53:22 Frequency: AUTO --- Tempo : NONE
07:53:22 Pitch: NONE --- Other Add :
07:53:22 Advanced Audio Settings DUMP Track 2
07:53:22 Nero Option Profiles: AUTO --- Encoding Mode: Quality
07:53:22 CCT Option Profiles: AUTO --- Channel Options: AUTO
07:53:22 Lame Settings: VBR
07:53:22 Audio Normalization: 1
07:53:22 Frequency: AUTO --- Tempo : NONE
07:53:22 Pitch: NONE --- Other Add :
07:53:22 Selected 1' Sub tracks: RIP ALL SUBS
07:53:22 Selected Unlimited media size
07:53:22 Starting SubRipping
07:53:58 Subtitle Size: 679936 bytes
07:53:58 Finished SubRipping
07:54:51 Starting fixing all audio files
07:54:51 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\New Folder\temp\fixed1.ac3" "C:\DBZ\New Folder\temp\movie T01 3_2ch 448Kbps DELAY -200ms.ac3"
07:55:03 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\New Folder\temp\fixed2.ac3" "C:\DBZ\New Folder\temp\movie T02 2_0ch 192Kbps DELAY -200ms.ac3"
07:55:09 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\New Folder\temp\fixed3.ac3" "C:\DBZ\New Folder\temp\movie T03 2_0ch 192Kbps DELAY -200ms.ac3"
07:55:15 Encoding C:\DBZ\New Folder\temp\fixed1.ac3 to Ogg with 5 quality
07:58:14 Encoding C:\DBZ\New Folder\temp\fixed2.ac3 to Ogg with 5 quality
08:00:17 Encoding C:\DBZ\New Folder\temp\fixed3.ac3 to Ogg with 5 quality
08:02:22 ForceFilm Detected: 99.900002% FILM found
08:02:30 Number of Frames: 37289
08:02:30 Framerate: 29.970030
08:02:30 Movie lenght in Seconds: 1245
08:02:30 Movie Width: 720
08:02:30 Movie Height: 480
08:05:41 Processing completed. Type is determined to be partly film.
08:05:41 Processing completed. Type is determined to be partly film.
08:05:41 BFF: 21
08:05:41 TFF: 174
08:05:41 Order: tff
08:05:41 CQ encoding XviD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\encoder\xvid_encraw.exe -cq 3 -progress -threads 1 -max_bframes 2 -imax 31 -quality 6 -vhqmode 1 -qtype 0 -pmax 31 -bmax 31 -framerate 29.970 -bquant_ratio 162 -bquant_offset 0 -nopacked -nochromame -noclosed_gop -bvhq -qmatrix "C:\Documents and Settings\Owner\Desktop\AutoMKV076\profiles\XviD-profiles\matrix\Sharktooth's EQM v3LR.cqm" -i "C:\DBZ\New Folder\temp\movie.avs" -type 2 -mkv "C:\DBZ\New Folder\temp\movie.mkv"
08:05:48 Accepted values are between 697303040 and 741343232 bytes (movie+audio)
08:05:48 Got a file of size: -1 bytes + audio size 61284636 bytes (61624604)
08:05:48 C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\matroska\mkvmerge.exe" -o "C:\DBZ\New Folder\temp\VTS_02_0.mkv_pre" --track-name -1:"VTS_02_0" --aspect-ratio 0:1.777778 --chapters "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\chapters.txt" "C:\DBZ\New Folder\temp\movie.mkv" "C:\DBZ\New Folder\temp\audio1.ogg" "C:\DBZ\New Folder\temp\audio2.ogg" "C:\DBZ\New Folder\temp\audio3.ogg" "C:\DBZ\New Folder\temp\VTS_02_0.idx" --title "Done with AutoMKV 0.76 http://forum.doom9.org/showthread.php?p=854221 "
08:05:49 Final Muxed size: -1 bytes
08:05:49 Encoding finished: 00:12:27 elapsed time
08:05:49 -----------------------------------------------------------------------
08:05:49 Script AutoCrop.log
08:05:49
08:05:49 Crop(10,0,700,480)
08:05:49 -----------------------------------------------------------------------
08:05:49 Script Resmovie.avs
08:05:49
08:05:49 -----------------------------------------------------------------------
08:05:49 Script movie.avs
08:05:49
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\autocrop.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\BicublinResize.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\blockbuster.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\cnr2.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\ColorMatrix.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Convolution3D.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\corrector.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\DctFilter.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Decomb.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Deen.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\degrainmedian.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\DenoiseSharpen.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\DGDecode.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\EEDI2.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\fft3dfilter.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\FluxSmooth.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\frfun7.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\hqdn3d.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\LeakKernelDeint.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\MaskTools.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\medianblur.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\MipSmooth.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\mt_masktools.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\mvtools.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\NicAudio.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RemoveGrain.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RemoveGrainS.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RemoveGrainSSE2.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RemoveGrainSSE3.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Repair.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RepairS.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RepairSSE2.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RepairSSE3.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RSharpen.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RSharpenS.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RSharpenSSE2.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RSharpenSSE3.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\SangNom.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\SimpleResize.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TBilateral.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TDeint.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TIVTC.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TomsMoComp.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TTempSmooth.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\UnDot.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\UnFilter.dll")
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\VSFilter.dll")
08:05:49 #loadpluginstart
08:05:49
08:05:49 #test1
08:05:49
08:05:49 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\MCBob_v03c.avsi")
08:05:49 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\mvbob.avsi")
08:05:49 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\seesaw.avsi")
08:05:49 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\spresso.avsi")
08:05:49 #importstart
08:05:49
08:05:49 #test2
08:05:49
08:05:49 movie = mpeg2source("C:\DBZ\New Folder\temp\movie.d2v")
08:05:49 function getOrder(clip c) {
08:05:49 order = GetParity(c) ? 1 : 0
08:05:49 Return order }
08:05:49 #filter1start
08:05:49
08:05:49 #test3
08:05:49
08:05:49 #cropstart
08:05:49
08:05:49 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
08:05:49 fixed_aspect = 1.185185
08:05:49 c_width = width(cropclip)
08:05:49 c_height = Round(height(cropclip) / fixed_aspect)
08:05:49 input_par = float(float(c_width)/float(c_height))
08:05:49 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
08:05:49 out_width = 720
08:05:49 out_height = Round(float(out_width) / input_par)
08:05:49 hmod = out_height - (floor(out_height / 16 ) * 16)
08:05:49 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
08:05:49 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
08:05:49 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
08:05:49
08:05:49 last = movie
08:05:49 tfm(d2v="C:\DBZ\New Folder\temp\movie.d2v").tdecimate(hybrid=3)
08:05:49 #resizestart
08:05:49
08:05:49 #test4
08:05:49
08:05:49 #filter2start
08:05:49
08:05:49 #test5
08:05:49
08:05:49 RemoveGrain(mode=2)
08:05:49 ColorMatrix("Rec.709->Rec.601",hints=false,threads=0)
08:05:49 -----------------------------------------------------------------------
08:05:49 Script mkvmaudio.avs
08:05:49
08:05:49 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\NicAudio.dll")
08:05:49 NicAC3Source("C:\DBZ\New Folder\temp\fixed3.ac3")
08:05:49 EnsureVBRMP3Sync()
08:05:49 ConvertAudioTo16bit()
08:05:49 #Applyed STEREO downmixing routines
08:05:49 function stereo(clip a)
08:05:49 {
08:05:49 fl = GetChannel(a, 1)
08:05:49 fr = GetChannel(a, 2)
08:05:49 c = GetChannel(a, 3)
08:05:49 lfe = GetChannel(a, 4)
08:05:49 sl = GetChannel(a, 5)
08:05:49 sr = GetChannel(a, 6)
08:05:49 l_sl = MixAudio(fl, sl, 0.2929, 0.2929)
08:05:49 c_lfe = MixAudio(lfe, c, 0.2071, 0.2071)
08:05:49 r_sr = MixAudio(fr, sr, 0.2929, 0.2929)
08:05:49 l = MixAudio(l_sl, c_lfe, 1.0, 1.0)
08:05:49 r = MixAudio(r_sr, c_lfe, 1.0, 1.0)
08:05:49 Return MergeChannels(l, r).Normalize()
08:05:49 }
08:05:49 #
08:05:49 function original(clip a)
08:05:49 {
08:05:49 Normalize(a)
08:05:49 Return last
08:05:49 }
08:05:49 6==Audiochannels() ? stereo() : original()
08:05:49 -----------------------------------------------------------------------
08:05:49 Script mkvmaudio.bat
08:05:49
08:05:49 "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\besweet\bepipe.exe" --script "Import(^C:\DBZ\New Folder\temp\mkvmaudio.avs^)" | "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\besweet\oggenc2.exe" -q 5 - -o "C:\DBZ\New Folder\temp\audio3.ogg"
08:05:49 -----------------------------------------------------------------------
08:05:49 Script mkvmaudio2.avs
08:05:49
08:05:49 -----------------------------------------------------------------------
08:05:49 Script mkvmaudio2.bat
08:05:49
08:05:49
08:05:49 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
Here is the error in Media Player Classic
"" "LoadPlugin:unable to load "C:/Documents and Settings/Owner/Desktop/AutoMKV076/exe/filter/DenoiseSharpen.dll"
(C:/DBZ/New Folder/temp/movie.avs, line 12)""
buzzqw
26th February 2007, 15:15
remove it, i said to put only removegrainS.dll (and remove DenoiseSharpen.dll,RemoveGrain.dll,RemoveGrain.cpp,RemoveGrainSSE2.dll,RemoveGrainSSE3.dll,Repair.dll, and all RSharpen*.*)
your cpu isn't SSE2 capable
BHH
Huerta
26th February 2007, 15:21
Alright I removed all the ones you mentioned, I also removed the RepairSSE2 and SSE3 if that's okay.
buzzqw
26th February 2007, 15:27
should be ok !
if any problem remove all \exe\filter folder and use the installation one's, then remove removegrain.dll from \exe\filter folder and extract RemoveGrainS.dll into this folder
BHH
Huerta
26th February 2007, 15:38
IT'S ENCODING. Thank the lord it's encoding. *Tears of Joy*
buzzqw
26th February 2007, 15:51
:goodpost:
thanks, for your patience... most user will have dropped with such problems !
i hope good results... since your source is an hybrid film...
BHH
dlflannery
26th February 2007, 16:19
New full Package ! 0.76
stable NEW package WITH DVDFabDecrypter www.64k.it/andres/data/a/AutoMKV076.rar (8.14mb, all inclusive, NO install)
BHH
Thanks for your good work! :thanks:
@dlflannery
there isn't randomness on IT, just ordered chaos and entropy, some settings will trigger the switch...
BHH
OK! OK! As a good psuedo-random number generator algorithm demonstrates, it can be difficult for a human to distinguish between "ordered chaos" and true random-ness. :D
But if I repeat an identical encoding (i.e., encode, then just change nothing and hit the Start Encoding button again) would you expect this audio bitrate change to still be possible? (And I suppose you are now wondering: why would he do that? Answer: Just to test the "ordered chaos"!)
Question about AVS input:
When you source AVS, it asks for two audio track files. I was able to ignore (cancel) these two inputs and get a good result by defining a valid "audio" clip variable in my source AVS script. Is this an intended way of operation or did I just find a work-around to supplying the separate audio track file(s)?
Shark_jlc
26th February 2007, 16:24
I look forward to trying out the new release tonight!
Also, if anyone can add information to the filters wiki page, it would be appreciated. I have NO clue what the filters do :/
http://automkv.wiki-site.com/index.php/Filters
buzzqw
26th February 2007, 16:34
i will try to put some info... thanks for the reminder !
BHH
buzzqw
26th February 2007, 16:56
@dlflannery
When you source AVS, it asks for two audio track files. I was able to ignore (cancel) these two inputs and get a good result by defining a valid "audio" clip variable in my source AVS script. Is this an intended way of operation or did I just find a work-around to supplying the separate audio track file(s)? :goodpost:
it's a GOOD work-around... remember that zune and all wmv encoding use the wmencoder AND avisynth to handle both audio and video
BHH
TheRyuu
26th February 2007, 17:06
Yea, in 076 I still get the audio wasn't encoded properly as in this post (http://forum.doom9.org/showpost.php?p=960213&postcount=1122).
Kinda figured it would happen again. Any idea whats wrong?
dlflannery
26th February 2007, 17:10
@dlflannery
it's a GOOD work-around... remember that zune and all wmv encoding use the wmencoder AND avisynth to handle both audio and video
BHH
So if I did not use this work-around, what should the audio files be? Can they be either actual audio files (.e.g., .mp3) and/or other AVS scripts that define the audio?
Thanks
buzzqw
26th February 2007, 17:54
@wizboy11
i am waiting for attachement approval
could be that audio is demuxed and wrongly recognized and DTS while being AC3
open the mkvmaudio.avs and change the nicdtssource to nicac3source and start the mkvmaudio.bat
if error: change nicac3source with directshowsource !
@dlflannery
i must check...
BHH
TheRyuu
26th February 2007, 18:51
Yea, thats what I was thinking, it was being somehow screwed up and said it was a dts when it was really an ac3 file.
But that still doesn't explain the first encode failing since they're both recognized as ac3 files (thats with DelayCut).
Well if you don't want to wait then here:
http://rapidshare.com/files/18408263/audio.rar.html
It has the mkvaudio and mkvaudio2 just like specified in the post. mkvaudio is for the first one and mkvaudio2 is for the second one.
buzzqw
26th February 2007, 19:40
@wizboy11
could you post the movie xxx xxx.log (should be 2 files, one per audio) , is generated by delaycut
thanks
BHH
TheRyuu
26th February 2007, 20:20
@wizboy11
could you post the movie xxx xxx.log (should be 2 files, one per audio) , is generated by delaycut
thanks
BHH
Sure.
And another thing I've noticed is that AFAIK it doesn't matter what kind of audio you choose, I tried Vorbis and Lame and both got the same error.
I'm not sure if there's two different problems here. One problem arises if you use DelayCut and another if you don't although I'm not sure.
Both of these are for the encode with DelayCut checked.
Is there really a bug or am I just doing something wrong. ;) :p
movie t01 2_0ch 192kbps delay 467ms_log.txt:
[Input info]
Bitrate=192
Actual rate=192.000000
Sampling Frec=48000
TotalFrames=46201
Bytesperframe= 768.0000
Filesize=35482368
FrameDuration= 32.0000
Framespersecond= 31.2500
Duration=00:24:38.432
Channels mode=2/0: L+R
LFE=LFE: Not present
[Target info]
StartFrame=-15
EndFrame=46200
NotFixedDelay=-13.0000
Duration=00:24:38.912
====== PROCESSING LOG ======================
Number of written frames = 46216
Number of Errors= 0
And for the 2nd audio track:
movie t02 2_0ch 192kbps delay 0ms_log.txt:
[Input info]
Bitrate=192
Actual rate=192.000000
Sampling Frec=48000
TotalFrames=46216
Bytesperframe= 768.0000
Filesize=35493888
FrameDuration= 32.0000
Framespersecond= 31.2500
Duration=00:24:38.912
Channels mode=2/0: L+R
LFE=LFE: Not present
[Target info]
StartFrame=0
EndFrame=46215
NotFixedDelay= 0.0000
Duration=00:24:38.912
====== PROCESSING LOG ======================
Number of written frames = 46216
Number of Errors= 0
buzzqw
26th February 2007, 20:48
surely there is some problem within those audio files
last one try
don't check use delay cut, check force directshowsource
:fingercrossed: :angry:
BHH
briancl
26th February 2007, 21:11
I am getting no audio on my encodes regardless of codec. The only way I can get sound in my mkv's is by selecting "Copy original". I am selecting "Use ProjectX for TS files" and deselcting DelayCut, which is required for TS files, but no matter what I try, I get no audio if I compress the audio (Nero, Lame, Ogg, Coding Tech).
I have had this problem with the .75 version, and I just tried with .76 without any difference. I am trying to encode a .ts 1080 rip and I've tried different source files that were ripped with different systems at different encoding (dd20 and dd51).
I noticed that ProjectX pulls out the audio stream and creates the .ac3 file, but after the "Encoding fixed1.ac3 to NeroAAC with 0.35 quality", the ac3 file disappears, and the .mp4 file that is created is only 5kb. Obviously this .mp4 file should be larger if it contains an hour of audio. I am including all of the log files so that you can take a look... Thanks
buzzqw
26th February 2007, 23:04
@briancl
launch mkvmaudio.bat and spot the error
most probably in your ts files there are mixed audio channel, like 5.1 for film and 2 for spot, if so audio encoder will crash
try this: on advanced audio check use projectX AND use custom X.ini
then retry the encode
keep me informed !
BHH
TheRyuu
27th February 2007, 00:19
surely there is some problem within those audio files
last one try
don't check use delay cut, check force directshowsource
:fingercrossed: :angry:
BHH
Tried that and I got a "BREAK- File not supported"
bhh
27th February 2007, 01:21
ADDED: Now is possible to queue works while use Specify Quality (suggestion by bhh)
FIXED: It's now possible to encode the same audio track with Copy Original and any other codec (Copy Original in first box, Lame in second... as example) (or Lame and Ogg...) (thanks to glynor)
Both confirmed working properly here. :thanks:
leiming2006
27th February 2007, 06:22
I keep looking for somthing convenient to encode wmv. That's really a good software.
Now downloading...
briancl
27th February 2007, 06:52
@briancl
launch mkvmaudio.bat and spot the error
most probably in your ts files there are mixed audio channel, like 5.1 for film and 2 for spot, if so audio encoder will crash
try this: on advanced audio check use projectX AND use custom X.ini
then retry the encode
keep me informed !
BHH
thanks for the suggestions.. I tried them both..
I tried running with the Custom X.ini option selected, but nothing happens. When I hit start encoding, it very quickly flashes the "using projectx to demux" and then immediately jumps to "fixing audio" But there is no audio to fix. It hangs there indefinitely.
here's the log:
21:47:04 0.76 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
21:47:04 Selected Input file: I:\videos\sopranos\ts0501-1080i-dd51.ts
21:47:04 Selected Output dir: I:\videos\sopranos\temp\
21:47:04 Selected Final Name: ts0501-1080i-dd51
21:47:04 Selected Container type: MKV
21:47:04 Selected Encoder: X264
21:47:04 Selected Size: 1/3 DVD-R
21:47:04 Selected Slice: 1
21:47:04 Selected Profile: Encoding-Mainprofile.xml
21:47:04 Selected Width: 1280
21:47:04 Selected Resizer: Lanczos4Resize
21:47:04 Selected Filters: RemoveGrain(mode=2)
21:47:04 Selected Deinterlacer: AUTO
21:47:04 Selected Field Order: AUTO
21:47:04 Enabled CRF/CQ AutoRes at 18 value
21:47:04 Track Language 1: PID 0014, Private AC3 Audio Stream 1
21:47:04 Audio Codec 1: Nero AAC
21:47:04 Audio Quality 1: 0.35
21:47:04 Audio Channel 1: Stereo
21:47:04 Advanced Audio Settings DUMP Track 1
21:47:04 Nero Option Profiles: AUTO --- Encoding Mode: Quality
21:47:04 CCT Option Profiles: AUTO --- Channel Options: AUTO
21:47:04 Lame Settings: VBR
21:47:04 Audio Normalization: 0
21:47:04 Frequency: AUTO --- Tempo : NONE
21:47:04 Pitch: NONE --- Other Add :
21:47:04 Advanced Audio Settings DUMP Track 2
21:47:04 Nero Option Profiles: AUTO --- Encoding Mode: Quality
21:47:04 CCT Option Profiles: AUTO --- Channel Options: AUTO
21:47:04 Lame Settings: VBR
21:47:04 Audio Normalization: 1
21:47:04 Frequency: AUTO --- Tempo : NONE
21:47:04 Pitch: NONE --- Other Add :
21:47:04 Activate use ProjectX
21:47:04
21:47:04 Demuxing with C:\Documents and Settings\briancl\Desktop\Software\AutoMKV076\exe\dgindex\ProjectX.jar -log -id 0x0011,0x0014 -ini C:\Documents and Settings\briancl\Desktop\Software\AutoMKV076\exe\DGIndex\X.ini -out "I:\videos\sopranos\temp" "I:\videos\sopranos\ts0501-1080i-dd51.ts"
21:47:05 Not fixing audio files
If I run the mkvmaudio.bat, I get:
***************************************
BePipe by dimzon
***************************************
Script used:
# BEGIN
Import("I:\videos\sopranos\1\mkvmaudio.avs")
# END
Scanning for Audio Stream...
Found Audio Stream
Channels=2, BitsPerSample=16, SampleRate=48000Hz
Writing Header...
Writing Data...
0%ERROR: AVIStreamRead returned error.
buzzqw
27th February 2007, 08:52
there is something strange...
21:47:04 Demuxing with C:\Documents and Settings\briancl\Desktop\Software\AutoMKV076\exe\dgindex\ProjectX.jar -log -id 0x0011,0x0014 -ini C:\Documents and Settings\briancl\Desktop\Software\AutoMKV076\exe\DGIndex\X.ini -out "I:\videos\sopranos\temp" "I:\videos\sopranos\ts0501-1080i-dd51.ts"
21:47:05 Not fixing audio files
1 seconds for demuxing audio ? to short !
maybe related to long path... please try moving all atuomkv folder from desktop to c:\apps\automkv
and, using projectx and use custom x.ini retry the encode.
if no audio is extracted try without checking Use projectx :)
@wizboy11
your audios are definitively broken
please do this
encode the audio with besweet or other audio encoder
open automkv, on input feed the d2v already created by automkv when asked for audio point to your encoded audio and select copy original
one more: with autogk the encoding is ok ?
BHH
Huerta
27th February 2007, 10:37
Me again lol. Well the episodes turned out much better than I expected. The only problem that I had was with the subtitles. I don't if you could help me with that but they are really off by a couple minutes, and some of them don't even show up. I can tell since I compared it with the origianal VOB. I think I know why though, although I don't know if you want me to explain it.
Shark_jlc
27th February 2007, 16:35
What do the new logo buttons do?
sillKotscha
27th February 2007, 17:19
What do the new logo buttons do?
show logos ;)
Shark_jlc
27th February 2007, 17:20
show logos ;)
heh - I click and I click and I click though... lol.
buzzqw
27th February 2007, 20:09
you can click those button while waiting for encoding :D
seriusly, on click i can open the matroska.org page or wme encoder page or media player classic page or mp4. ,x264.nl or xvid.org or... ?
if anyone have good suggestion feel free to suggest
BHH
Shark_jlc
27th February 2007, 20:16
you can click those button while waiting for encoding :D
seriusly, on click i can open the matroska.org page or wme encoder page or media player classic page or mp4. ,x264.nl or xvid.org or... ?
if anyone have good suggestion feel free to suggest
BHH
Maybe have it go to a specific part of the AutoMKV wiki (or just wikipedia) that either describes the containers/codecs in general, or that particular container/codec?
buzzqw
27th February 2007, 20:22
could be a good idea!
i will try (or simply update if already done) to update the container, codec and filter page on weekend
BHH
briancl
27th February 2007, 23:24
there is something strange...
1 seconds for demuxing audio ? to short !
maybe related to long path... please try moving all atuomkv folder from desktop to c:\apps\automkv
and, using projectx and use custom x.ini retry the encode.
if no audio is extracted try without checking Use projectx :)
The path thing made the "Use Custom X.ini" work, but I'm still getting a 5kb audio1.mp4 file
If I deselect "Use ProjectX" and deselect "Allow use of delaycut", then I get an error (after it pulls out the audio file) "Audio did not encode properly, continue?" And I'm left with a 5kb audio.mp4 file, again...
If I run the mkvmaudio.bat again... i get the same error message:
* *
* Package build date: Feb 12 2007 *
* *
* See -help for a complete list of available parameters. *
* *
*************************************************************
***************************************
BePipe by dimzon
***************************************
Script used:
# BEGIN
Import("I:\videos\sopranos\temp\mkvmaudio.avs")
# END
Scanning for Audio Stream...
Found Audio Stream
Channels=2, BitsPerSample=16, SampleRate=48000Hz
Writing Header...
Writing Data...
0%ERROR: AVIStreamRead returned error.
what does this mean? is there a way to turn on debugging or some verbose error messages.
dlflannery
28th February 2007, 07:30
I've run some experiments with AVS sourcing for both WMV and AVI/XVID encodings. When you load an AVS source the program asks for one or two audio files. I had already discovered that when encoding to WMV you can skip (cancel) the audio inputs as long as your input AVS script defines a valid "audio" variable.
The question I wanted to answer for both XVID and WMV encoding was which of three approaches for sourcing the audio track(s) works, when the video source is AVS:
1. Defining the audio variable in the sourced AVS script and not providing any separate audio track files in response to the two prompts.
2. Loading a separate audio file (e.g., .mp3, .wav).
3. Loading a separate audio-sourcing AVS file.
What my experiments suggest is:
1. For XVID encodings, the only way to input the audio is as a separate audio file. The other two approaches resulted in no audio (.mp3) file being produced and thus a muxer crash.
2. For WMV encodings the only way to input the audio is to define a valid audio clip variable named "audio" in the video input AVS file. This is because the movie.avs file simply imports the sourced video AVS and does a few processing commands on the "audio" variable before sourcing into the WMEncoder.
My original motivation for AVS sourcing was so I could splice several clips together in the AVS file. This is possilble for WMV encoding, but for AVI/XVID encoding you would have to generate the demuxed and spliced separate audio file (perhaps with VirtualDubMod as I did for these experiments), or splice the source clips (video and audio) with another program (perhaps VirualDubMod ?) and then source the spliced video in non-AVS form into AutoMKV. To put it another way, what would be the recommended way to splice two or more AVI files together and re-encode to desired parameters?
Also:
During these tests, although I specified a bitrate of 500 kbps, the XVID_encraw program encoded to 1300 kbps. The 500 kbps number was even displayed in the encoding command window. This was with the Xvid_fastest profile. (??)
buzzqw
28th February 2007, 09:35
@briancl
please download this build www.64k.it/andres/data/a/AutoMKV077.exe
this build add in Advanced Settings "Use DirectShowSource for AUDIO", is my last hope for your audio.
do this: open automkv , set all options as you want in front panel , in advanced setting check use projectX, check use directshowsource for audio, DON'T check use delay cut.
i hope that is will fuction !!!!!!!!
EDIT: @WIZBOY11 please try with this solution!
@dlflannery
i will analyze your post later :)
BHH
fogbav
28th February 2007, 16:49
This sounds like the Problem i discribed month ago about the Bepipe (or/and) Delaycut thing with AC3 sound. I was not able to convert with automkv this tracks ... everytime it produced 5 KB Tracks.
http://forum.doom9.org/showthread.php?t=113811&page=25
Problem here is when AC3 has 2/0 Sound and then 3/2 Sound (Channels switching to other Mode) bepipe goes down ...8)
I posted my converting batch with besweet (fixing AC3 to 3/2)... this is still the way i go converting Audio Tracks when AC3 is in there.
But 4 everything else automkv is the best thing in the world.
P.S. : I will try the "Use DirectShowSource for AUDIO" too ...8)
buzzqw
28th February 2007, 17:46
yes fogbav, and from my test bepipe will fuction using directshowsource and a "scrambled" audio file
(it is ok on test file you had send me to test)
BHH
fogbav
28th February 2007, 17:54
Roger, Roger ...8)
eggzmon
28th February 2007, 22:29
Hi buzzqw,
Could you please help me with another problem I've been having? I've tried every interlacing setting (including changefps settings), resize options, anamorphic/ITU, and all available codecs, but each time I get one of the following problems.
- Very visable interlaced movement (like ghosting) OR
- Minor interlacing, but flashes of colour during movement.
Confused, I let AutoMKV test the file...but I'm not sure this log is of any use.
Deint.log -
BAutoDeint [info]: Number of sections of type `progressive': 1
BAutoDeint [info]: Number of sections of type `film': 16
BAutoDeint [info]: There are 0 sections with 0 frames moving.
BAutoDeint [info]: There are 3 sections with 1 frames moving.
BAutoDeint [info]: There are 8 sections with 2 frames moving.
BAutoDeint [info]: There are 64 sections with 3 frames moving.
BAutoDeint [info]: There are 36 sections with 4 frames moving.
BAutoDeint [info]: There are 21 sections with 5 frames moving.
Processing completed. Type is determined to be unknown.
:thanks:
fogbav
28th February 2007, 22:42
Hi !
V 077 doesn't save the DirectShowSource for Audio when pressing save setting in Main Window
buzzqw
1st March 2007, 00:00
@fogbav
i don't ever know that is fuctional or not and you want to save it to settings ? :eek:
i will wait for some positive feedback :)
@eggzmon
every ?... mm could you please post a sample ? (trim with digindex, and post also image of flashing) ... also.. better to ask in avisynth usage forum...
BHH
fogbav
1st March 2007, 07:52
Come on ... Sa (v) ety first ....8)
buzzqw
1st March 2007, 08:04
@dlflannery
ok, in next update i have added the possibility to specify an avs as audio input file.
in this way you can build 2 avs, one for video and one for audio, example:
for Video_input.avs:
directshowsource("C:\apps\test\movie.avi",audio=false)+directshowsource("C:\apps\test\movie.avi",audio=false)
for Audio_input.avs
directshowsource("C:\apps\test\movie.avi",video=false)+directshowsource("C:\apps\test\movie.avi",video=false)
in such way you can concatenate several movie.
This "option" will be permitteted in all encoding BUT WMV.
The wmv encoding is too complex to automatize, will be better to feed directly an avs fully customized and fuctional.
BHH
dlflannery
1st March 2007, 19:18
@buzzqw
Your planned changes for AVS input look great, :thanks:
When splicing non-WMV files, would it be possible to just use a single AVS source file like:
directShowSource("file1.avi") ++ directShowSource("file2.avi")
and thus no separate audio source file in this case?
Also, for the case of AVS input for WMV encodings, if the movie.avs file could first create the "audio" variable, then the user would not have to do that in the input AVS, e.g.,:
audio = getChannel(...,...) as the first line of movie.avs
(The arguments of getChannel would depend on the input audio, i.e., mono, stereo, 5.1). Perhaps this gets too complicated for AutoMKV to handle in a general way, so maybe it's better to leave it as is and instruct the operator that a valid "audio" clip variable must be created in the input script. (?)
I've found that for low sample rate PCM audio (e.g., 11 kHz mono), I have to resample it to 44kHz for directShow sourcing (e.g., to play in WMP11). I assume this could be always in movie.avs since resampling should not hurt even if not needed (?). (Or could logic be used so the resample only occurs if the sample rate is too low?).
Thanks again
buzzqw
1st March 2007, 19:40
When splicing non-WMV files, would it be possible to just use a single AVS source file like:directShowSource("file1.avi") ++ directShowSource("file2.avi")
yes, will be ok, just slower
and for wmv the avs must look like this
video=directShowSource("movie.avi") ++ directShowSource("movie_2.avi")
audio=directShowSource("movie.avi") ++ directShowSource("movie_2.avi")
global audio=getchannel(audio1,2)
return audiodub(video,audio)
for resampling
I have to resample it to 44kHz for directShow sourcing (e.g., to play in WMP11). I assume this could be always in movie.avs
while working with avs (and not for wmv) you can simply click advanced audio setting and select the ssrc you want
for wmv is better to but in input.avs
ssrc will not hurt if not used... hi resample could bring to bad audio... but ssrc is a very good resampler ! :)
and yes, for lame and ogg the resample will be adjusted automatically for very low bitrate
BHH
dlflannery
2nd March 2007, 07:35
Using 0.76, sourcing the following AVS script:
function makeMovie(string fileName) {
AVISource(fileName, audio = false)
}
makeMovie("C:\Video\NickPlane2006_12_27\NickPlane2.avi") ++
\ makeMovie("C:\Video\NickPlane2006_12_27\NickPlane3.avi")
For audio track 1 I input the .mp3 file with the audio that matches the two spliced files.
Encoding to AVI/DIVX. If I allow DelayCut, it goes into an infinite loop, using 100% cpu, while the fixed1.mp3 file just keeps growing. I have to shut it down in Task Manager.
If I do not allow Delay Cut, I get a good encoding BUT the original .mp3 file is GONE! Turns out it exists in the temp folder and is renamed to audio.mp3.
I have done this with stereo and mono versions of the .mp3 file and with "Use Original" and Lame audio choices. The problem with Delay Cut is the same for all cases.
Also, I orignally generated the .mp3 files files (Using AVS into GraphEdit, mp3 compressor and dump) with a low sample rate (11 kHz). In this case AutoMKV would say the audio was improperly encoded and did I want to quit? If I did not quit (and Delay Cut was not allowed) it would go ahead and encode the Xvid and the muxer would fail because there was no audio file loaded. However if I added the loading of the audio file to the muxavi file and then ran muxing.bat, a good encoding would result (??). What causes the "improperly encoded" message?
Thanks
buzzqw
2nd March 2007, 09:33
I have done this with stereo and mono versions of the .mp3 file and with "Use Original" and Lame audio choices. The problem with Delay Cut is the same for all cases.
this is a know problem of delaycut. sometime delaycut goes crazy and start growing and growing...
If I do not allow Delay Cut, I get a good encoding BUT the original .mp3 file is GONE! Turns out it exists in the temp folder and is renamed to audio.mp3.
this is ok, since you select original and so automkv will copy the audio tracks
about audio not properly encoded will be more robust in next update
BHH
Shark_jlc
2nd March 2007, 14:37
I ripped a movie using DVDFab 3.0.8.5 beta.
In AutoMKV .76 I selected the video_ts.ifo as the input.
In the "Select PGC" dropdown, I chose the main movie file at 00:35:33:29 in length.
WMV is selected for container and codec.
Right now in the windows media cmd window, it tells me the source duration is 3891.621 seconds, or, over twice the size of the file I chose.
If I add up ALL the PGC lengths I see in the drop down, I roughly come up with 64 minutes, or the 3891 seconds.
So.... what did I do wrong here? :)
gekan
2nd March 2007, 15:02
@Shark_jlc: I think you have to select "Episodic DVD/IFO" from advanced settings tab.
dlflannery
2nd March 2007, 15:15
this is ok, since you select original and so automkv will copy the audio tracks
BHH
Did you understand I was saying my original .mp3 file was deleted by AutoMKV? A copy of it exists in the temp folder under the name audio.mp3 so it can be saved by copying it back to the original folder location and renaming to the original file name. (Only if the operator realizes the copy exists and if the temp folder was not deleted.)
But I don't see how it could be "ok" for AutoMKV to delete the original source file :confused:
Thanks
Shark_jlc
2nd March 2007, 15:45
@Shark_jlc: I think you have to select "Episodic DVD/IFO" from advanced settings tab.
Hmmm, how can I tell before hand if I need to check that? This kid DVD only contains one main episode (at about 33 minutes long) and one big fat 22 minute ad for the rest of the dvd's in the series.
gekan
2nd March 2007, 15:55
Hmmm, how can I tell before hand if I need to check that? This kid DVD only contains one main episode (at about 33 minutes long) and one big fat 22 minute ad for the rest of the dvd's in the series.
Well, I don't know if you can. Probably this 22 minute ad is considered to be like a second episode. I don't know if it's an AutoMKV bug or it's a fault in the DVD.
Anyway, did this work for you?
Shark_jlc
2nd March 2007, 16:13
... Anyway, did this work for you?
I'll have to try later tonight when I'm not at work :)
buzzqw
2nd March 2007, 17:25
@Shark_jlc
how many *.ifo there is in the movie ? i suppose only 2
video_ts.ifo and vts_01_1.ifo
if so the vts_01.ifo will contain even the "one big fat 22 minute ad for the rest of the dvd's in the series"
i am near sure you have only one set of vobs like vts_01_1.vob to vts_01_99.vob, again if true the "big fat 22" is withing the vts and so IS within the final wmv
the pgc is used for subtitle ripping NOT for selecting the vts to encode
if you want process a single specific IFO you must check "Episodic DVD/IFO" AND select the specific IFO you want to use, if not done automkv will simple select the BIGGEST ifo present on dvd
EDIT: is not possible to process dvd by pgc, you must rip by pgc to do this (or feed the d2v) (but i will search..)
@dlflannery
got your point... it's true, normally this isn't a problem since i "move/rename" the file extracted from dgindex... not a file of user... i will dig it, thanks
EDIT2: in log file is written "Renamed c:\xxx.mp3 to c:\temp\xxx.mp3" ... so is "near" understable
EDIT3: fixed, now is COPIED not MOVED
BHH
Shark_jlc
2nd March 2007, 19:09
...
the pgc is used for subtitle ripping NOT for selecting the vts to encode
...
BHH
I did not know that! I did search the wiki for "PGC", but it came back blank :/
I'll check into the rest of what you said tonight at home.
Thanks!
buzzqw
2nd March 2007, 22:16
hi ALL !
i will be glad to be informormed if the new way to process audio (by directshowsource) is fuctional !
every user that had problems should try this way (and report)
THANKS !
BHH
Shark_jlc
3rd March 2007, 02:53
This is a listing of the files produced when I did a full backup via DVDFab Decrypter:
http://picasaweb.google.com/shackmiscpics/Misc/photo#5037510067493291490
If I only wanted the main movie, what is the correct settings for me to choose in AutoMKV?
Edit: To clarify my question a bit, what are the correct settings for me to choose the main movie, and not have the 22 minute commerical added to the end of the movie (I'm not questioning codec/container/audio settings at the moment) based on that file listing.
buzzqw
3rd March 2007, 14:07
direct link isn't working... no prob i got the image by browsing the misc folder
as i can see (and tell) all the videoes are in vts_01, both the episonde and the ads
i can suggest to rip with dvddrypter (not dvdfabdecrypter) and select what chapter to rip
is impossible for automkv (or autogk/megui/staxrip....) select the "chapter" you want since is within those other ads
or you create the d2v by selecting the boundaries of what you want to encode
or you can use pgc.net (http://www.dvduk.pwp.blueyonder.co.uk/pgcnet.html) to rip only what you want :)
BHH
Shark_jlc
3rd March 2007, 16:46
direct link isn't working... no prob i got the image by browsing the misc folder
as i can see (and tell) all the videoes are in vts_01, both the episonde and the ads
i can suggest to rip with dvddrypter (not dvdfabdecrypter) and select what chapter to rip
is impossible for automkv (or autogk/megui/staxrip....) select the "chapter" you want since is within those other ads
or you create the d2v by selecting the boundaries of what you want to encode
or you can use pgc.net (http://www.dvduk.pwp.blueyonder.co.uk/pgcnet.html) to rip only what you want :)
BHH
OK, that makes sense. After looking at the files, and reading what you have said, I can see that based on the file names VTS_01_x.vob that most of the video is in vts_01 now.
DVDFab Decrypter has an option to rip the Main Movie, I'll see if I can just start using that.
BTW, granted I want wmv files to play via the Xbox360, is there some way for me to test using DirectShowSource for you?
buzzqw
3rd March 2007, 17:29
sorry Shark_jlc ... .... ... ;)
i have added pgc processing !!!! :cool:
in next full update (next update) will be possibile after specifing what ifo to parse, to select what pgc (and so episodes) within the ifo selected to work with
(i hope my english is clear enough...)
this will fuction even on dvd to rip
the workflow will be (for already ripped dvd)
open automkv, check BOTH Process this IFO and Process this PGC, on input select the IFO containing the episodes, on pgc list select the pgc you want
after start encoding vsrip.exe will be used to "extract" from vob (to vob) only the selected program group chain
about DSS: i think no, sorry pal, this option is to use with difficult or corrupted audio stream, has nothing to do with wmv, thanks !
BHH
P.S. i cannot guarantee that subripping will be ok in such way, and i hope i haven't break anything
Shark_jlc
3rd March 2007, 22:07
That sounds like it will save me a lot of trouble :)
yay!
I can't wait to test it out.
Prospero424
4th March 2007, 11:02
I'm mostly transcoding 1080i MPEG2 .ts files to 1280-width X264 MKV files at DVD-R size.
Which resize filter should I use for best quality?
Tips for other quality settings (filters and such) would be appreciated, as well.
DarkZell666
4th March 2007, 11:20
Which resize filter should I use for best quality? :readrule: Or reformulate the question to define what you call "best".
Prospero424
4th March 2007, 11:58
Okay, I'll rephrase:
What resize filter would you use in this situation?
buzzqw
4th March 2007, 15:50
for quality aiming and good filtering the choice would be lanczos or spline resizers
for filter, most depends on your source, a simply removegrain(mode=2) is usually enough for a near clean source file (or degrainmedian for a more noise source)
BHH
zup guys,
All is well with .076 and I am about 50 DVDs into a several hundred DVD collection. The batch processing is going great and I am generally running about 10 disk per day with few problems.
One suggestion I have that have that would improve the process would be a "supress errors" option. I am still occasionally getting the audio errors problem which is often just a unique situation that needs a little special care to work through it. The problem is that the error message pops up asking if I want to continue so sometimes I loose a whole day of encoding when I had much rather it just flag the log and move on.
This isn't really a bug or complaint even, simply a suggestion that would make the software perform a little better based on my specific utilization. Still though, EXCELLENT PROGRAM and I am loving it. BTW, where did the paypal link go?
Prospero424
5th March 2007, 07:40
for quality aiming and good filtering the choice would be lanczos or spline resizers
for filter, most depends on your source, a simply removegrain(mode=2) is usually enough for a near clean source file (or degrainmedian for a more noise source)
BHH
Thanks for the input. Quick question: so would you use a removegrain filter even on a very clean HD source that was created using, say, a digital camera, or only on noisier HD sources that were transferred from, say, 35mm film?
In other words, is the "grain" intended to be removed by this filter a product of the source transfer/compression or from the "grain" of a film source itself?
buzzqw
5th March 2007, 08:52
@bhh
thanks for kind words !
about suppressing the warning... i could "time" the question , after 60 seconds if user don't click quit automkv will go ahead, even if muxing will be borked
about donation: the paypal button is hidden when processing dvd (is replaced by pgc selection), fell free to click here (https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=azanzani%40gmail%2ecom&item_name=Donate%20to%20AutoMKV%20%21%20Thanks%20for%20your%20Support%20%21%21%21&no_shipping=1&return=http%3a%2f%2fwww%2e64k%2eit%2fandres%2fdata%2fa%2fThanks%2ehtm&no_note=1&tax=0¤cy_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8) (or link in wiki)
@Prospero424
is to remove the original grain, what you want (remove grain AFTER) is done by the decoder (post processing)
BHH
Prospero424
5th March 2007, 09:03
@bhh
@Prospero424
is to remove the original grain, what you want (remove grain AFTER) is done by the decoder (post processing)
BHH
Thanks again for the response, but I think you misunderstood me. I was wondering if I should still use a removegrain filter on, say, a movie filmed using modern, digital methods like Sin City or only on older movies like Blade Runner, which are sometimes transferred from their original film prints to a high-def format by people like HDNET.
Assume both sources in this example are at 1080.
And not to pile on, but I have yet to say it, so thanks SO MUCH for your work on this project. I've turned several friends onto it, as well, and they've been equally impressed.
buzzqw
5th March 2007, 10:06
a bit of grain is always neccessary for a "not washed-out look" of movie.
Pourpose of filter is to gain a little bit compressibility and to remove excessive grain or noise/flickering/mosquito/ringing/halo....
the "best" filter could be the "not apply filters" or a heavy weight Spresso, or a sharpener Seesaw
usually a removegrain(mode=2) is light enough to not destroy image but to clean a little noise around
i can suggest to do several test with varius filter on a short sample.
BHH
P.S. thanks for introducing AutoMKV to other user !
Prospero424
5th March 2007, 10:33
a bit of grain is always neccessary for a "not washed-out look" of movie.
Pourpose of filter is to gain a little bit compressibility and to remove excessive grain or noise/flickering/mosquito/ringing/halo....
the "best" filter could be the "not apply filters" or a heavy weight Spresso, or a sharpener Seesaw
usually a removegrain(mode=2) is light enough to not destroy image but to clean a little noise around
Thanks! That's exactly what I was looking for.
gonwk
5th March 2007, 23:22
Hi folks,
I have this "Dumb" question ...
Q1: What is the AutoMKV with Decrypter used for?
If I am only interested in converting my DVD files (that are already on my hard drive) into AVI format ... then I guess the AutoMKV without Decrypter should work fine ... right!?!?!
G!
Shark_jlc
6th March 2007, 00:28
Using DVDFab Decrypter 3.0.8.6, I've ripped only the 16x9 movie from a disc that contains 16x9 and 4x3 versions, and other misc extras.
I pointed AutoMKV to the video_ts.ifo, chose wmv/wmv, 128 Kbps stereo audio, and "Set Width Resolution" to Auto.
This caused 2 issues with the resultant movie:
1) It seems to be in 4x3 format.
2) The farther into the movie you get the more often the audio gets out of sync by 2-3 seconds. But then the audio does sync for a bit, then it gets out of sync by 2-3 seconds. Very intermittent.
Any ideas?
buzzqw
6th March 2007, 08:29
Q1: What is the AutoMKV with Decrypter used for?
very simple answer: automkv can be used even to automatize from rip the dvd to final encoded movie.
Now i am using dvdfabdecrypter because it's command line usable and can deal with some old arcoos protection
hen I guess the AutoMKV without Decrypter should work fine ... right!?!?!
for sure !, simply input to one ifo of your decrypted dvd
@Shark_jlc
1) It seems to be in 4x3 format.
well... how automkv could choose what pgc to work ?
you should rip only the pgc you want (or wait next version with pgc selection...)
2) The farther into the movie you get the more often the audio gets out of sync by 2-3 seconds. But then the audio does sync for a bit, then it gets out of sync by 2-3 seconds. Very intermittent.
what is cpu use while decoding ? also try to play with other players (link mpc, vlc, wmp...)
one more: wmv encoding is done by wmencoder ... please try opening movie.avs with mpc/virtualdub and play it... is desyncronized ?
BHH
Shark_jlc
6th March 2007, 14:28
...
@Shark_jlc
well... how automkv could choose what pgc to work ?
you should rip only the pgc you want (or wait next version with pgc selection...)
what is cpu use while decoding ? also try to play with other players (link mpc, vlc, wmp...)
one more: wmv encoding is done by wmencoder ... please try opening movie.avs with mpc/virtualdub and play it... is desyncronized ?
BHH
I only ripped the 16x9 version. (is that what you mean by "rip only the pgc I want"?)
The audio de-sync happens when I play the movie on my xbox360, or my windows xp box (athlon XP @ 1.7 ghz)
Where would I find the movie.avs file? In the temp folder I deleted ? :)
Thanks.
buzzqw
6th March 2007, 17:22
I only ripped the 16x9 version. (is that what you mean by "rip only the pgc I want"?)
yes, is that what i mean.
if it look "4:3" ... i don't know.. the wmv encoder don't set the aspect ratio... so if it look like 4:3 i can suppose that original file was a 4:3 film cropped and resized to 16:9
you can edit the <pixelratio> value to these
DV NTSC fullscreen 10:11
DV NTSC widescreen 40:33
DV PAL fullscreen 12:11
DV PAL widescreen 16:11
if you know it (but you must reencode)
and gain... yes... the movie.avs was in temp folder...
don't delete it till encoded film isn't played ! :(
BHH
P.S. a will look to AR into wmv...
Shark_jlc
6th March 2007, 17:37
I'll re-encode it tonight (for a 3rd time :) and check out the file in the temp folder.
Thanks buzzqw!
buzzqw
6th March 2007, 17:42
attention Shark_jlc !
change the pixelratio NOT to "16:11" (for example) but to "16 11" without quotes and without :
BHH
EDIT: dowload this 2 sample from the name you will understand the parameter used (are pal=
http://www.64k.it/andres/data/a/16_11movie.wmv and http://www.64k.it/andres/data/a/12_11_movie.wmv (~1mb each)
Shark_jlc
6th March 2007, 20:02
This post will show my ignorance, I'm sure, but why do both movies show a width of 640 when you do a properties check on them?
It's obvious that one is widescreen and the other is not, would the widesreen not have a.... wider width?
buzzqw
6th March 2007, 20:18
one word : PAR (and two more AR and DAR)
would be long to explain but SeeMoreDigital have a lots of info on his site
start here http://www.seemoredigital.net/03_Video_Info.html and then go to "Resolution" and "Anamorphics"
i can suggest a long a intesive read. it is very well written andd ask to most "unquestionable" question :D
BHH
Shark_jlc
6th March 2007, 20:21
Thanks for the link, I'll read over them as soon as possible.
Huerta
7th March 2007, 11:23
I am having a problem encoding a certain episode. For some reason each time I try and encode during the second pass at 81% the xvid_encraw says it has to shut down.
Here is the log.
01:11:09 0.76 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
01:11:09 Selected Input file: C:\DBZ\Episode 21\VTS_02_0.IFO
01:11:09 Selected Output dir: C:\DBZ\Episode 21\temp\
01:11:09 Selected Final Name: VTS_02_0
01:11:09 Selected Container type: MKV
01:11:09 Selected Encoder: XviD
01:11:09 Selected Size: 265
01:11:09 Selected Slice: 1
01:11:09 Selected Profile: XviD_Extra_Slow.xml
01:11:09 Selected Width: Automatic
01:11:09 Selected Resizer: NONE
01:11:09 Selected Filters: MipSmooth(preset = "AnimeHQ")
01:11:09 Selected Deinterlacer: AUTO
01:11:09 Selected Field Order: AUTO
01:11:09 NeroAACEnc.exe: not present
01:11:09 Using Matrix: Sharktooth's EQM v3ULR.cqm
01:11:09 Track Language 1: All Audio Tracks
01:11:09 Audio Codec 1: Ogg Vorbis
01:11:09 Audio Quality 1: 4
01:11:09 Audio Channel 1: Stereo
01:11:09 Advanced Audio Settings DUMP Track 1
01:11:09 Nero Option Profiles: AUTO --- Encoding Mode: Quality
01:11:09 CCT Option Profiles: AUTO --- Channel Options: AUTO
01:11:09 Lame Settings: VBR
01:11:09 Audio Normalization: 1
01:11:09 Frequency: AUTO --- Tempo : NONE
01:11:09 Pitch: NONE --- Other Add :
01:11:09 Advanced Audio Settings DUMP Track 2
01:11:09 Nero Option Profiles: AUTO --- Encoding Mode: Quality
01:11:09 CCT Option Profiles: AUTO --- Channel Options: AUTO
01:11:09 Lame Settings: VBR
01:11:09 Audio Normalization: 1
01:11:09 Frequency: AUTO --- Tempo : NONE
01:11:09 Pitch: NONE --- Other Add :
01:11:09 Activate Anamorphic Encoding
01:11:09
01:12:24 Starting fixing all audio files
01:12:25 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\Episode 21\temp\fixed1.ac3" "C:\DBZ\Episode 21\temp\movie T01 3_2ch 448Kbps DELAY -206ms.ac3"
01:12:38 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\Episode 21\temp\fixed2.ac3" "C:\DBZ\Episode 21\temp\movie T02 2_0ch 192Kbps DELAY -206ms.ac3"
01:12:43 DelayCut CMD: C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\dgindex\Delaycut.exe -auto -out "C:\DBZ\Episode 21\temp\fixed3.ac3" "C:\DBZ\Episode 21\temp\movie T03 2_0ch 192Kbps DELAY -206ms.ac3"
01:12:50 Encoding C:\DBZ\Episode 21\temp\fixed1.ac3 to Ogg with 4 quality
01:16:10 Encoding C:\DBZ\Episode 21\temp\fixed2.ac3 to Ogg with 4 quality
01:18:01 Encoding C:\DBZ\Episode 21\temp\fixed3.ac3 to Ogg with 4 quality
01:20:02 ForceFilm Detected: 99.900002% FILM found
01:20:09 Number of Frames: 37290
01:20:09 Framerate: 29.970030
01:20:09 Movie lenght in Seconds: 1245
01:20:09 Movie Width: 720
01:20:09 Movie Height: 480
01:26:09 Processing completed. Type is determined to be film.
01:26:10 BFF: 27
01:26:10 TFF: 158
01:26:10 Order: tff
01:26:11 FIRST pass XviD: "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\encoder\xvid_encraw.exe" -pass1 -progress -bitrate 1473 -turbo -threads 1 -max_bframes 2 -imax 16 -qpel -quality 6 -vhqmode 4 -pmax 16 -bmax 16 -framerate 23.976 -bquant_ratio 162 -chigh 30 -clow 15 -nopacked -nochromame -noclosed_gop -bvhq -qmatrix "C:\Documents and Settings\Owner\Desktop\AutoMKV076\profiles\XviD-profiles\matrix\Sharktooth's EQM v3ULR.cqm" -i "C:\DBZ\Episode 21\temp\movie.avs" -type 2 -mkv "C:\DBZ\Episode 21\temp\movie.mkv"
01:26:11 SECOND pass XviD: "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\encoder\xvid_encraw.exe" -pass2 -progress -bitrate 1473 -threads 1 -max_bframes 2 -imax 16 -qpel -quality 6 -vhqmode 4 -pmax 16 -bmax 16 -framerate 23.976 -bquant_ratio 162 -chigh 30 -clow 15 -nopacked -nochromame -noclosed_gop -bvhq -qmatrix "C:\Documents and Settings\Owner\Desktop\AutoMKV076\profiles\XviD-profiles\matrix\Sharktooth's EQM v3ULR.cqm" -i "C:\DBZ\Episode 21\temp\movie.avs" -type 2 -mkv "C:\DBZ\Episode 21\temp\movie.mkv"
01:26:11 Starting First Pass
02:13:07 Starting Second Pass
03:38:59 Only Movie Size: 183357440 bytes
03:38:59 C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\matroska\mkvmerge.exe" -o "C:\DBZ\Episode 21\temp\VTS_02_0.mkv_pre" --track-name -1:"VTS_02_0" --aspect-ratio 0:1.777778 --chapters "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\chapters.txt" "C:\DBZ\Episode 21\temp\movie.mkv" "C:\DBZ\Episode 21\temp\audio1.ogg" "C:\DBZ\Episode 21\temp\audio2.ogg" "C:\DBZ\Episode 21\temp\audio3.ogg" --title "Done with AutoMKV 0.76 http://forum.doom9.org/showthread.php?p=854221 "
03:39:00 Final Muxed size: -1 bytes
03:39:01 Encoding finished: 02:27:52 elapsed time
03:39:01 -----------------------------------------------------------------------
03:39:01 Script AutoCrop.log
03:39:01
03:39:01 Crop(10,0,700,480)
03:39:01 -----------------------------------------------------------------------
03:39:01 Script Resmovie.avs
03:39:01
03:39:01 -----------------------------------------------------------------------
03:39:01 Script movie.avs
03:39:01
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\autocrop.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\BicublinResize.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\blockbuster.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\cnr2.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\ColorMatrix.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Convolution3D.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\corrector.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\DctFilter.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Decomb.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\Deen.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\degrainmedian.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\DGDecode.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\EEDI2.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\fft3dfilter.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\FluxSmooth.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\frfun7.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\hqdn3d.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\LeakKernelDeint.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\MaskTools.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\medianblur.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\MipSmooth.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\mt_masktools.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\mvtools.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\NicAudio.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RemoveGrainS.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\RepairS.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\SangNom.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\SimpleResize.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TBilateral.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TDeint.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TIVTC.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TomsMoComp.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\TTempSmooth.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\UnDot.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\UnFilter.dll")
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\VSFilter.dll")
03:39:01 #loadpluginstart
03:39:01
03:39:01 #test1
03:39:01
03:39:01 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\MCBob_v03c.avsi")
03:39:01 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\mvbob.avsi")
03:39:01 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\seesaw.avsi")
03:39:01 Import("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\spresso.avsi")
03:39:01 #importstart
03:39:01
03:39:01 #test2
03:39:01
03:39:01 movie = mpeg2source("C:\DBZ\Episode 21\temp\movie.d2v")
03:39:01 function getOrder(clip c) {
03:39:01 order = GetParity(c) ? 1 : 0
03:39:01 Return order }
03:39:01 #filter1start
03:39:01
03:39:01 #test3
03:39:01
03:39:01 #cropstart
03:39:01
03:39:01 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
03:39:01 fixed_aspect = 1
03:39:01 c_width = width(cropclip)
03:39:01 c_height = Round(height(cropclip) / fixed_aspect)
03:39:01 input_par = float(float(c_width)/float(c_height))
03:39:01 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
03:39:01 out_width = 720
03:39:01 out_height = Round(float(out_width) / input_par)
03:39:01 hmod = out_height - (floor(out_height / 16 ) * 16)
03:39:01 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
03:39:01 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
03:39:01 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
03:39:01
03:39:01 last = movie
03:39:01 tfm(d2v="C:\DBZ\Episode 21\temp\movie.d2v").tdecimate()
03:39:01 #resizestart
03:39:01
03:39:01 #test4
03:39:01
03:39:01 #filter2start
03:39:01
03:39:01 #test5
03:39:01
03:39:01 MipSmooth(preset = "AnimeHQ")
03:39:01 ColorMatrix("Rec.709->Rec.601",hints=false,threads=0)
03:39:01 -----------------------------------------------------------------------
03:39:01 Script mkvmaudio.avs
03:39:01
03:39:01 LoadPlugin("C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\filter\NicAudio.dll")
03:39:01 NicAC3Source("C:\DBZ\Episode 21\temp\fixed3.ac3")
03:39:01 EnsureVBRMP3Sync()
03:39:01 ConvertAudioTo16bit()
03:39:01 #Applyed STEREO downmixing routines
03:39:01 function stereo(clip a)
03:39:01 {
03:39:01 fl = GetChannel(a, 1)
03:39:01 fr = GetChannel(a, 2)
03:39:01 c = GetChannel(a, 3)
03:39:01 lfe = GetChannel(a, 4)
03:39:01 sl = GetChannel(a, 5)
03:39:01 sr = GetChannel(a, 6)
03:39:01 l_sl = MixAudio(fl, sl, 0.2929, 0.2929)
03:39:01 c_lfe = MixAudio(lfe, c, 0.2071, 0.2071)
03:39:01 r_sr = MixAudio(fr, sr, 0.2929, 0.2929)
03:39:01 l = MixAudio(l_sl, c_lfe, 1.0, 1.0)
03:39:01 r = MixAudio(r_sr, c_lfe, 1.0, 1.0)
03:39:01 Return MergeChannels(l, r).Normalize()
03:39:01 }
03:39:01 #
03:39:01 function original(clip a)
03:39:01 {
03:39:01 Normalize(a)
03:39:01 Return last
03:39:01 }
03:39:01 6==Audiochannels() ? stereo() : original()
03:39:01 -----------------------------------------------------------------------
03:39:01 Script mkvmaudio.bat
03:39:01
03:39:01 "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\besweet\bepipe.exe" --script "Import(^C:\DBZ\Episode 21\temp\mkvmaudio.avs^)" | "C:\Documents and Settings\Owner\Desktop\AutoMKV076\exe\besweet\oggenc2.exe" -q 4 - -o "C:\DBZ\Episode 21\temp\audio3.ogg"
03:39:01 -----------------------------------------------------------------------
03:39:01 Script mkvmaudio2.avs
03:39:01
03:39:01 -----------------------------------------------------------------------
03:39:01 Script mkvmaudio2.bat
03:39:01
03:39:01
03:39:01 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
buzzqw
7th March 2007, 13:15
I am having a problem encoding a certain episode.
since the error is replicable, i suppose there is some problem with those vobs.
please try to open the movie.avs with mediaplayer classic or virtualdub and advanced till 81% of movie...
got any error ?
another try could be changing the xvid profile or better try with x264
BHH
Shark_jlc
8th March 2007, 06:14
Trying to play the movie.avs file in anything on my machine pegs my processor out and it just jumps and skips everywhere :/
buzzqw
8th March 2007, 14:09
@Shark_jlc
try reducing resolution, open movie.avs look at out_width = XXX, set it to 320 and play... is in synch ?
if not may be a problem of ripping... (try with ripit4me)
@ALL
As you now Sh0dan has build an awesome plugin for avisynth ( http://forum.doom9.org/showthread.php?t=120025 ) "SoundOut"
With this plugin is possible to eliminate BePipe usage , and so .Net Framework
what is cons and pro ?
PRO: no .NET needed, no LAME.exe, mp3 encoding would be more robust since will be limited to official preset ( 32 40 48 56 64 80 96 112 128 160 192 224 256 320)
Other audio encoding NERO/OGG would be the same
CONS: AAC CCT (winamp) wouldn't be able to encode to 5.1 Channels , AAC CCT would be limited only to 2 ch (mono,stereo,dpl,dpl II), for MP3 only ABR and CBR mode avaiable (no more pure quality preset)
Maybe a little slower (60 seconds for every hours of audio encoded, on my p4 3.0 lame goes to near x8 realtime)
i have already done all modify to automkv, but, as always i have backupped all source
please tell me your preference
BHH
Shark_jlc
8th March 2007, 14:39
Changing the out_width doesn't seem to make a difference in the playback of the file for me. I'll rip with ripit4me and re-encode tonight.
In regards to the new plugin, the trade off is that AutoMKV loses some dependencies, but also loses some functionality.
*shrug* I have no preference :/
sunflash10
8th March 2007, 17:40
I think that the pros outweigh the cons in this case. Although CCT becomes less useful, there is always Nero AAC which is more or less the same thing. The better mp3 encoding is what matters to me most.
buzzqw
8th March 2007, 19:36
@Shark_jlc
have you select NONE to resizer ? if so delete from movie.avs last=movie
@sunflash10
thanks for you answer
about cct i think too could be ok even if limited to 2ch. Nero aac deliver an optimal quality and is freeware for personal use.
Even more encoding 5.1 with nero is painless while with cct i must check every switch to make compliant...
i would like to include neroaacenc with automkv software but actually there is some license problem... i have better hope for future :)
BHH
Shark_jlc
8th March 2007, 20:40
@Shark_jlc
have you select NONE to resizer ? if so delete from movie.avs last=movie
...
I did select none, and I'll set last=movie tonight and try to play again!
Thanks.
buzzqw
8th March 2007, 20:55
i cannot set last=movie ! is automkv that set it when you select resizer NONE!
to test open the movie.avs and remove the line last=movie, then open in vdub/mediaplayer classic !
BHH
Shark_jlc
9th March 2007, 03:48
i cannot set last=movie ! is automkv that set it when you select resizer NONE!
to test open the movie.avs and remove the line last=movie, then open in vdub/mediaplayer classic !
BHH
I removed the line where last=movie was set, and I set the width to 320 and still, no change. The movie.avs file just totally pegs out my machine and cannot be played :/
I've attached movie.avs in case you get a second to make sure I'm not missing something.
weaver4
10th March 2007, 00:55
I have been using AutoMKV to make XviD and Zune movies. But I want to try H.264 but I am a little confused on the settings. I want a good quality 1 pass encoder, and I don't care about a target size, and I don't know what I should use for a profile.
Should I use:
> Constant Quality CRF?
> Constant Quality QP.
> I pass Intermediate?
What value of CRF should I use?
Right now when I use XviD I generally use single pass, don't care about size, quantizer of 3. I am looking for something similar.
Thanks,
Huerta
10th March 2007, 01:56
I was wondering if anyone could answer a question I have.
I have episodes and movies that I want to encode in really good quality. I've been encoding in Xvid for now but would like to try something different.
The episodes and movies are anime. I'm still learning DVD terms but I found out that the aspect ratio is 16:9. And it is 1080p Highest Quality HD Format.
I am going to use H.264 and Nero AAC when I encode. I was wondering what other settings I should use in order to get great quality. I also want to keep the Widescreen Resolution in case I put the episodes back to DVD. So what would you guys recommend.
nx6
10th March 2007, 07:01
Hello. I'm new I've been trying to get this to work for about the last two weeks and have yet to finish with a 100% successful MKV file. :confused:
I just tried another run of ripping a DVD with dual audio tracks and one subtitle track to an MKV, and the result is one that happens quite often. Everything seems to rip and process fine, but then when it finishes, I go looking for the final movie file, and there isn't one.
This time, after it ripped the DVD I got the error message that AutoMKV couldn't find the file "mkmvaudio.vbs" this happens quite often, even though the file is right in the directory it says it is looking in. So I aborted the rip since it said it couldn't rip the audio, then tried again but instead of pointing to the DVD drive I used the main VIDEO_TS from the aborted try before since the DVDFabDecrypter appeared to have done its job right and the DVD was on disk at that point.
I went to work and the X264 encoding was on its second pass, and I came home and the logfile says the job is done, but there is no final movie file.
Here's the log, I didn't see any text about errors, but it's like there are some final steps not being completed and I don't know why.
buzzqw
10th March 2007, 09:07
@Shark_jlc
your source file is "Partly Film" and so AutoMKV will deinterlace with an hybrid procedure... that seems not allowed by wmv encoder
try this : on advanced settings, on deinterlacer set to FILM and then reencode
@weaver4
> Constant Quality CRF?
would be my first try :) with a value between 18 and 22 (is a personal taste)
is good looking and near as fast
@Huerta
set resizer to lanczos
width to 720
on advanced setting set use anamorphic
as profile i would go to crf profile (for maximize quality) or Encoding-Mainprofile
@nx6
first, move AutoMKV to c:\temp\apps or short path, don't put automkv folder on desktop
mini how-to for dvd2mkv
rip the dvd (ripit4me is truly great)
move the ripped dvd to c:\ripped\dvd\video_ts\....
open automkv
click on input an browse to c:\ripped\dvd and click on video_ts.ifo
select container
select codec
select disk settings
select the audio tracks (and remember that to use NERO you must download neroaacenc.exe from nerodigital.com site, it's free)
select subs
optional: select width and resizer
click Start Encoding
...
...
after some hours you will have in c:\ripped\dvd\video_ts\ a file named video_ts.mkv, this is your film
anyway i looking for the log , thanks !
BHH
nx6
10th March 2007, 09:33
@nx6
first, move AutoMKV to c:\temp\apps or short path, don't put automkv folder on desktop
mini how-to for dvd2mkv
rip the dvd (ripit4me is truly great)
move the ripped dvd to c:\ripped\dvd\video_ts\....
open automkv
click on input an browse to c:\ripped\dvd and click on video_ts.ifo
select container
select codec
select disk settings
select the audio tracks (and remember that to use NERO you must download neroaacenc.exe from nerodigital.com site, it's free)
select subs
optional: select width and resizer
click Start Encoding
...
...
after some hours you will have in c:\ripped\dvd\video_ts\ a file named video_ts.mkv, this is your film
anyway i looking for the log , thanks !
BHH
Do I have to use the C drive? I don't have much room on it. I have an empty 30GB drive as drive S I was using for this try.
I actually got one job to almost complete successfully with this same DVD with AutoMKV on the desktop folder. But I got errors when it came time to add the subs and I got a movie file with good quality and both audio tracks but no subs. :(
But now that I think I'm not sure if that was AutoMKV or when I was trying MKVMagic before.
Also, should AutoMKV and the other folders (exe, profiles) be loose in C:\temp\apps or can they be in a containing folder?
fogbav
10th March 2007, 09:40
I vote for the new Audio Plugin !
buzzqw
10th March 2007, 10:01
@nx6
isn't necessary C: , just a shorter path
S:\dvdripping\automkv is very good ! (for example)
both audio tracks but no subs
if you can relaunch muxing.bat and spot the error (also post here muxing.bat)
should AutoMKV and the other folders (exe, profiles) be loose in C:\temp\apps or can they be in a containing folder?
:confused: ...
automkv is "self contained" with its folders
automkv.exe
license.txt
profiles folder
exe folder
all these files/folder must been in the same folder , download the full apps, unrar to s:\xxx\automkv and all is within
@fogbav
hi !
thanks for your vote. now with 3 to 0 (:mad: holy cows, 3 votes only, what the hell ! sometime i think to quit. :mad: ) seems that new plugin is preferred.
And i prefer it too.
fogbav, feel free to put your experience in the wiki !
BHH
delacroixp
10th March 2007, 21:20
I've done a couple of H264 encodes (all within the last week) with MeGUI and currently with AutoMKV using the mkv container.
They're quite breathtaking compared to Dr DivX 1 and VirtualDub encodes from a few years back... but nowhere do I find the option for 1080HD encoding. Both MeGUI and AutoMkv seem to be limited to the 'Home Theater' (720 x ???) profile.
Some of the guys on the Dr DivX Forums recommended Nero Recode which certainly supports 1080HD but possibly not the Mkv Container.
What's available in OSS ?
:thanks:
Pascal
Shark_jlc
10th March 2007, 21:37
@Shark_jlc
your source file is "Partly Film" and so AutoMKV will deinterlace with an hybrid procedure... that seems not allowed by wmv encoder
try this : on advanced settings, on deinterlacer set to FILM and then reencode
...
BHH
I'll do that tonight. Also if you can add the code to AutoMKV to not "deinterlace with an hybrid procedure" when making a WMV file... that would help people like me not do what I'm not supposed to do :)
Shark_jlc
10th March 2007, 21:45
@...
thanks for your vote. now with 3 to 0 (:mad: holy cows, 3 votes only, what the hell ! sometime i think to quit. :mad: ) seems that new plugin is preferred.
And i prefer it too.
...
BHH
At 62 pages, it might be time for a new thread? :) People might not see that on page 61 you asked a question.
Maybe with the next .77 release?
delacroixp
10th March 2007, 21:46
I've completed a few encodes using AutoMKV with H264 and the Mkv container.
I'm compressing the 'Band of Brothers' series onto 1 DVD to compare my similar exercise with Dr DivX 1 and VirtualDub a few years back.
I would certainly recommend Constant Quality CRF as a vote for perfect efficiency and consistency.
http://forums.divx.com/forum/viewTopic.php?id=2760
Kamiwa (above link) suggested that a
Dr DivX quantizer of 2 = Q18 (H264) and a
Dr DivX quantizer of 3 = Q22 . "
Dr DivX quantizer of 4 = Q24 . "
Good luck and have a good one.
:) :eek: :D
Pascal
buzzqw
10th March 2007, 22:25
@delacroixp
Both MeGUI and AutoMkv seem to be limited to the 'Home Theater' (720 x ???) profile.
in WIDTH you can write what you want, even 1980 or 10000! automkv will encode at this width !
the profiles are used for determine codec configurations not width or height
@Shark_jlc
Also if you can add the code to AutoMKV to not "deinterlace with an hybrid procedure" when making a WMV film
DONE ! in next update
Maybe with the next .77 release
don't know... i will ask to MODs
@delacroixp
as already said ... i will look to crf and queue issue
BHH
dlflannery
11th March 2007, 01:40
.....now with 3 to 0 ( holy cows, 3 votes only, what the hell ! sometime i think to quit. ) seems that new plugin is preferred.
And i prefer it too.....
It wasn't that I didn't care. I looked at the description of the new plugin. I just didn't have a strong opinion -- don't have enough encoding experience to appreciate the pros and cons.
pdjm
11th March 2007, 05:01
I don't understand one thing, the tooltip in the auto adjust crf option says that this option is a must for crf profile encoding however when i use crf profile i can't select this option. The check box has a strange behaviour, i try to check it but it's not possible to check it. I don't understand why this happens because the option is there and it's not greyed out.
Thanks for great program!
pdjm
11th March 2007, 05:10
One more question.I always use auto deinterlacer options and in my home computer i always get a message of this kind in the log file "Processing completed. Type is determined to be ..." However in two different computers where i also make some encodings with the same options this message is never there.Why does this happens?The lack of this message means the the program was not able to found the correct deinterlacer options?
Prospero424
11th March 2007, 08:44
AutoMKV is working GREAT for me, but I'm having one minor problem.
When I input a .TS file with AC3 audio and choose to use the original audio in AutoMKV, the final size of the resulting .MKV is always too small by a few hundred megabytes. AutoMKV seems to be calculating file size improperly (at least for AC3 .TS files).
Sure, I can compensate by setting the size manually, but I wanted to report my specific problem with the automation.
delacroixp
11th March 2007, 10:00
Awesome...
[note: When saving the .ini file... if you overwrite the .ini the file is saved without the .ini extension]
:) :D :eek:
Pascal
buzzqw
11th March 2007, 10:41
@dlflannery
your answer is a good aswer too !
if you cannot evaluate pro/cons mean new audio plugin is ok for you ! :)
@pdjm
attention: Adjust CRF Profile is to use ONLY when you answer "HIT MEDIA SIZE" on crf question.
about the inderlace: the phrase "Type is determined to be ..." is written only for NOT PROGRESSIVE source files.
@Prospero424
thanks, thanks ! you spotted a very ugly error !
automkv will double count the size of audio.... only with ts files
Fixed in next release !
@delacroixp
in next version the queue module got update. AutoMKV will save for every job its xml profile, so will be possible to "Use this profile" with queue
i hope to not break anything...
BHH
Prospero424
11th March 2007, 10:55
@Prospero424
thanks, thanks ! you spotted a very ugly error !
automkv will double count the size of audio.... only with ts files
Fixed in next release !
Awesome! You rock.
delacroixp
11th March 2007, 14:07
@delacroixp
in next version the queue module got update. AutoMKV will save for every job its xml profile, so will be possible to "Use this profile" with queue
i hope to not break anything...
BHH
Gr8... will each job need a separate folder or will many jobs be able to use 1 folder, 1 temp folder and can each job have a different xml (profile) ?
Also, if I rip 3 movies in IFO mode into 1 folder (assume each movie is 1 file), including the IFO file and rename them all accordingly... movie1.VOB, movie1.IFO... movie2.VOB, movie2.IFO... etc
Will AutoMKV and/or DGIndex encode all 3 movies correctly ?
:) :D :eek:
Pascal
Btw
You must break something... 10 steps fwd, 1 step bkwd... only GOD gets it right the first time.
buzzqw
11th March 2007, 14:58
will each job need a separate folder or will many jobs be able to use 1 folder, 1 temp folder and can each job have a different xml (profile) ?
in next update the queueXXX.ini (jobs) and the new x264queueXXXprofile.xml goes in the automkv directory, so there is no need to have as many folders as jobs. Even the temp folder could be one only
Also, if I rip 3 movies in IFO mode into 1 folder (assume each movie is 1 file), including the IFO file and rename them all accordingly... movie1.VOB, movie1.IFO... movie2.VOB, movie2.IFO... etc
Will AutoMKV and/or DGIndex encode all 3 movies correctly ?
no, sorry. each full rip in one folder. OR put all in one folder, then create the d2v files for each movie and demux only the audio you want (named accordly to movie name).Then you can queue the d2v+audio works
BHH
nx6
11th March 2007, 20:20
@buzzqw
I tried again last night. The AutoMKV folder is on the root level of the S: drive and when I woke up today I had the "cannot find file temp\mkvmaudio.vbs" error again. :rolleyes: If I double-click on the file I got a Script Host Error saying that in Line 2, Character 1, it couldn't find the file. I get the same cannot find file error for mkvmaudio2.vbs, movielenght.vbs, and deint.vbs, all of which are in S:\AutoMKV077\temp\ right now.
P.S.: If you're getting ready to do a new release, it would be movielength.vbs. ;)
buzzqw
11th March 2007, 22:21
the previus log file got approved
there are no errors, all audio were encoded, all subs extracted
you should have your file video_ts.mkv into S:\AutoMKV077\temp\DVD\VIDEO_TS\
here is the size of muxed file 18:54:39 Final Muxed size: 733804368 bytes
about cannot find vbs files, could be your antivirus that deined the lauch of those files ?
it couldn't find the file
what file ? mkvmaudio.bat ?
also, please try to lauch mkvmaudio.bat , is ok ?
BHH
nx6
12th March 2007, 00:38
the previus log file got approved
there are no errors, all audio were encoded, all subs extracted
you should have your file video_ts.mkv into S:\AutoMKV077\temp\DVD\VIDEO_TS\
Ah, I was looking in \temp. Well, the files from that attempt were all thrown out when I tried again. :D I saw the line saying what size the muxxed file was but I thought the \DVD folder only held the ripped DVD files, and I didn't see any files that matched the listed size anywhere else.
about cannot find vbs files, could be your antivirus that deined the lauch of those files?
I'll see. I turned off the antivirus and am running again right now. Will AutoMKV work with .NET framework 2.0? As that is what I have.
what file ? mkvmaudio.bat
In the Script Host Error message? I don't know. It did not specify. I will try taking screenshots next time it happens.
also, please try to lauch mkvmaudio.bat , is ok ?
BHH
I'll try that if this attempt freezes on those steps again.
Thank you for your help.
bhh
12th March 2007, 02:00
Hey guys, I'm having a problem getting subs in my foreign XvidD encodes which I am afraid is a bad case of "user error". I've tried a number of things including burning them in and a number of different movies, all of which I have had no suceess. VLC player simply doesn't show them and the subtitle track IS selected and enabled. WMP & WMP classic shows the extra black space at the bottom of the screen but displays nothing, captions are enabled. If anyone could take a look at the attached and steer me in the right direction, I would be very greatfull. This is really the first hiccup I've hit with this fine piece of programming.
Cheers,
the other bhh
Shark_jlc
12th March 2007, 04:00
Container/codec=wmv/wmv
Resize filter =none
deinterlacer=film
removeGrain(mode=2)
No subtitles
and the now the movie is about half the viewing size as before (movie.avs does say 720) and the sounds is still out of sync.
I will try again with these settings tonight, but I'm going to re-rip the movie with ripit4me.
buzzqw
12th March 2007, 08:30
a little note about subtitles and WMV
first of all for view subtitles is needed http://www.free-codecs.com/download/DirectVobSub.htm and if installed in Haali Media Splitter allowed to load vsfilter
second: in wmv isn't possible muxing subtitle ! you must "embed/burn in" subtitles, by checking on Advanced Settings "Burn Subtitle in Movie"
BHH
delacroixp
12th March 2007, 13:06
no, sorry. each full rip in one folder. OR put all in one folder, then create the d2v files for each movie and demux only the audio you want (named accordly to movie name).Then you can queue the d2v+audio works
Thanks much though perhaps we (you) could use the idea of watch folders as implemented by Dr DivX (http://stage6.divx.com/Dr_DivX/show_video/1010870) which would allow numerous rips in 1 folder to be automatically encoded according to a specific profile.
As to the default resolution options... Auto, 720, 704, etc... perhaps you could include 'Original'.
I realise that most people use encoding to crunch or compress their movies by 60%, 80% or more... mostly through downsizing and then partly through the elimination of extraneous audio tracks & extras. Only a small fraction of the compression is actually due directly to the new codec... though H264 (Mpeg4 P10) has very a significant advantage over Mpeg2 material.
Nothing beats the quality of original resolution by eliminating the downsizing process.
:) :D :eek:
Pascal
buzzqw
12th March 2007, 13:17
for full widht simply set RESIZER to NONE
i will look how to add even this option
BHH
buzzqw
12th March 2007, 13:57
added!
now when selecting "Original" as WIDTH the RESIZER goes to NONE
BHH
vgiozo
12th March 2007, 14:57
Maybe this isn't exactly the appropriate place to ask this, but it has happened with two dvd ripped movies that subtitles are not shown on video...
(would it be illegal to name those two movies, or could I do that for reference purposes? )
I encoded those movies both with autoMKV and Nero Recode and the subtitles are not shown, although I have all necessary software installed and did not omit any relevant step in the encoding procedure...
DirectVobSub loads, the "Show subtitles" setting is selected, so as the relevant subtitle, but they are not actually displayed...
I even tried ripping the subs with a different program, removing those embedded and merging the new subtitle files to no avail...
Even having internal AND external subs did not help and choosing between the two...
What is at fault here? Should I use an earlier version of DirectVobSub, or is it due to a bad rip? (I re-ripped both movies 2-3 times...in this case, maybe not all protection was properly removed ? )
buzzqw
12th March 2007, 15:19
yes, isn't the appropriate thread...
anyway.. are you using mediaplayer classic ?
try reinstalling directvobsub by the link i posted
is haali (if installed) able to load vsfilter ?
BHH
nx6
12th March 2007, 18:17
@buzzqw
My job finished early this morning and I am pleased to report that my file came out A-OK. All audio tracks, subs, ect. But now I need to reactivate my Antivirus software and try to find out where my issues were in the past.
fogbav
12th March 2007, 18:59
@fogbav
hi !
thanks for your vote. now with 3 to 0 ( holy cows, 3 votes only, what the hell ! sometime i think to quit. ) seems that new plugin is preferred.
And i prefer it too.
fogbav, feel free to put your experience in the wiki !
Hi buzzqw !
Sorry that i am not so present here in the forum as i was in the past. I have some big changes in my Job so give me 2 weeks or so and i will do all the tests and bring back my lazy buddy in here again ..8)
The problem is ... your Program is getting near perfect now ... and so all the freaks out there seems to be some kind of "pleased". Please ... never give up ... you do a very great job in here ... even if it gets some kind of silent (3 Votes only).
Best IT is when you here nothing about the IT ....8) Thats the time it is running kind of perfect ... same with your program.
Greets
FoGBaV
buzzqw
12th March 2007, 19:16
@nx6
glad it is all ok ! :)
@FoGBaV
Hi to see you here again ! i am glad for your new job!
about automkv... bugless ? no more feature ?
what the heck ?! :eek: :eek: :eek:
next version have a changelog as big as two full release...
no prob... till i code i can intruduce more subtle bugs... for your pleasure ! :) :D
and i hope to release tomorrow
BHH
sillKotscha
12th March 2007, 20:04
and after releasing your new version than think about adding flv support :)
nx6
12th March 2007, 21:09
How would I do a grayscale encode in AutoMKV? I remember there being a checkbox on MkvMagic's advanced settings. I might be ripping a DVD of an old B&W film soon and would like to reap the space savings if I can define it as a grayscale job.
buzzqw
12th March 2007, 22:24
on advanced setting there is a check named "Last line avs script" , check it and write grayscale()
BHH
delacroixp
12th March 2007, 22:26
How would I do a grayscale encode in AutoMKV? I remember there being a checkbox on MkvMagic's advanced settings. I might be ripping a DVD of an old B&W film soon and would like to reap the space savings if I can define it as a grayscale job.
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.
:) :D :eek:
Pascal
nx6
12th March 2007, 23:55
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.
:) :D :eek:
Pascal
I don't know much about video encoding, but in still images Greyscale is typically 256 shades (4 bit), so comparing this to a full color (24 bit image) we're dealing with a colorspace that is only 1/6th the size. Even if this is done in a higher depth grayscale (the limit seems to be 16bit) we're still drastically reducing the actual palette used to draw the image.
So the answer is YES. You would have to encode the entire movie as grayscale for this to work. I don't think it is possible to dynamically change the bit depth of a video file while its playing, so whatever type you set it up as would be the number of colors assumed for the entire feature.
Logically, bandwidth not being used to handle so many more colors can be put to use on lowering image compression, so you would get much better image quality in a file of the same disk size. Or not used at all, so the encoding bitrate would just be lower and you would have a film of the same quality as the "full color" encoded one, but without unneeded bulk.
Also, since we would be reducing the actual color palette, compression artifacts wouldn't have the ability to show up in color on a B&W movie (which would be very noticeable).
If anyone can correct me on this I'd be happy to hear.
I might try encoding twice so I can see exactly what sort of saving I get from it. But it would be hard to gauge the exact benefits since I can't set a certain "image quality" for the encode and then use an unlimited movie size to see the difference between 4-bit grayscale and 24-bit color. Plus modern compression algorithms may make the difference less drastic.
delacroixp
13th March 2007, 00:30
I might try encoding twice so I can see exactly what sort of saving I get from it. But it would be hard to gauge the exact benefits since I can't set a certain "image quality" for the encode and then use an unlimited movie size to see the difference between 4-bit grayscale and 24-bit color. Plus modern compression algorithms may make the difference less drastic.
Well, you can in fact set the image quality by using the ConstantQuality-crf.xml profile set at, lets say, 22... or even leave it at the default of 18. This is a 1-pass unlimited filesize encode that 'gets it right the 1st time'... guided by your quality setting... higher numbers producing less quality and vice versa. 18 is near-perfect quality while 22 is still Excellent and 24 is Good quality.
This will also save you time along with all the adjoining benefits of Consistency, Efficiency and Effectiveness.
:) :D :eek:
Pascal
nx6
13th March 2007, 01:06
Well, you can in fact set the image quality by using the ConstantQuality-crf.xml profile set at, lets say, 22... or even leave it at the default of 18. This is a 1-pass unlimited filesize encode that 'gets it right the 1st time'... guided by your quality setting... higher numbers producing less quality and vice versa. 18 is near-perfect quality while 22 is still Excellent and 24 is Good quality.
Pascal
Ah, I'll have to try that. I haven't had a chance to futz around with the profiles as I've been struggling to get a project to finish successfully in AutoMKV up to this point (and I've just now gotten there). [putting on dunce cap]
I still haven't gotten episodic DVD ripping (straight from DVD to MKV) to work properly, I'm not getting the right audio track options in AutoMKV when I use an .IFO file other than the one the program chooses by default (the one that rips all episodes into one single movie). But I realized today that DVDFabDecrypter can rip individual episodes from the DVD very nicely, it even lets me preview the episode so I don't have to guess what IFO to use and lets me pick the audio and subtitle tracks I want to rip there. So I preripped one today and set AutoMKV to processing before I left for work, so if that comes out fine I can concentrate of actually getting the best quality image I can in my size specification.
Speaking of quality settings, how do I interpret the AAC audio quality settings? I'm used to using bitrates for audio settings, but the AAC encoder is using some weird .1 -> 1.0 scale, how are these related to file size or quality?
Shark_jlc
13th March 2007, 04:05
Container/codec=wmv/wmv
Resize filter =none
deinterlacer=film
removeGrain(mode=2)
No subtitles
and the now the movie is about half the viewing size as before (movie.avs does say 720) and the sounds is still out of sync.
I will try again with these settings tonight, but I'm going to re-rip the movie with ripit4me.
well, the audio seems to be fixed, but the movie is still not widescreen. I have about a 1" bar at the top and 1/4" bar at the bottom.
I'm tired of this cartoon :/
Since the movie is watchable now, I'm just going to leave it. Buzzqw, if you want me to test any other setttings for this, let me know, and I will.
nx6
13th March 2007, 06:34
I realized today that DVDFabDecrypter can rip individual episodes from the DVD very nicely, it even lets me preview the episode so I don't have to guess what IFO to use and lets me pick the audio and subtitle tracks I want to rip there. So I preripped one today and set AutoMKV to processing before I left for work, so if that comes out fine I can concentrate of actually getting the best quality image I can in my size specification.
And it didn't rip properly with the DVD I was testing this feature with. I got a message that audio hadn't encoded properly, so I quit. I tried running it again after changing the audio format in case it was an AAC encoder error. No dice. :devil:
buzzqw
13th March 2007, 08:23
@nx6
nero quality goes from 0 to 1, from about 32kbs to transparent quality (near 320kbs)
@Shark_jlc
could i have a sample to test ?
@nx6
And it didn't rip properly with the DVD I was testing this feature with. I got a message that audio hadn't encoded properly, so I quit
most probably the audio wasn't remapped in ifo... but if you ripped only one audio just select the first audio tracks regardless of what tell you ifo parsing
BHH
nx6
13th March 2007, 08:41
most probably the audio wasn't remapped in ifo... but if you ripped only one audio just select the first audio tracks regardless of what tell you ifo parsing
BHH
Huh? :confused: I don't understand.
The tracks I had to choose from in AutoMKV where the ones I had preripped in DVDFabDecrypter, so I couldn't choose the "first" audio track from the DVD as I hadn't ripped that one.
Prospero424
13th March 2007, 10:20
added!
now when selecting "Original" as WIDTH the RESIZER goes to NONE
Nice! This is what I was just going to request. I'd also suggest a "1280" option in the drop-down menu.
nx6
13th March 2007, 10:41
@buzzqw
Ah, I think I understand you now. Since I ripped only the audio and subtitle tracks I wanted with DVDFabDecrypter, I don't have to define them in AutoMKV. I can just choose "All Audio Tracks" and "RIP ALL SUBS", which I just now tried, and the audio encoded this time and I got the final mkv file.
The only downside is the audio tracks are both labeled "und" in VLC media player.
buzzqw
13th March 2007, 13:20
New FULL Release !
stable NEW package WITH DVDFabDecrypter www.64k.it/andres/data/a/AutoMKV078.rar (8.38mb, all inclusive, NO install)
stable NEW package WITHOUT DVDFabDecrypter www.64k.it/andres/data/a/AutoMKV078_NORIP.rar (7.96mb, NO install)
0.78 Full Package 13/03/2007
ADDED: Is now possible to specify AVS input in AUDIO (suggestion by dlflannery)
Build your avs inputs as these examples:
for Videoinput.avs: directshowsource("C:\apps\test\movie.avi",audio=false)+directshowsource("C:\apps\test\movie.avi",audio=false)
for Audioinput.avs directshowsource("C:\apps\test\movie.avi",video=false)+directshowsource("C:\apps\test\movie.avi",video=false)
ADDED: --deadzone-inter and --deadzone-intra support to x264 profiles, change "false" to value you want (like 4)
ADDED: Process this PGC option
ADDED: PGC ripping. Only on ifo input (or dvd input) will be possible to select the specific PGC to process. Example, the vts_02_0.ifo contain 3 pgc , 3 episodes, before selecting input check both process this ifo and process this pgc. After selecting input select from the drop down list the pgc you want to process (correct subtitles ripping isn't guarantee)
ADDED: In XviD profiles added a new option <muxing> (if used only for avi container). This option can be valorized as: <muxing>auto</muxing> or <muxing>avi10</muxing> or <muxing>opendml</muxing>. On auto will be AutoMKV to select the better muxing, on avi10 will be forced the AVI 1.0 mux, on opendml will be forced OpenDML muxing
ADDED: To Queue and to save settings the pgc check
ADDED: On "Audio wasn't encoded properly" now AutoMKV will ask for continue or quit. The question is "timed", so after 120 seconds AutoMKV will continue, even if the muxing would be broken
ADDED: "Use DirectShowSource for Audio" to Save Setting and Queue
ADDED: Preset PAR to WMV encoding, the value of <pixelratio> could be
10:11 for DV NTSC fullscreen
40:30 for DV NTSC widescreen 40:33
12:11 for DV PAL fullscreen 12:11
16:11 for DV PAL widescreen 16:11
ADDED: AutoMKV will check for NeroAACEnc presence and if not found will offer the possibility to download (will simply start default browser on official Nero Digital Audio page)
ADDED: Command line help will be invoked even by -? (suggestion by Demeragon) (and by "/?" "?" "--?" "-help" "--help")
ADDED: Support for SoundOut. BePipe will be no more used. No more need of .NET Framework. Look at http://forum.doom9.org/showthread.php?t=120025&highlight=soundout
ADDED: SoundOut need that libsndfile-1.dll is in program path. On first start AutoMKV will ask to copy into c:\windows\system32 . Click YES button or Audio would be not encoded
ADDED: AutoMKV will save for every job its xml profile, so will be possible to "Use this profile" with queue. I hope to not break anything...
ADDED: "Original" in WIDTH selection. If selected "Original" the resizer will switch to NONE
FIXED: MP3 will support only official preset bitrate: 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, also removed quality encoding, will remain ABR (default) and CBR encoding
FIXED: Coding Tech. AAC will be able to encode only up to 2ch (DPL II, DPL, Stereo, Mono). For encoding with AAC audio up to 5.1 Channel use Nero AAC Audio encoder
FIXED: ColorMatrix thread will be set to number of CPU*1.5. ColorMatrix will be faster.
FIXED: Episodic DVD/IFO and Process this PGC is avaiable only with ifo/dvd input
FIXED: Episodic DVD/IFO is renamed to Process this IFO
FIXED: AutoMKV, as reported in log will move original audio file to audio.XXX in \temp directory. Now it will copy this file (suggestion by dlflannery)
FIXED: When selecting on audio Copy Original the channel downmixing mode is disabled
FIXED: There are several refer to "ACC" audio instead of "AAC" audio (thanks to Demeragon)
FIXED: XviD threads will be set to automatic detection (suggestion by Demeragon)
FIXED: Several improvment to only audio encoding
FIXED: When encoding to WMV and movie is "Partly Film" then no more is used "Hybrid Decimating" but classical decimating (suggestion by Shark_jlc)
FIXED: AutoMKV will double count the size of audio on TS files (thanks to Prospero424)
FIXED: Better ToolTip for "Adjust CRF Profile". This option is to use only in conjuction with CRF profile and HIT MEDIA SIZE
FIXED: More robust use of XviD CQ profile and Hit Media Size
UPDATE: X264 to 628
@Prospero424
the width are near infinite...
@nx6
yes, that's what i mean :)
automkv analyze the ifo and found several audio tracks/subs, every audio and subs have an "addresses", but ripping and selecting only wanted audio/subs doesn't change the "addresses" in ifo, and so automkv goes crazy
BHH
Shark_jlc
13th March 2007, 14:06
That's quite the release, thanks buzzqw!
...
@Shark_jlc
could i have a sample to test ?
...
BHH
What would a good tool be for me to use to get you a sample?
buzzqw
13th March 2007, 14:15
you can use chopperXP
BHH
Prospero424
13th March 2007, 14:36
@Prospero424
the width are near infinite...
Oh, I know. I just thought it might be a good idea to have the preset considering a lot of people are converting from 1080 to 720 (approximately), myself included.
Great release!
P.S. I think you should submit AutoMKV to Betanews.com
delacroixp
13th March 2007, 19:24
added!
now when selecting "Original" as WIDTH the RESIZER goes to NONE
Nice! This is what I was just going to request. I'd also suggest a "1280" option in the drop-down menu.
@Prospero424
the width are near infinite...
Oh, I know. I just thought it might be a good idea to have the preset considering a lot of people are converting from 1080 to 720 (approximately), myself included.
Perhaps it would be possible to have a slider system for the width as used by Dr DivX.
Of course you'ld have to pre-analyse each movie to calculate the recommended width for each format (PAL, NTSC, 4:3, HD).
:):devil::D
Pascal
buzzqw
13th March 2007, 19:38
the image isn't yet approved (better to use the free imageshack.us)
but automkv has already the "autocrop only" in width list...
BHH
delacroixp
13th March 2007, 19:46
i would like to include neroaacenc with automkv software but actually there is some license problem... i have better hope for future :)
Surely they can't refuse an Italian like yourself... what with Nero, the most infamous Roman of alltime...
:) :D :eek:
Pascal
nx6
13th March 2007, 20:19
@delacroixp
I truly underestimated the size needed for extra audio tracks. The episode I ripped last night had two audio tracks and one subtitle, and container size was 1/4 CD and when I played the final movie I found the video size was only 160px wide. :eek: I was using the default NeroAAC settings (.35 quality) and am trying again with a 225MB final size and hope that helps my video substantially.
@buzzqw
I think I'm hung here on my system. I have a command prompt window which says:
S:\AutoMKV078\temp\MainMovie\COWBOY BEBOP\VIDEO_TS\temp>"S:\AutoMKV078\exe\encod
er\x264.exe" --bitrate 200 --progress --output "S:\AutoMKV078\temp\MainMovie\COW
BOY BEBOP\VIDEO_TS\temp\junk.mp4" "S:\AutoMKV078\temp\MainMovie\COWBOY BEBOP\VID
EO_TS\temp\mkvmaudio.avs"
avis [error]: unsupported input format (DIB )
and a window titled "Converting File" that says "Conversion Status: Initialization Successful, Beginning Convertion..." which I think belongs to NeroAAC.
My CPU is running 97-100%, but task manager says it is x264.exe that is taking all the cycles, and I seem to have no disk activity like I usually would have.
I'm going to shut down and go to work, but first I'll tell you what I changed from last time...
I ripped a different DVD episode and this time took the first two audio tracks listed in DVDFabDecrypter, and I once again defined them in AutoMKV instead of just choosing "all audio" AutoMKV listed four audio track choices when I was setting this run up even though I had only ripped two to start with. I was trying to get both audio tracks and have them labeled correctly for VLC player. Anyway, these happened to be 5.1 audio tracks, is that why I am hanging now? I figured Nero would downmix as needed on its own.
------
ah, I closed the open command prompt window and got the "Audio was not encoded properly" error with the auto countdown you added starting.
delacroixp
13th March 2007, 20:27
the image isn't yet approved (better to use the free imageshack.us)
but automkv has already the "autocrop only" in width list...
You're quite right but the 'Image Layout' is still good.
I noticed that when saving the .ini job file... the extension is still ommitted (ver 0.78), unless specifically added... eventhough prompted by the default .ini saving option.
:) :D :eek:
Pascal
SeeMoreDigital
13th March 2007, 20:35
FIXED: Coding Tech. AAC will be able to encode only up to 2ch (DPL II, DPL, Stereo, Mono). For encoding with AAC audio up to 5.1 Channel use Nero AAC Audio encoderI can't say I like this option at all.
CT's encoder is every bit as good at generating 6Ch AAC-LC and HE audio streams as Nero's - if not better.
Personally, I can't see much point of offering options such as, DPL II, DPL. As I can't see an instance when they would be used. In my opinion all that's needed is Mono, 2Ch (stereo) and 5.1 (6Ch) surround for both Nero and CT's encoder
Dare I say it... Maybe, my PM'd suggestion of being able to directly select CT's and Nero's AAC-LC and HE encoders via the "Basic Settings" menu (and not via the "Advanced Audio Menu") may prove useful after-all.... As even I find the "Advanced Audio Menu" a little too confusing to configure and rather unnecessary :eek:
Sorry if I'm being harsh....
delacroixp
13th March 2007, 20:45
@delacroixp
I truly underestimated the size needed for extra audio tracks. The episode I ripped last night had two audio tracks and one subtitle, and container size was 1/4 CD and when I played the final movie I found the video size was only 160px wide. :eek: I was using the default NeroAAC settings (.35 quality) and am trying again with a 225MB final size and hope that helps my video substantially.
Check your 'temp' encoding folder for the audio track... and take note of the filesize... I like to keep my 'audio track' of regular stereo encodes between 5% and 10% of the video filesize. You may be suitably impressed with a .25 quality setting... or less... depending on your application and constraints.
To save time... you could run your encode and when it's completed encoding the audio, check the filesize, listen and if necessary... cancel the encode and start again with new audio settings.
:) :D :eek:
Pascal
buzzqw
13th March 2007, 22:29
@nx6
My CPU is running 97-100%, but task manager says it is x264.exe that is taking all the cycles, and I seem to have no disk activity like I usually would have.
the error is ok, is wanted!
in first phase the audio is being normalized then after this analysis is encoded. Don't quit ! give it 5/6 minutes !
I ripped a different DVD episode and this time took the first two audio tracks listed in DVDFabDecrypter, and I once again defined them in AutoMKV instead of just choosing "all audio" AutoMKV listed four audio track choices when I was setting this run up even though I had only ripped two to start with
the ifo contain again all audio !
how automkv could know that the dvd is preprocessed !
if you want 2 first tracks (the first and only two) just select the first and the second audio tracks regardless of what is named in list
I figured Nero would downmix as needed on its own.
are you sure ?
nero take audio as is given, is the script that downmix (if requested)
@SeeMoreDigital
I can't say I like this option at all.
and me too, but enc_aacPlus.exe and soundout plugin don't work good together... and is possible to use only raw audio 2 channel.
when enc_aacPlus.exe is fixed i will reintroduce the full 5.1ch
BHH
SeeMoreDigital
13th March 2007, 22:43
@SeeMoreDigital
and me too, but enc_aacPlus.exe and soundout plugin don't work good together... and is possible to use only raw audio 2 channel.
when enc_aacPlus.exe is fixed i will reintroduce the full 5.1chI wonder how Kurtnoise13 gets around this with his BeLight audio encoding application?
nx6
13th March 2007, 23:02
the error is ok, is wanted!
The unsupported format error is correct? :confused:
I expect the CPU to be pinned. I didn't have a command window showing the processing progress and the disk was not being accessed.
in first phase the audio is being normalized then after this analysis is encoded. Don't quit ! give it 5/6 minutes !
Yeah, I waited over 15 minutes (it was still running when I was typing that reply).
the ifo contain again all audio !
how automkv could know that the dvd is preprocessed !
if you want 2 first tracks (the first and only two) just select the first and the second audio tracks regardless of what is named in list
Selecting tracks at all seems to be what causes the "audio did not encode properly" error. I can only get audio to encode if I use "All Audio" setting.
are you sure ?
nero take audio as is given, is the script that downmix (if requested)
That was my mistake. I did not know Nero could handle 5.1 channel audio but you mention it in the release notes for this version. I thought it might get confused if 6 channels was input and it was only expecting 2. :p
I couldn't tell what Nero was doing as I just had the "beginning conversion..." message. No progress meter moving and no disk activity. It just appeared to be frozen. That and the unsupported format error is what led to my thinking.
TheRyuu
14th March 2007, 00:02
Is it possible to use more then one avisynth filter at once?
I'd like to use the SeeSaw script but I'd also like to run a denoiser as well. Is it possible? Like add the second one after a comma?
Edit:
Wait just a minute.
So if I ran the avisynth script:
Convolution3d (preset="animeHQ").SeeSaw(NRlimit=3, NRlimit2=4, Sstr=1.5, Slimit=5, Spower=5, Sdamplo=6, Szp=16)
It would run both of them?
BleedingGums
14th March 2007, 00:03
- on win2k the C:\windows directory does not exist. its c:\winnt. AutoMKV tries to copy the file and fails.
When i create c:\windows\system32 the program runs fine.
the normalisation procedure seems to take a ludicrous amount of time, i waited for almost an hour for it to normalize a 2hr movie (6ch DT3 -> nero stereo), it taxes my cpu only 50% though, is that program multithreaded?
aside from time issues the program seems to work fine.
nx6
14th March 2007, 00:44
the normalisation procedure seems to take a ludicrous amount of time, i waited for almost an hour for it to normalize a 2hr movie (6ch DT3 -> nero stereo), it taxes my cpu only 50% though, is that program multithreaded?
Interesting, maybe my system was still running when I thought it had hung. I wish there was a progress meter or ETR listed somewhere if it is going to take so long to normalize.
dlflannery
14th March 2007, 00:59
@buzzqw:
The "set width resolution" used to go to 320 when a Zune profile was selected. Now it goes to "automatic" and 320 is not one of the pull down selections. Will automatic give the 320 needed for Zune, or does the number need to be entered manually?
Thanks
Edit, after some testing with Zune profiles:
1. It appears you do have to manually enter the 320 width for Zune profile encoding. (Better to have it automatically set -- 320 is the only width for Zune devices.)
2. Testing with two mpeg2 clips was fine with interlace set to auto. One clip was partly film, one was partly interlaced.
3. Wasn't quite sure what settings were needed for this AVS input file designed to splice multiple AVI files:
function makeMovie(string fileName) {
video=AVISource(fileName)
audio=getchannel(video,1,1)
return audiodub(video, audio).resampleAudio(44100)
}
makeMovie("C:\Video\NickPlane2006_12_27\NickPlane2.avi") ++
\ makeMovie("C:\Video\NickPlane2006_12_27\NickPlane3.avi")
What I found worked was:
1. Input the AVS video file. Do not input any files for audio when asked.
2. For audio track 1, use the pull-down menu and select the same AVS file name already loaded as the video input file.
3. Check use direct source for both video and audio (i.e., two check boxes are checked)
With these settings it encoded fine and the resize and autocrop functions were applied.
Is that the way you intended it to operate?
I noticed a colormatrix correction being applied -- I believe this is new isn't it? Playing movie.avs in WMP with and without the color correction, I saw no significant difference.
Except for having to manually enter the Zune width, all the WMV stuff looks great! :thanks: for all your work!
Shark_jlc
14th March 2007, 02:42
you can use chopperXP
BHH
Do you want part of the VOB, or part of the resultant movie?
After playing with ChopperXP, I see you want part of the VOB.... now I just need to find some place to put it.
buzzqw
14th March 2007, 09:56
update 0.78a
http://www.64k.it/andres/data/a/AutoMKV078a.rar
FIXED: error on win2k, not having windows\system (thanks to BleedingGums)
FIXED: Normalize process now use the aacgain.exe, mp3gain.exe, VorbisGain.exe
how to update:
unrar, put aacgain.exe, mp3gain.exe, VorbisGain.exe into \exe\BeSweet folder
@wizboy11
in filter box write Convolution3d (preset="animeHQ").SeeSaw(NRlimit=3, NRlimit2=4, Sstr=1.5, Slimit=5, Spower=5, Sdamplo=6, Szp=16)
more simply is impossible
@dlflannery
on my side on selecting zune profile the width goes to 320... have you update the profiles too ?
@Shark_jlc
possibly both, use what ever online storage you want (10/20 mb is enough)
BHH
buzzqw
14th March 2007, 11:34
:( :( :(
i had tested more and more audio files, the problem isn't the normalize. And i don't know why soundout cause so delay in start encoding
i asked Sh0dan some help, if this problem got resolved ... well if not i will back to bepipe.
BHH
weaver4
14th March 2007, 13:53
I had a 2.5 hour movie I was encoding in x264 using the ConstantQuality-CRF profile with a quantizer of 20. I encoded this movie into 640x272 and the filesize came out be a whopping 1.95G which surprised me since the XviD file of the same movie same resolution with a quantizer of 3 was 1.7G. So I tried encoding it with the same resolution, same encoder (H-264), same audio, same quantizer value with some other tools; here is the result.
HandBrake/MediaFork on the PC --- 1.34G
HandBrake/MediaFork on the Mac --- 1.31G
Visual-Hub on the Mac --- 1.27G
Why are the results so much larger with AutoMKV?
buzzqw
14th March 2007, 13:59
@weaver4
is the difference due to audio ?
or to different encoder ?
if you are perfectly sure of identical settings (bframes, cabac...) and the final movie is equal in all encoding (and quality wise) post a warning to x264 mailing list :)
BHH
dlflannery
14th March 2007, 15:05
update 0.78a
[url]...........@dlflannery
on my side on selecting zune profile the width goes to 320... have you update the profiles too ?
Hmmm..... :confused: I just opened it again, switched to AVI container, set width to 640, then switched back to WMV container. As soon as I selected a Zune profile, the width went to 320... sorry, my mistake! :stupid:
weaver4
14th March 2007, 15:08
I tried to keep the audio the same on all of them, but I could not control the Audio on VisualHub. I can't say about the Bframes and such such since you don't have control of those things in HandBrake and VisualHub. And with AutoMKV the only thing I did was select the profile and set the CRF value. The audio was AAC at .35 so it was low and not have much influence of filesize. Handbase and VisualHub both use x264 coder.
You have to admit that a Data Rate of 1675kbs for a CRF value of 20 is way out of line for a 640x272 movie. It should be somewhere around 900-1000kbps.
Quality on all of them look great.
buzzqw
14th March 2007, 15:30
you could anayse the mp4 resulting with avinaptic (search on forum), this tools could give all the parameter used by encoder !
and remember that b frames and deblocking could give a boost to reduce bitrate
BHH
weaver4
14th March 2007, 16:04
Is there anyplace that talks about the various profiles? I am not sure I am using the optimum profile for X264.
Thanks,
delacroixp
14th March 2007, 16:32
Is there anyplace that talks about the various profiles? I am not sure I am using the optimum profile for X264.
Thanks,
Are you using AutoMKV 0.78... ???
IF not... did you batch your encode first... and then run the queue... ???
AutoMKV 0.76 could not remember 'modified' quantizer settings in batch mode.
Therefore your encode would run at the default quantizer setting of 18... regardless of your choice.
This being true... try a direct encode... or upgrade first...
:) :D :eek:
Pascal
buzzqw
14th March 2007, 16:38
i can confirm delacroixp
in previus version, as fixed in 0.78, the queue job ignore the custom crf used
@weaver4
Is there anyplace that talks about the various profiles
since is based (even if had got a massive rework) on SharkTooth profile's i can suggest to read those thread
BHH
delacroixp
14th March 2007, 16:41
In the near-past... any mono encode still used 2 channel audio to encode. Any filesize benefit from Mono was thus lost.
Single channel mono should easily be played on stereo and even 5.1 surround systems.
:) :D :eek:
Pascal
buzzqw
14th March 2007, 17:00
on mono source i to select MONO as downmix...
till i don't introduce some routines to pre-analyze audio , is given to user the due of selectiong right downmixing
BHH
delacroixp
14th March 2007, 17:24
on mono source i to select MONO as downmix...
still i don't introduce some routines to pre-analyze audio , it's given to user the duty of selecting the right downmixing
Beautifull
:) :D :eek:
Pascal
whiskey
14th March 2007, 17:59
I've encoded dvd concert to x264 just for testing purposes but even with deinterlace method seto to AUTO finish result is a video with slightly lines visible in fast motions.What should i do ? I think video is some kinda hybrid there are couple of more options in advance settings but I'm not sure which deinterlacer to choose ?
buzzqw
14th March 2007, 18:16
even if slow as hell try apply HQ Deint, should bring to better deinterlace
also you could post a sample of vob (to analyze)
BHH
weaver4
14th March 2007, 18:26
I am using 0.76 but I was not using batch encoding.
delacroixp
14th March 2007, 19:38
I am using 0.76 but I was not using batch encoding.
http://forums.divx.com/forum/viewTopic.php?id=2760
Kamiwa (above link) suggested that a
Dr DivX quantizer of 2 = Q18 (H264) and a
Dr DivX quantizer of 3 = Q22 . "
Dr DivX quantizer of 4 = Q24 . "
I did reply to your first post where I mentioned that DivX Q3 is equivalent to Q22 (H264)... Q4 to Q22 and... Q18 is Near-Perfect while Q22 is Excellent and Q24 is Good Quality.
The best solution may well be the 'trial and error' alternative... Experiment and see what you see... your eyes will speak for themselves...
:) :eek: :D
Pascal
delacroixp
14th March 2007, 22:53
The Image is up (see original post).
@buzzqw
Perhaps, along with the option for Original Resolution could be added the option for Automatic Cropping (see Image) ... done in such a way that downsizing is not necessary... even if it implied cropping 1 line extra or 1 too few.
Dr DivX 1 and VirtualDub have both had a simple Editing feature to 'slice and dice' allowing the user to edit-out intros, credits, adverts or the like... a feature certainly high on my wishlist.
While I realise that this is way beyond the present status of AutoMKV... a preview panel with a simple resolution slider does allow you to view the possible resolutions, croppings and changes in croppings & resolutions... in realtime.... and preplan accordingly.
:) :D :eek:
Pascal
weaver4
14th March 2007, 23:13
I did reply to your first post where I mentioned that DivX Q3 is equivalent to Q22 (H264)... Q4 to Q22 and... Q18 is Near-Perfect while Q22 is Excellent and Q24 is Good Quality.
The best solution may well be the 'trial and error' alternative... Experiment and see what you see... your eyes will speak for themselves...
:) :eek: :D
Pascal
Thanks, I will do some trial and error but it does not explain why other tools make significantly smaller files with the same Quantizer.
SeeMoreDigital
14th March 2007, 23:45
While I realise that this is way beyond the present status of AutoMKV... a preview panel with a simple resolution slider does allow you to view the possible resolutions, croppings and changes in croppings & resolutions... in realtime.... and preplan accordingly.I must confess the idea of AutoMKV having a "preview panel" would be awesome!
But..... I can imagine it would involve a hell of a lot of work :eek:
whiskey
15th March 2007, 02:29
even if slow as hell try apply HQ Deint, should bring to better deinterlace
also you could post a sample of vob (to analyze)
BHH
Sample available here http://www.rogepost.com/n/8145128002 10MB straight from VOB
nx6
15th March 2007, 02:31
There is a "preview" encode feature isn't there? Where it only encodes the first 5% of the movie.
That would be faster than having to wait for an entire feature to encode before seeing the results. But then it would be more useful to specify an actual time index range to use so you could pick, say, a high action section of the movie, much of the first 5% will be opening credits.
dlflannery
15th March 2007, 04:19
......ADDED: Is now possible to specify AVS input in AUDIO (suggestion by dlflannery)
Build your avs inputs as these examples:
for Videoinput.avs: directshowsource("C:\apps\test\movie.avi",audio=false)+directshowsource("C:\apps\test\movie.avi",audio=false)
for Audioinput.avs directshowsource("C:\apps\test\movie.avi",video=false)+directshowsource("C:\apps\test\movie.avi",video=false)
........
BHH
I've constructed my video.avs and audio.avs exactly as quoted above except substituting my two video file names where you have "movie.avi". Both files play OK in WMP11.
Trying to encode to Zune profile. Deinterlace set to NONE.
I notice when I load the audio AVS, I have to select "files of type all (*.*)" in the browser (i.e., .avs is not a pre-defined type).
I've tried all combinations of the two Use DirectShow check boxes (video and audio), i.e. (off,off), (on,off), (off, on) and (on, on).
I always get the same movie.avs in the temp folder:
Import("C:\MyVideo.avs")
audio=EnsureVBRMP3Sync(audio)
audio=ConvertAudioToFloat(audio)
audio=getchannel(audio,1,2)
audiodub(audio,last)
This fails for two reasons:
1. No audio clip has been loaded.
2. Even if my audio AVS was imported, it would not define the "audio" variable needed by movie.avs (following your quoted example above)
If I define "audio" in my audio AVS file and import it as the first statement in movie.avs, it encodes fine.
What am I doing wrong?
Also: I"ve tried it with deinterlace set to auto. It takes longer but still fails and movie.avs is the same.
Thanks.
weaver4
15th March 2007, 04:53
I am having problems with 0.78. I am encoding a movie and I get the error "Audio wasn't Encoded Properly". But I look at the folder and the ac3 file was generated. This is exactly the same movie source I used with version 0.76 without a problem. I tried changing the Audio codec from Nero to CodingTech AAC but I got the same failure. I tried with two x264 profiles and had the same error. I then tried an xvid to avi and got the same result.
I saw that someone else was having the same problem but I never saw a resolution.
nx6
15th March 2007, 08:00
I am having problems with 0.78. I am encoding a movie and I get the error "Audio wasn't Encoded Properly". But I look at the folder and the ac3 file was generated. This is exactly the same movie source I used with version 0.76 without a problem. I tried changing the Audio codec from Nero to CodingTech AAC but I got the same failure. I tried with two x264 profiles and had the same error. I then tried an xvid to avi and got the same result.
I saw that someone else was having the same problem but I never saw a resolution.
I was having the problem, it was pretty much the only thing keeping AutoMKV from working reliably for me. But I seem to be past it now, I hope. I had an odd experience last night with 0.78, long story short I ran an encode on a super fast profile to test if the audio issue was fixed and it seemed to be gone, but then when I tried to run the job for real - I used the same settings, only changing the final container size and X264 profile to "anime_maxquality" I had the error again. It was maddening! :eek: Why was it happening again when it had just done the job without a problem!
Anyway, I went to the forums and saw 0.78a had been released, so I installed it and ran my encode with the same settings it had just failed on previously and it worked! I'm starting to think the old normalization method had something to do with the issues I was having. I've only run that one job so far, though (because it took all the rest of that night and today while I was at work to finish with such a slow encoding profile). So it might still have an issue on the second or third run.
Have you tried 0.78a? It did get rid of that normalization delay me and a couple other people had.
buzzqw
15th March 2007, 09:59
update 0.78b
http://www.64k.it/andres/data/a/AutoMKV078b.exe
ADDED: If NicAudio is unable to process the file, automkv will switch to DirectShowSource
FIXED: More tweak to SoundOut. Now is even more quicker!
FIXED: Some problem on wmv encoding (???)
@whiskey
thanks, i will analize asap
There is a "preview" encode feature isn't there?
no, not now
I must confess the idea of AutoMKV having a "preview panel" would be awesome!
i like it too :)
@dlflannery
please try this update
@weaver4
the problem is often due to corrupted audio,
try this build
@ALL
sorry for all those problems :(
BHH
delacroixp
15th March 2007, 10:25
Thanks, I will do some trial and error but it does not explain why other tools make significantly smaller files with the same Quantizer.
I had a 2.5 hour movie I was encoding in x264 using the ConstantQuality-CRF profile with a quantizer of 20. I encoded this movie into 640x272 and the filesize came out be a whopping 1.95G which surprised me since the XviD file of the same movie same resolution with a quantizer of 3 was 1.7G. So I tried encoding it with the same resolution, same encoder (H-264), same audio, same quantizer value with some other tools; here is the result.
HandBrake/MediaFork on the PC --- 1.34G
HandBrake/MediaFork on the Mac --- 1.31G
Visual-Hub on the Mac --- 1.27G
Why are the results so much larger with AutoMKV?
In your test you were comparing Q3 (DivX) to Q20 (H264)... whereas you should have used Q22...
:) :D :eek:
Pascal
Eek... sorry about your name spelling
weaver4
15th March 2007, 12:55
I was comparing a X264 encoding made by HandBrake and VisualHub with a quantizer of 19.4 (62%) and 20.
I was encoding this file using Automkv 0.76 and when I checked the file using avinapic it said the CRF was 18! I redid the file the second time making sure the setting was 20 and avinapic still showed it as 18. I am now trying it with 0.78
weaver4
15th March 2007, 12:56
0.78b is encoding the audio correctly. Thanks.
buzzqw
15th March 2007, 13:08
@weaver4
glad for audio !
but remember after changing the profile in advanced profiles to check use this profile!!
also ... open in notepad the x264profile.xml in automkv folder , you MUST see bitratequantitizer 20
BHH
weaver4
15th March 2007, 13:55
@weaver4
glad for audio !
but remember after changing the profile in advanced profiles to check use this profile!!
also ... open in notepad the x264profile.xml in automkv folder , you MUST see bitratequantitizer 20
BHH
whew....I was changing the CRF on the advanced settings page(tab) to 20; I was not changing the profile itself. Is this the wrong way to do it? So I was loading the ConstantQuality-CRF profile then changing the CRF on the Advanced page to 20 and then pressing the encode button. Is the right way to do it to go into the ConstantQuality-CRF.xml file and change the bitratequantizer to 20?
Is the Coding Tech AAC coder OK to use, never heard of it before? Or should I really be using the Nero?
buzzqw
15th March 2007, 14:30
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
weaver4
15th March 2007, 14:50
Thanks, I had been using AutoMKV to do Zune (which I never modified the profiles) and XviD where I edited the profiles.xml the way I wanted them. So I never ran into this before.
buzzqw
15th March 2007, 15:01
remember that in full package there are even the profiles, so all change you have made will be lost on upgrade!
also, even if you don't copy the \profiles folder remember that some update needs the new profiles (like new muxing mode for xvid)
BHH
dlflannery
15th March 2007, 15:46
update 0.78b
http://www.64k.it/andres/data/a/AutoMKV078b.exe
ADDED: If NicAudio is unable to process the file, automkv will switch to DirectShowSource
FIXED: More tweak to SoundOut. Now is even more quicker!
FIXED: Some problem on wmv encoding (???)
@dlflannery
please try this update
BHH
The failures described in my earlier post (http://forum.doom9.org/showpost.php?p=970626&postcount=1313)continue although the movie.avs file has changed from before.
Again I tried all combinations of the 2 direct show check boxes (could you tell me what settings I should be using for these? :confused: -- that would cut my testing time by 4X !)
Depending on these checkbox settings I get two movie.avs versions.
One has:
movie = directshowsource("C:\videos\MyVideo.avs",audio=false)
movie = isRGB(movie) ? ConvertToYV12(movie,interlaced=true) : movie
movie = isYUY2(movie) ? ConvertToYV12(movie,interlaced=true) : movie
audio = DirectShowSource("C:\videos\MyVideo.avs",fps=30.000299,convertfps = true,video=false)
Note that the audio AVS ("MyAudio.avs") is never used.
The other version of movie.avs has just one line:
Import("C:\videos\MyVideo.avs")
Again the audio AVS file is not used.
After I select MyVideo.avs as the input file, a file browser comes up asking for an audio file. That is where I select MyAudio.avs. Is this correct? I don't see any other way to input the audio AVS file. This audio AVS then shows in the Audio Track 1 source window.
Thanks
buzzqw
15th March 2007, 16:29
just a little information...
i added the possibility to load avs as audio file... i never said that was supported in wmv.... (as you know wmv has a very different type of avs script since it must include even audio)
you could input this as video AND no select audio input AND don't check any directshow usage
LoadPlugin("DGDecode.dll")
global movie = directshowsource("1173967360__aaa.mkv",audio=false)
global audio = directshowsource("1173967360__aaa.mkv",video=false)
audiodub(movie,audio)
BHH
dlflannery
15th March 2007, 18:53
just a little information...
i added the possibility to load avs as audio file... i never said that was supported in wmv.... (as you know wmv has a very different type of avs script since it must include even audio)
you could input this as video AND no select audio input AND don't check any directshow usage
LoadPlugin("DGDecode.dll")
global movie = directshowsource("1173967360__aaa.mkv",audio=false)
global audio = directshowsource("1173967360__aaa.mkv",video=false)
audiodub(movie,audio)
BHH
Thanks for the clarification,buzzqw.
In your example, why is the DGDecode plugin needed?
(Sorry if that is a newbie question.)
I reported a similar (not identical) case in an earlier post (http://forum.doom9.org/showpost.php?p=970062&postcount=1289) (see #3). I had to check both directshow boxes for it to encode properly. I did not load the DGDecode plugin and I didn't define clips movie and audio as global. Are the plugin and/or the global variables needed so the direct show boxes don't need to be checked?
Is it possible to state simple logic that determines whether the directShow boxes should be checked?
Thanks for your patience.
nx6
15th March 2007, 18:59
There is a "preview" encode feature isn't there?
no, not now
I was thinking of the "sample" feature on MkvMagic.
nx6
15th March 2007, 19:08
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
Oh, I tried a CRF encode for the first time and did the same thing (changed the value on Advanced Settings). :)
buzzqw
15th March 2007, 19:26
@dlflannery
In your example, why is the DGDecode plugin needed?
(Sorry if that is a newbie question.)
it isn't a newbie question, but an clever observation!
no, there is NO NEED to load dgdecode... i have simply edited a previus script... and havn't trim the load plugin. My mistake :)
the plugin and/or the global variables needed so the direct show boxes don't need to be checked?
when i use avitynth IMPORT fuction, avisynth "simply" import the "result" of audio and video, DON'T import what is the origins of audio and video.
When i use GLOBAL i force avisynth to remember what is audio and what is video
Is it possible to state simple logic that determines whether the directShow boxes should be checked?
more simply that you can suppose: whenever you want to process the input file (and so NOT AVS) by directshowsource
maybe due to not correct dgdecode handling, or you want to use a preprocessing filter using ffdshow, corrupted audio or video....
Thanks for your patience.
no problem what so ever!
I was thinking of the "sample" feature on MkvMagic.
i suppose... i added in todo list.. but isn't a top priority
BHH
delacroixp
15th March 2007, 20:28
I'm encoding the extras of Band of Brothers which always have tons of black space.
I used Dr DivX to preview and test the autocrop facility... which gave a preference for 6-Left & 4-Right... and the encode worked fine.
I thought 9-Left and 7-Right looked better (also a multiple of 16) and my encode crashed after doing the 'de-interlace check'... what gives ?
I downsized the main episodes to 720x400 but this extra I'm taking downto 640x368 (1024x576 Orig)... IF I choose the 640 width option (drop down menu)... does it automatically crop and then downsize ?
:thanks:
@weaver4
Nice to see your quantizer encoding is coming together... you've always been into very much better quality encoding allbeit at low-res where most guys want to compress 10 movies onto 1 DVD at really poor quality levels.
:) :D :eek:
Pascal
buzzqw
15th March 2007, 20:34
IF I choose the 640 width option (drop down menu)... does it automatically crop and then downsize ?
yes and yes, first it will be autocropped then resized to 640*xxx where xxx is the correct height given original ar
my encode crashed after doing the 'de-interlace check'... what gives
so was BAutoDeint.exe that crashed ? or automkv ?
could you post the log ?
BHH
delacroixp
15th March 2007, 21:16
so was BAutoDeint.exe that crashed ? or automkv ?
could you post the log ?
20:52:56 0.78 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
20:52:56 Selected Input file: H:\Movies\To Be Encoded\Band of Brothers\Extras\Extras 01 - The Men of Easy Company\The Men of Easy Company.VOB
20:52:56 Selected Output dir: H:\Movies\To Be Encoded\Band of Brothers\Extras\Extras 01 - The Men of Easy Company\temp\
20:52:56 Selected Final Name: The Men of Easy Company
20:52:56 Selected Container type: MKV
20:52:56 Selected Encoder: X264
20:52:56 Selected Size: Don't care about size
20:52:56 Selected Slice: 1
20:52:56 Selected Profile: ConstantQuality-CRF.xml
20:52:56 Selected Width: 640
20:52:56 Selected Resizer: Lanczos4Resize
20:52:56 Selected Filters: RemoveGrain(mode=2)
20:52:56 Selected Deinterlacer: AUTO
20:52:56 Selected Field Order: AUTO
20:52:56 Manual Crop: Enabled
20:52:56 Left Crop: 9
20:52:56 Top Crop: 0
20:52:56 Right Crop: 7
20:52:56 Botton Crop: 0
20:52:56 Manual Width: 640
20:52:56 Manual Height: 368
20:52:56 Enabled CRF/CQ AutoRes at 18 value
20:52:56 Track Language 1: NONE
20:52:56 Audio Codec 1: Nero AAC
20:52:56 Audio Quality 1: 0.25
20:52:56 Audio Channel 1: Stereo
20:52:56 Advanced Audio Settings DUMP Track 1
20:52:56 Nero Option Profiles: AUTO --- Encoding Mode: Quality
20:52:56 CCT Option Profiles: AUTO --- Channel Options: AUTO
20:52:56 Lame Settings: ABR
20:52:56 Audio Normalization: 1
20:52:56 Frequency: AUTO --- Tempo : NONE
20:52:56 Pitch: NONE --- Other Add :
20:52:56 Advanced Audio Settings DUMP Track 2
20:52:56 Nero Option Profiles: AUTO --- Encoding Mode: Quality
20:52:56 CCT Option Profiles: AUTO --- Channel Options: AUTO
20:52:56 Lame Settings: ABR
20:52:56 Audio Normalization: 1
20:52:56 Frequency: AUTO --- Tempo : NONE
20:52:56 Pitch: NONE --- Other Add :
20:52:56
20:52:56 Dgindex CMD: F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\dgindex\dgindex.exe -FO=0 -OM=0 -YR=2 -If=[H:\Movies\To Be Encoded\Band of Brothers\Extras\Extras 01 - The Men of Easy Company\The Men of Easy Company.VOB] -OF=[H:\Movies\To Be Encoded\Band of Brothers\Extras\Extras 01 - The Men of Easy Company\temp\movie] -exit -minimize
20:56:30 Starting fixing audio delay on track number 0
20:56:30 Finished fixing audio delay
20:56:37 Number of Frames: 116365
20:56:37 Framerate: 25.000000
20:56:37 Movie lenght in Seconds: 4655
20:56:37 Movie Width: 720
20:56:37 Movie Height: 576
21:01:36 Processing completed. Type is determined to be partly interlaced.
21:01:36 Processing completed. Type is determined to be partly interlaced.
21:01:36 BFF: 50
21:01:36 TFF: 333
21:01:36 Order: var
21:01:36 Starting X264
21:01:36 CRF encoding X264: F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\encoder\x264.exe --pass 1 --crf 24 --stats "H:\Movies\To Be Encoded\Band of Brothers\Extras\Extras 01 - The Men of Easy Company\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\Extras\Extras 01 - The Men of Easy Company\temp\movie.mp4" "H:\Movies\To Be Encoded\Band of Brothers\Extras\Extras 01 - The Men of Easy Company\temp\movie.avs"
21:01:39 Accepted values are between 31876710400 and 33889976320 bytes (movie+audio)
21:01:39 Got a file of size: 0 bytes + audio size -2 bytes (-2)
21:01:39 "F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\matroska\mkvmerge.exe" -o "H:\Movies\To Be Encoded\Band of Brothers\Extras\Extras 01 - The Men of Easy Company\temp\The Men of Easy Company.mkv" --track-name -1:"The Men of Easy Company" --aspect-ratio 1:1.777778 "H:\Movies\To Be Encoded\Band of Brothers\Extras\Extras 01 - The Men of Easy Company\temp\movie.mp4" --title "Done with AutoMKV 0.78 http://forum.doom9.org/showthread.php?p=854221 "
21:01:39 Final Muxed size: -1 bytes
21:01:39 Encoding finished: 00:08:43 elapsed time
21:01:40 -----------------------------------------------------------------------
21:01:40 Script AutoCrop.log
21:01:40
21:01:40 Crop(10,0,700,576)
21:01:40 -----------------------------------------------------------------------
21:01:40 Script Resmovie.avs
21:01:40 -----------------------------------------------------------------------
21:01:40 Script movie.avs
21:01:40
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\autocrop.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\BicublinResize.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\blockbuster.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\cnr2.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\ColorMatrix.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\Convolution3D.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\corrector.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\DctFilter.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\Decomb.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\Deen.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\degrainmedian.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\DGDecode.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\EEDI2.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\fft3dfilter.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\FluxSmooth.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\frfun7.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\hqdn3d.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\LeakKernelDeint.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\MaskTools.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\medianblur.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\MipSmooth.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\mt_masktools.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\mvtools.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\NicAudio.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\RemoveGrain.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\Repair.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\SangNom.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\SimpleResize.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\SoundOut.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\TBilateral.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\TDeint.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\TIVTC.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\TomsMoComp.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\TTempSmooth.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\UnDot.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\UnFilter.dll")
21:01:40 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\VSFilter.dll")
21:01:40 #loadpluginstart
21:01:40
21:01:40 #test1
21:01:40
21:01:40 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\MCBob_v03c.avsi")
21:01:40 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\mvbob.avsi")
21:01:40 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\seesaw.avsi")
21:01:40 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV078_NORIP\exe\filter\spresso.avsi")
21:01:40 #importstart
21:01:40
21:01:40 #test2
21:01:40
21:01:40 movie = mpeg2source("H:\Movies\To Be Encoded\Band of Brothers\Extras\Extras 01 - The Men of Easy Company\temp\movie.d2v")
21:01:40 function getOrder(clip c) {
21:01:40 order = GetParity(c) ? 1 : 0
21:01:40 Return order }
21:01:40 #filter1start
21:01:40
21:01:40 #test3
21:01:40
21:01:40 last = movie
21:01:40 TDeint(full=false)
21:01:40 crop(movie,9,0,-7,-0)
21:01:40 #resizestart
21:01:40
21:01:40 #test4
21:01:40
21:01:40 Lanczos4Resize(640,368)
21:01:40 #filter2start
21:01:40
21:01:40 #test5
21:01:40
21:01:40 RemoveGrain(mode=2)
21:01:40 ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
21:01:40 -----------------------------------------------------------------------
21:01:40 Script mkvmaudio.avs
21:01:40 -----------------------------------------------------------------------
21:01:40 Script mkvmaudio.bat
21:01:40 -----------------------------------------------------------------------
21:01:40 Script mkvmaudio2.avs
21:01:40 -----------------------------------------------------------------------
21:01:40 Script mkvmaudio2.bat
21:01:40
21:01:40 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
BAutoDeint.exe crashed...
:) :D :eek:
Pascal
Shark_jlc
16th March 2007, 03:57
Automkv .78 suggestions after a bit of use:
1) Windows Media Encoder has failed to find the length on 3 out of 3 movies so far, even via the alternate method it tries.
2) I can't type a path in the "Select output folder" ? I like to throw these movies I encode into temp files, where ever.
3) I don't want a nero encoder popup everytime I start AutoMKV. Put a check box on the message window saying "Do not show on startup", or "do not show again".
4) When using a queue, what is the difference between the "Start Encoding" and the "Start Queue" button?
5) If the main drop-down for "Audio Track 2" is set to none, why not disable the remaining controls in that group (i.e containter drop down, channel drop down, slider)
Same thing can apply to any control group where the main control essentially negates the others.
6) After I start an encode, and then I go back to AutoMKV and look at my settings (maybe adjust something to see what it does), do NOT change the Encoding status based on what I just looked at. It's confusing.
:)
thanks Buzzqw.
dlflannery
16th March 2007, 05:57
I've been able to get H264 encodings (MKV or MP4 containers) using separate video-only and audio-only AVS input files. As we already discussed, I now know that this will not work with wmv encodings.
How aboue XVID/AVI ? I haven't been able to get it to work. I can't get AVS inputs to work at all for audio input with XVID, including also:
1. inputing a video+audio AVS as the video file and nothing as an audio file and selecting "all audio tracks"
2. inputing this same AVS as both the video file and the track 1 audio file.
I get encodings with no audio. Is there any way to get audio from an AVS input into an AVI/XVID encoding?
buzzqw
16th March 2007, 08:16
@delacroixp
you can't crop by odd number , change crop(movie,9,0,-7,-0) to crop(movie,10,0,-8,-0)
@Shark_jlc
1) Windows Media Encoder has failed to find the length on 3 out of 3 movies so far, even via the alternate method it tries.
don't worry, on my pcs it never got the exact lenght of movie. must be something within WMCmd.vbs AND DirectShowSource
I can't type a path in the "Select output folder"
don't know... i have negate the copy&paste here for security... ... i will do some test , if ok i will allow to paste the directory to output
I don't want a nero encoder popup everytime I start AutoMKV. Put a check box on the message window saying "Do not show on startup", or "do not show again".
i can add this to save settings, but if doing so i obligated all user to create a default profile... better to create a false neroAacEnc.exe of size > 10 bytes
4) When using a queue, what is the difference between the "Start Encoding" and the "Start Queue" button?
on start encoding only the last queue will start, on start queue all queue wainting will start
5) If the main drop-down for "Audio Track 2" is set to none, why not disable the remaining controls in that group (i.e containter drop down, channel drop down, slider)
i will consider.. but is a very low priority
Same thing can apply to any control group where the main control essentially negates the others.
for most control with "dangerous confict" is already done, if you spot something that MUST be disabled or will give a bad encoding , feel free to post
After I start an encode, and then I go back to AutoMKV and look at my settings (maybe adjust something to see what it does),
Sorry pal , but changing status AFTER and WHILE the encoding is started IS VERY VERY DANGEROUS. Automkv will check parameters (audio codec,audio bitrate, resizers...) only at time when it need this information. Better, automkc will not save all parameter when you it start encoding, but will read dinamically while encoding
@dlflannery
i will do some test, but the workflow should be the same...
BHH
buzzqw
16th March 2007, 08:52
update
http://www.64k.it/andres/data/a/AutoMKV078c.exe
0.78c
FIXED: AACgain doesn't work proprely on AAC/MP4 done by Coding Tech. AAC, apply an AmplifydB(7) to audio script
FIXED: Some bugs on AVS input (thanks to dlflannery)
@dlflannery
use avs like this for video
LoadPlugin("DGDecode.dll")
mpeg2source("movie.d2v") well you can add even more plugins and filters
for audio
LoadPlugin("NicAudio.dll")
NicAC3Source("audio.ac3")
it is ok for both x264 and avi, remember that all those avs must be played ok on mediaplayer classic
BHH
delacroixp
16th March 2007, 09:44
@buzzqw
@delacroixp
you can't crop by odd number , change crop(movie,9,0,-7,-0) to crop(movie,10,0,-8,-0)
Don't you just hate the 'simple solution'... ??? So I guess 2 odd crops don't make a right...
@Shark_jlc
4) When using a queue, what is the difference between the "Start Encoding" and the "Start Queue" button?
on start encoding only the last queue will start, on start queue all queue wainting will start
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
nx6
16th March 2007, 10:04
update
http://www.64k.it/andres/data/AutoMKV078c.exe
Damn, and here I just started a job a half-hour ago. :p
I've got a request: I'm using Lame for audio on this encode, and after the normalize ran I was warned that applying +2 gain may cause audio clipping, but I wasn't aware it was going to ask for my confirmation and only saw it because I got back on the machine to check my email. Can we get a timeout added so if no user input a choice is automatically selected? That way the rest of the job is not held up by the question of whether to add gain or not on audio.
I realize this is probably someone else's project doing this and not AutoMKV itself.
gekan
16th March 2007, 10:53
update
http://www.64k.it/andres/data/AutoMKV078c.exe
...
Thanks for the update but link isn't working at this time.
buzzqw
16th March 2007, 11:00
http://www.64k.it/andres/data/a/AutoMKV078c.exe
link on first page was correct
BHH
buzzqw
16th March 2007, 11:07
I've got a request: I'm using Lame for audio on this encode, and after the normalize ran I was warned that applying +2 gain may cause audio clipping,
no clip , i can assure, the procedure is safe
BHH
delacroixp
16th March 2007, 14:01
I've got a request: I'm using Lame for audio on this encode, and after the normalize ran I was warned that applying +2 gain may cause audio clipping, but I wasn't aware it was going to ask for my confirmation and only saw it because I got back on the machine to check my email. Can we get a timeout added so if no user input a choice is automatically selected? That way the rest of the job is not held up by the question of whether to add gain or not on audio.
I realize this is probably someone else's project doing this and not AutoMKV itself.
@nx6
I realise that your request is more to do with the automatic timeout response than whether a +2 gain would in fact cause clipping.
@buzzqw (all)
I've been using BeSweet (BeLight GUI) which does a 2-pass strategy to test for optimal audio boost first and then to implement the change on the 2nd pass.
I've had a gain of +14 and more and I'm sure that only rarely will a +2 gain actually cause any clipping but perhaps we could have the option for a complete and thorough 2-pass quality audio-boost... for those who prefer the 'perfect solution' and/or have time on their side.
In most cases a proper amplitude audio boost will do more to enhance the illusion of quality than any subwoofer, sub-50Hz, frequency support.
:) :D :eek:
Pascal
buzzqw
16th March 2007, 15:20
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....
BHH
dlflannery
16th March 2007, 15:38
update
http://www.64k.it/andres/data/a/AutoMKV078c.exe
0.78c
FIXED: AACgain doesn't work proprely on AAC/MP4 done by Coding Tech. AAC, apply an AmplifydB(7) to audio script
FIXED: Some bugs on AVS input (thanks to dlflannery)
@dlflannery
use avs like this for video
LoadPlugin("DGDecode.dll")
mpeg2source("movie.d2v") well you can add even more plugins and filters
for audio
LoadPlugin("NicAudio.dll")
NicAC3Source("audio.ac3")
it is ok for both x264 and avi, remember that all those avs must be played ok on mediaplayer classic
BHH
Don't the example AVS you give apply to an mpeg2 source only? Here are the AVS I am using:
Video:
directShowSource("C:\Video\NickPlane2006_12_27\NickPlane2.avi", audio = false) +
\ directShowSource("C:\Video\NickPlane2006_12_27\NickPlane3.avi", audio = false)
Audio:
DirectShowSource("C:\Video\NickPlane2006_12_27\NickPlane2.avi", video = false).resampleAudio(44100) +
\ DirectShowSource("C:\Video\NickPlane2006_12_27\NickPlane3.avi", video = false).resampleAudio(44100)
getchannel(1,1)
These files play OK in mediaplayer classic.
These do not work for AVI/DIVX target. I have to shut AutoMKV down -- I think the audio processing is in an infinite loop. They DO work for MP4/X264 target. :confused:
These two .avi files total about 110M. I am willing to upload them to a site where you could download them (please suggest site) if you want to test with them.
Actually I have two other files with exactly the same characteristics (nickPlane4 and nickPlane5) and they total only about 30 MB. And you would get to see what the "cranky old newbie" looks like -- if you can stand that! :rolleyes:
Shark_jlc
16th March 2007, 15:51
don't worry, on my pcs it never got the exact lenght of movie. must be something within WMCmd.vbs AND DirectShowSource
It has always failed the with it's first attempt, but has never failed on its second attempt on versions prior to this.
i can add this to save settings, but if doing so i obligated all user to create a default profile... better to create a false neroAacEnc.exe of size > 10 bytes
This sounds ugly. 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.
on start encoding only the last queue will start, on start queue all queue wainting will start.
Sounds... odd. I'm not sure who sets up a queue and then doesn't use it.
i will consider.. but is a very low priority
for most control with "dangerous confict" is already done, if you spot something that MUST be disabled or will give a bad encoding, feel free to post
ok :/
The idea behind disabling the controls would be to decrease the possibility of user error, by giving people fewer options to choose from, or to be confused by.
Sorry pal , but changing status AFTER and WHILE the encoding is started IS VERY VERY DANGEROUS. Automkv will check parameters (audio codec,audio bitrate, resizers...) only at time when it need this information. Better, automkc will not save all parameter when you it start encoding, but will read dinamically while encoding
An end-user should not be able to do something that dangerous. If the settings were saved to an ini file, or registry, when the "Start Encode" or "Start Queue" button was hit, and then AutoMKV referenced that, it would take away any possible user-caused issues.
Buzzqw, once again I just want to say thank you for this application and the hard work you do with it. I've yet to come across a developer as helpful as yourself, and I hope you don't take these ideas I have as criticisms, I'm just thinking out loud of ways to help make this more accessable to a larger audience, and to decrease the amount of support you have to provide.
Thanks again Buzzqw.
schizosmurf
16th March 2007, 16:25
Hi, I've been trying to find a working app to convert video to wmv for my PPC that will work with Vista and such my search has led me here. Now on to the matter at at hand...
I'm trying to convert a xvid avi to wmv. as soon as i click "start encoding" i get the error !!! BREAK - FILE NOT SUPPORTED !!! Upon clicking OK, the program immediately crashes/closes (not sure if thats intended behavior upon error encounter).
Here's the log:
10:19:06 0.78c - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
10:19:06 Selected Input file: C:\Users\schizosmurf\Videos\Bleach\Dubbed\Bleach - 19 {C_P}.avi
10:19:06 Selected Output dir: C:\Users\schizosmurf\Videos\PPC\temp\
10:19:06 Selected Final Name: Bleach - 19 {C_P}
10:19:06 Selected Container type: WMV
10:19:06 Selected Encoder: WMV
10:19:06 Selected Size: 1 CD
10:19:06 Selected Slice: 1
10:19:06 Selected Profile: 2_Pass_VBR.xml
10:19:06 Selected Width: Automatic
10:19:06 Selected Resizer: SimpleResize (neutral soft)
10:19:06 Selected Filters: NONE
10:19:06 Selected Deinterlacer: AUTO
10:19:06 Selected Field Order: AUTO
10:19:06 NeroAACEnc.exe: not present
10:19:06 Enabled Bitrate encoding with value 500
10:19:06 Track Language 1: Bleach - 19 {C_P}.avi
10:19:06 Audio Codec 1: WMV
10:19:06 Audio Quality 1: 64
10:19:06 Audio Channel 1: Stereo
10:19:06 Advanced Audio Settings DUMP Track 1
10:19:06 Nero Option Profiles: AUTO --- Encoding Mode: Quality
10:19:06 CCT Option Profiles: AUTO --- Channel Options: AUTO
10:19:07 Lame Settings: ABR
10:19:07 Audio Normalization: 1
10:19:07 Frequency: AUTO --- Tempo : NONE
10:19:07 Pitch: NONE --- Other Add :
10:19:07 Advanced Audio Settings DUMP Track 2
10:19:07 Nero Option Profiles: AUTO --- Encoding Mode: Quality
10:19:07 CCT Option Profiles: AUTO --- Channel Options: AUTO
10:19:07 Lame Settings: ABR
10:19:07 Audio Normalization: 1
10:19:07 Frequency: AUTO --- Tempo : NONE
10:19:07 Pitch: NONE --- Other Add :
10:19:07
10:19:17 Number of Frames:
10:19:17 Framerate:
10:19:17 Movie lenght in Seconds: 0
10:19:17 Movie Width:
10:19:17 Movie Height:
10:19:17 Avi engage mode not corrected, switched to DirectShowSource
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 !!!
and on a completly unrelated side note, "10:19:20 Movie lenght in Seconds: " Length is misspelled/typo'd ;)
Shark_jlc
16th March 2007, 16:34
It might be the braces {} in the file name. I would remove them and try again.
nx6
16th March 2007, 17:05
Hi, I've been trying to find a working app to convert video to wmv for my PPC that will work with Vista and such my search has led me here. Now on to the matter at at hand...
10:19:06 Selected Input file: C:\Users\schizosmurf\Videos\Bleach\Dubbed\Bleach - 19 {C_P}.avi
It's funny you're mentioning that series. I haven't seen the {C_P} files but if they look like the [Dattebayo] fansubs I think the quality is very good considering file size. I'm actually trying to use AutoMKV to duplicate the quality of those encodes with my own anime on DVD. So far I have been unable to easily. They must have some really customized encoding profiles at work.
PPC? So you're using a Mac? If you're using OSX, you can get VLC Media Player for it, too and just play the original files.
no clip , i can assure, the procedure is safe
Yeah, I'm not worried about the audio clip, I just don't want to have to answer the question before it continues. :) If I hadn't come back to my PC it would have sat there for hours before I'd seen it. Can a command line switch be added by AutoMKV to "answer the question before it asks it"?
buzzqw
16th March 2007, 17:12
@dlflannery
i have replicated the error... but i don't know how to fix... seems a problem between soundout / directshowsource and the launch of those batch
i must search some other solution
@Shark_jlc
automkv would be a "green application" so no registry and no configuration flying around
Sounds... odd. I'm not sure who sets up a queue and then doesn't use it.
... i use it... but i suppose that could generate confusion...
i will look ! thanks
and thanks for all criticism or not to be criticism!
i like to confront with other users, thanks!!! :)
@schizosmurf
not only could be {} but also: are you able to play the file with mediaplayer classic / virtualdub ?
BHH
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
nx6
19th March 2007, 00:42
what is this errror?
That's the audio error a couple of us were getting. Update to the current version of AutoMKV (0.78c) and try again. First you must update from 0.78 to 0.78a.
Download this:
http://www.64k.it/andres/data/a/AutoMKV078a.rar
unpack it and put "aacgain.exe", "mp3gain.exe", and "VorbisGain.exe" into the \exe\besweet folder. You can throw out the "AutoMKV078a.exe" because you wont need it.
Next download 0.78c here: http://www.64k.it/andres/data/a/AutoMKV078c.exe
It's just a new executable, so just throw it into your AutoMKV folder in place of the AutoMKV078.exe you have right now.
Then try again.
This is a bunch of steps so you could also wait for the next all-inclusive release.
delacroixp
19th March 2007, 12:10
@delacroixp
i am very happy. :rolleyes:
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
I had no problem encoding "Band of Brothers" in "Full Resolution" (ie 1024x576) with Dr DivX... See Dr DivX Image from previous post (below)...
@nx6
I'm compressing the entire 'Band of Brothers' series, with extras onto 1 DVD with maximum quality while maintaining consistency...
I've had problems with DGIndex in the past when trying to create surround sound with Aud-X though only in respect of audio... it converts 5.1 (6 channel) surround to 5.0 (5 channel) surround...(see Manual) which is a problem if you're trying to encode in the full glory of surround sound.
DGIndex (manual)
APPENDIX C: "AC3 5.1" versus "AC3 3/2"
DGIndex reports AC3 5.1 audio as "AC3 3/2" and users sometimes wonder why. The 1 in "5.1" refers to the Low Frequency Effects (LFE) channel.
When 5.1 audio must be played on one or two speakers, the source channels must be "downmixed".
The AC3 specification says that downmixing of the LFE channel is optional. In practice, it is dangerous, because loudspeakers can be overdriven by the full scale low frequency
content of the LFE channel (which is intended for a special speaker called a subwoofer). That's why downmixing of the LFE is almost never implemented.
Encoding 5.1 audio such that it can be played properly on one or two speakers is an art that is seriously complicated by downmixing the LFE channel.
So "3/2" means 5.1 without the LFE (maybe 5.0 would be better terminology, but 3/2 is in common use). Since almost no application downmixes the LFE (including DGIndex),
DGIndex labels the source as "3/2". The LFE is not downmixed because a) it is complex to implement (needs rolloff), b) it is dangerous to downmix it, and c) the LFE is often
avoided anyway by content providers. There are more details in this article.
I really don't want to blame my player, DGIndex or even you... though it would be awesome to arrive at a successfull conclusion... without phoning up President Bush, the Queen of England or Bill Gates for assistance. This may be the only movie or series on the entire planet that wont encode at full resolution but I would still appreciate the help in getting the job done.
I understand that you're merely trying to create a GUI for H264 and that you have to rely on a multitude of 3rd party apps to 'help and assist' that don't allways work well on their own let alone as a team, together in this kind of situation.
:) :D :eek:
Pascal
buzzqw
19th March 2007, 13:19
I had no problem encoding "Band of Brothers" in "Full Resolution" (ie 1024x576) with Dr DivX... See Dr DivX Image from previous post (below)...
have you ever tried to put 1024 in WIDTH ?
i suppose NO (even if with this value the movie will be autocropped).
For the whatever resolution go on advanced setting check "use manual crop" leave 0 all around and put 1024 and 576 in the botton boxes
I understand that you're merely trying to create a GUI for H264 and that you have to rely on a multitude of 3rd party apps to 'help and assist' that don't allways work well on their own let alone as a team, together in this kind of situation.
the problem here is to understand than you cannot take the application and pretend to get always what you want WITHOUT understanding what all setting mean's. And without searching for more information
The full resolution is achivied with correct AR signaling.
BHH
buzzqw
19th March 2007, 13:43
update 0.79
http://www.64k.it/andres/data/a/AutoMKV079a.rar
http://www.64k.it/andres/data/a/AutoMKV079a_NORIP.rar without dvdfabdecrypter
0.79 Full Package 19/03/2007
ADDED: If a file named "noneroAacEnc.here" is present in \exe\besweet folder , AutoMKV will not ask to download
ADDED: If SoudOut Fail, AutoMKV will try processing audio with DirectShowSource, if directshowsource fail AutoMKV will encode directly the audio file with FFmpeg in mp3 128CBR format. NOTE: if soundout fail must be present some errors in your audio file
FIXED: Several bugs on audio encode
FIXED: Clip warning (thanks to nx6)
FIXED: When working with queue the Start Encoding button is now disabled (suggestion by Shark_jlc)
FIXED: Audio Loop when working with avs audio file (thanks to dlflannery and weaver4)
FIXED: Aacgain is unable to normalize HE_AAC/SBR files ( done with NeroAACEnc NOT in quality mode). Added an AmplifydB(7) to audio script
BHH
delacroixp
19th March 2007, 14:46
Congratulations on the release of AutoMKV 079... almost magic.
have you ever tried to put 1024 in WIDTH ?
i suppose NO (even if with this value the movie will be autocropped).
For the whatever resolution go on advanced setting check "use manual crop" leave 0 all around and put 1024 and 576 in the botton boxes
Done that... did that yesterday... even with Manual Resize (see post)... the width reverts to 720. It's as though HD encoding is not supported.
I did mention that many of my 720x400 encodes came out as 700x400 aswell... which seams part of a much more serious problem.
I would send the .ini job logs but they have already been deleted I think.
the problem here is to understand than you cannot take the application and pretend to get always what you want WITHOUT understanding what all setting mean's. And without searching for more information
The full resolution is achivied with correct AR signaling.
I know that AutoMKV is fairly new but surely it's not quite necessary to be a rocket-scientist or software engineer to make it work.
I don't think I was trying anything deep or difficult... no audio tracks, no downsizing... a straight (1024x576) H264 conversion with ConstantQuality-crf...
I don't understand all the settings in AutoMKV and I leave them alone though I am willing to try MkvMagic if I the results were to be more promising.
I'm sure many ppl have encoded successfully into HD... but perhaps not with CQ-crf... maybe the problem's in the CQ-crf.xml profile ???
:) :D :rolleyes:
Pascal
schizosmurf
19th March 2007, 14:51
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
seems it is running thru 32bit mode, cuz system32 is for 64bit apps and syswow64 is for 32bit apps (wtf microsoft?!)
"64-bit Windows still uses the c:\windows\system32 directory for native applications—oddly enough, this misnamed directory is for 64-bit apps only! So, 32-bit apps trying to read or write to c:\windows\system32 are redirected to c:\windows\SysWOW64 instead. Similarly, only 64-bit apps can use "c:\Program Files"; 32-bit apps are invisibly redirected to "c:\Program Files (x86)"
so now i'm completely clueless as to why its givin false/mising stats for my file
buzzqw
19th March 2007, 15:17
new update (x264 profiles)
http://www.64k.it/andres/data/a/x264-profiles-079.rar
unrar overwriting all x264 profiles!
or download new 0.79a full package
@delacroixp
without log i cannot analyze problems
with my test even working with queue the manual resize settings are always remembered
just a tip: when you check enable manual crop the width is set to 720 and height to 576 ... i hope you have changed these values...
I did mention that many of my 720x400 encodes came out as 700x400 aswell... which seams part of a much more serious problem.
if you set NONE as resizer it will be 720*400, that's is sure (post the log), the same if you set WIDTH to Original
BHH
buzzqw
19th March 2007, 15:31
@schizosmurf
i haven't vista to test...
AutoMKV will "command" your OS to lauch bat files, is vista that choose to run on 64bit :o
a stupid question: have you installed avisynth 2.5.7 ?
BHH
schizosmurf
19th March 2007, 16:16
@schizosmurf
i haven't vista to test...
AutoMKV will "command" your OS to lauch bat files, is vista that choose to run on 64bit :o
its running as 32bit, i was mistken thanks to M$ lovely naming structure of system32 for 64bit and syswow64 for 32bit
a stupid question: have you installed avisynth 2.5.7 ?
BHH
i had avisinth installed but it seems not correct version. reinstalled to 2.5.7 and works better but unfortunately still not fully functional. everything appears to work and i see no errors but there is no output file.
10:12:38 0.79 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
10:12:38 Selected Input file: C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi
10:12:38 Selected Output dir: C:\Users\schizosmurf\Videos\PPC\temp\
10:12:38 Selected Final Name: Bleach19
10:12:38 Selected Container type: WMV
10:12:38 Selected Encoder: WMV
10:12:38 Selected Size: 1 CD
10:12:38 Selected Slice: 1
10:12:38 Selected Profile: 1_Pass_CBR.xml
10:12:38 Selected Width: Automatic
10:12:38 Selected Resizer: SimpleResize (neutral soft)
10:12:38 Selected Filters: NONE
10:12:38 Selected Deinterlacer: AUTO
10:12:38 Selected Field Order: AUTO
10:12:38 Manual Crop: Enabled
10:12:38 Left Crop: 0
10:12:38 Top Crop: 0
10:12:38 Right Crop: 0
10:12:38 Botton Crop: 0
10:12:38 Manual Width: 320
10:12:38 Manual Height: 240
10:12:38 NeroAACEnc.exe: not present
10:12:38 Enabled Bitrate encoding with value 300
10:12:38 Track Language 1: Bleach19.avi
10:12:38 Audio Codec 1: WMV
10:12:38 Audio Quality 1: 64
10:12:38 Audio Channel 1: Stereo
10:12:38 Advanced Audio Settings DUMP Track 1
10:12:38 Nero Option Profiles: AUTO --- Encoding Mode: Quality
10:12:38 CCT Option Profiles: AUTO --- Channel Options: AUTO
10:12:38 Lame Settings: ABR
10:12:38 Audio Normalization: 1
10:12:38 Frequency: AUTO --- Tempo : NONE
10:12:38 Pitch: NONE --- Other Add :
10:12:38 Advanced Audio Settings DUMP Track 2
10:12:38 Nero Option Profiles: AUTO --- Encoding Mode: Quality
10:12:38 CCT Option Profiles: AUTO --- Channel Options: AUTO
10:12:38 Lame Settings: ABR
10:12:38 Audio Normalization: 1
10:12:38 Frequency: AUTO --- Tempo : NONE
10:12:38 Pitch: NONE --- Other Add :
10:12:38
10:12:58 Number of Frames: 32672
10:12:58 Framerate: 23.973824
10:12:58 Movie length in Seconds: 1363
10:12:58 Movie Width: 640
10:12:58 Movie Height: 480
10:14:45 Processing completed. Type is determined to be progressive.
10:14:45 Order: unk
10:14:45 WMV CMD: cscript.exe "C:\Program Files (x86)\AutoMKV\exe\encoder\WMCmd.vbs" -input "C:\Users\schizosmurf\Videos\PPC\temp\movie.avs" -output "C:\Users\schizosmurf\Videos\PPC\temp\movie.wmv" -v_codec WVC1 -v_mode 0 -v_bitrate 307200 -s_config "C:\Users\schizosmurf\Videos\PPC\temp\wmv_crb" -v_bframedist 1 -v_dquantoption 3 -v_loopfilter 1 -v_lookahead 16 -v_mmatch 2 -v_mslevel 4 -v_msrange 0 -v_mvcost 1 -v_buffer 15000 -v_bdeltaqp 1 -v_performance 80 -a_codec wmapro -a_mode 0 -title "Bleach19" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 64_44_2_16
10:14:48 Final Muxed size: -1 bytes
10:14:48 Encoding finished: 00:02:10 elapsed time
10:14:48 -----------------------------------------------------------------------
10:14:48 Script AutoCrop.log
10:14:48
10:14:48 Crop(4,0,632,480)
10:14:48 -----------------------------------------------------------------------
10:14:48 Script Resmovie.avs
10:14:48 -----------------------------------------------------------------------
10:14:48 Script movie.avs
10:14:48
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\autocrop.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\BicublinResize.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\blockbuster.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\cnr2.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\ColorMatrix.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Convolution3D.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\corrector.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\DctFilter.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Decomb.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Deen.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\degrainmedian.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\DGDecode.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\EEDI2.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\fft3dfilter.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\FluxSmooth.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\frfun7.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\hqdn3d.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\LeakKernelDeint.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\MaskTools.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\medianblur.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\MipSmooth.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\mt_masktools.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\mvtools.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\NicAudio.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\RemoveGrain.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Repair.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\SangNom.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\SimpleResize.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\SoundOut.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TBilateral.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TDeint.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TIVTC.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TomsMoComp.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TTempSmooth.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\UnDot.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\UnFilter.dll")
10:14:48 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\VSFilter.dll")
10:14:48 #loadpluginstart
10:14:48
10:14:48 #test1
10:14:48
10:14:48 Import("C:\Program Files (x86)\AutoMKV\exe\filter\MCBob_v03c.avsi")
10:14:48 Import("C:\Program Files (x86)\AutoMKV\exe\filter\mvbob.avsi")
10:14:48 Import("C:\Program Files (x86)\AutoMKV\exe\filter\seesaw.avsi")
10:14:48 Import("C:\Program Files (x86)\AutoMKV\exe\filter\spresso.avsi")
10:14:48 #importstart
10:14:48
10:14:48 #test2
10:14:48
10:14:48 movie = directshowsource("C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi",audio=false)
10:14:48 movie = isRGB(movie) ? ConvertToYV12(movie,interlaced=true) : movie
10:14:48 movie = isYUY2(movie) ? ConvertToYV12(movie,interlaced=true) : movie
10:14:48 audio = DirectShowSource("C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi",fps=23.973824,convertfps = true,video=false)
10:14:48 function getOrder(clip c) {
10:14:48 order = GetParity(c) ? 1 : 0
10:14:48 Return order }
10:14:48 #filter1start
10:14:48
10:14:48 #test3
10:14:48
10:14:48 last = movie
10:14:48 crop(movie,0,0,-0,-0)
10:14:48 #resizestart
10:14:48
10:14:48 #test4
10:14:48
10:14:48 SimpleResize(320,240)
10:14:48 #filter2start
10:14:48
10:14:48 #test5
10:14:48
10:14:48 audio=ConvertAudioToFloat(audio)
10:14:48 audio=getchannel(audio,1,2)
10:14:48 audiodub(audio,last)
10:14:48 -----------------------------------------------------------------------
10:14:48 Script mkvmaudio.avs
10:14:48 -----------------------------------------------------------------------
10:14:48 Script mkvmaudio.bat
10:14:48 -----------------------------------------------------------------------
10:14:48 Script mkvmaudio2.avs
10:14:48 -----------------------------------------------------------------------
10:14:48 Script mkvmaudio2.bat
10:14:48
10:14:48 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
EDIT: I just noticed this while readin thru the log again.
10:14:48 Final Muxed size: -1 bytes
thats not normal right?
buzzqw
19th March 2007, 16:29
@schizosmurf
ok, we are on the right way!
10:14:45 Processing completed. Type is determined to be progressive.
this mean that automkv is working well!
10:12:38 Selected Profile: 1_Pass_CBR.xml
....
10:14:48 Final Muxed size: -1 bytes
first test: open the movie.avs with mediaplayer classic, it is ok audio and video ?
you have selected an VC1 profile, and the encoder fails. This is can be due to your installation of WVC1 encoder
i suggest to try the "quicker" profile, just to test if wmv7/8/9 is ok
once tested (either positive or negative) read on first post the hint about wvc1
BHH
Shark_jlc
19th March 2007, 16:42
its running as 32bit, i was mistken thanks to M$ lovely naming structure of system32 for 64bit and syswow64 for 32bit
The naming syntax actually makes sense somewhat, more from a historic perspective though.
http://blogs.msdn.com/freik/archive/2004/11/05/252974.aspx (http://blogs.msdn.com/freik/archive/2004/11/05/252974.aspx)
http://www.devx.com/amd/Article/20367
Those may help you out, I dunno. :rolleyes:
delacroixp
19th March 2007, 17:34
@delacroixp
without log i cannot analyze problems
if you set NONE as resizer it will be 720*400, that's is sure (post the log), the same if you set WIDTH to Original
Will do...
I found a (1024x576) BoB 01.mkv encode from last week... looks gr8... will need to be little more focused during encodes.
I tried to modify the <BitrateQuantizer>18</BitrateQuantizer> of ConstantQuality-CRF.xml since I never use 18 but MS Word complains about the change and AutoMKV lists the entire file in only 2 lines (no wrap)...
MS Word - Something about an XSLT conversion...
:) :D :eek:
Pascal
schizosmurf
19th March 2007, 17:36
@schizosmurf
first test: open the movie.avs with mediaplayer classic, it is ok audio and video ?
yea plays perfectly
you have selected an VC1 profile, and the encoder fails. This is can be due to your installation of WVC1 encoder
i suggest to try the "quicker" profile, just to test if wmv7/8/9 is ok
same result. here is log from using 1_Pass_CBR_UltraQuick
10:52:14 0.79 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
10:52:14 Selected Input file: C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi
10:52:14 Selected Output dir: C:\Users\schizosmurf\Videos\PPC\temp\
10:52:14 Selected Final Name: Bleach19
10:52:14 Selected Container type: WMV
10:52:14 Selected Encoder: WMV
10:52:14 Selected Size: 1 CD
10:52:14 Selected Slice: 1
10:52:14 Selected Profile: 1_Pass_CBR_UltraQuick.xml
10:52:14 Selected Width: Automatic
10:52:14 Selected Resizer: SimpleResize (neutral soft)
10:52:14 Selected Filters: NONE
10:52:14 Selected Deinterlacer: AUTO
10:52:14 Selected Field Order: AUTO
10:52:14 Manual Crop: Enabled
10:52:14 Left Crop: 0
10:52:14 Top Crop: 0
10:52:14 Right Crop: 0
10:52:14 Botton Crop: 0
10:52:14 Manual Width: 320
10:52:14 Manual Height: 240
10:52:14 NeroAACEnc.exe: not present
10:52:14 Enabled Bitrate encoding with value 300
10:52:14 Track Language 1: Bleach19.avi
10:52:14 Audio Codec 1: WMV
10:52:14 Audio Quality 1: 64
10:52:14 Audio Channel 1: Stereo
10:52:14 Advanced Audio Settings DUMP Track 1
10:52:14 Nero Option Profiles: AUTO --- Encoding Mode: Quality
10:52:14 CCT Option Profiles: AUTO --- Channel Options: AUTO
10:52:14 Lame Settings: ABR
10:52:14 Audio Normalization: 1
10:52:14 Frequency: AUTO --- Tempo : NONE
10:52:14 Pitch: NONE --- Other Add :
10:52:14 Advanced Audio Settings DUMP Track 2
10:52:14 Nero Option Profiles: AUTO --- Encoding Mode: Quality
10:52:14 CCT Option Profiles: AUTO --- Channel Options: AUTO
10:52:14 Lame Settings: ABR
10:52:14 Audio Normalization: 1
10:52:14 Frequency: AUTO --- Tempo : NONE
10:52:14 Pitch: NONE --- Other Add :
10:52:14
10:52:31 Number of Frames: 32672
10:52:31 Framerate: 23.973824
10:52:31 Movie length in Seconds: 1363
10:52:31 Movie Width: 640
10:52:31 Movie Height: 480
10:54:36 Processing completed. Type is determined to be progressive.
10:54:36 Order: unk
10:54:36 WMV CMD: cscript.exe "C:\Program Files (x86)\AutoMKV\exe\encoder\WMCmd.vbs" -input "C:\Users\schizosmurf\Videos\PPC\temp\movie.avs" -output "C:\Users\schizosmurf\Videos\PPC\temp\movie.wmv" -v_codec WMV7 -v_mode 0 -v_bitrate 307200 -s_config "C:\Users\schizosmurf\Videos\PPC\temp\wmv_crb" -v_bframedist 1 -v_dquantoption 2 -v_lookahead 0 -v_mbmodecost 0 -v_mmatch 0 -v_mslevel 1 -v_msrange 0 -v_mvcost 0 -v_bdeltaqp 1 -a_codec WMASTD -a_mode 0 -title "Bleach19" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 64_44_2
10:54:39 Final Muxed size: -1 bytes
10:54:39 Encoding finished: 00:02:25 elapsed time
10:54:39 -----------------------------------------------------------------------
10:54:39 Script AutoCrop.log
10:54:39
10:54:39 Crop(4,0,632,480)
10:54:39 -----------------------------------------------------------------------
10:54:39 Script Resmovie.avs
10:54:39 -----------------------------------------------------------------------
10:54:39 Script movie.avs
10:54:39
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\autocrop.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\BicublinResize.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\blockbuster.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\cnr2.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\ColorMatrix.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Convolution3D.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\corrector.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\DctFilter.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Decomb.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Deen.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\degrainmedian.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\DGDecode.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\EEDI2.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\fft3dfilter.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\FluxSmooth.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\frfun7.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\hqdn3d.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\LeakKernelDeint.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\MaskTools.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\medianblur.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\MipSmooth.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\mt_masktools.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\mvtools.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\NicAudio.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\RemoveGrain.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Repair.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\SangNom.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\SimpleResize.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\SoundOut.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TBilateral.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TDeint.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TIVTC.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TomsMoComp.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TTempSmooth.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\UnDot.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\UnFilter.dll")
10:54:39 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\VSFilter.dll")
10:54:39 #loadpluginstart
10:54:39
10:54:39 #test1
10:54:39
10:54:39 Import("C:\Program Files (x86)\AutoMKV\exe\filter\MCBob_v03c.avsi")
10:54:39 Import("C:\Program Files (x86)\AutoMKV\exe\filter\mvbob.avsi")
10:54:39 Import("C:\Program Files (x86)\AutoMKV\exe\filter\seesaw.avsi")
10:54:39 Import("C:\Program Files (x86)\AutoMKV\exe\filter\spresso.avsi")
10:54:39 #importstart
10:54:39
10:54:39 #test2
10:54:39
10:54:39 movie = directshowsource("C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi",audio=false)
10:54:39 movie = isRGB(movie) ? ConvertToYV12(movie,interlaced=true) : movie
10:54:39 movie = isYUY2(movie) ? ConvertToYV12(movie,interlaced=true) : movie
10:54:39 audio = DirectShowSource("C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi",fps=23.973824,convertfps = true,video=false)
10:54:39 function getOrder(clip c) {
10:54:39 order = GetParity(c) ? 1 : 0
10:54:39 Return order }
10:54:39 #filter1start
10:54:39
10:54:39 #test3
10:54:39
10:54:39 last = movie
10:54:39 crop(movie,0,0,-0,-0)
10:54:39 #resizestart
10:54:39
10:54:39 #test4
10:54:39
10:54:39 SimpleResize(320,240)
10:54:39 #filter2start
10:54:39
10:54:39 #test5
10:54:39
10:54:39 audio=ConvertAudioToFloat(audio)
10:54:39 audio=getchannel(audio,1,2)
10:54:39 audiodub(audio,last)
10:54:39 -----------------------------------------------------------------------
10:54:39 Script mkvmaudio.avs
10:54:39 -----------------------------------------------------------------------
10:54:39 Script mkvmaudio.bat
10:54:39 -----------------------------------------------------------------------
10:54:39 Script mkvmaudio2.avs
10:54:39 -----------------------------------------------------------------------
10:54:39 Script mkvmaudio2.bat
10:54:39
10:54:39 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
***text too large continues in next post
schizosmurf
19th March 2007, 17:36
once tested (either positive or negative) read on first post the hint about wvc1
BHH
here is retry after installing WME9 (32bit version just to be safe)
11:13:27 0.79 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
11:13:27 Selected Input file: C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi
11:13:27 Selected Output dir: C:\Users\schizosmurf\Videos\PPC\temp\
11:13:27 Selected Final Name: Bleach19
11:13:27 Selected Container type: WMV
11:13:27 Selected Encoder: WMV
11:13:27 Selected Size: 1 CD
11:13:27 Selected Slice: 1
11:13:27 Selected Profile: 1_Pass_CBR.xml
11:13:27 Selected Width: Automatic
11:13:27 Selected Resizer: SimpleResize (neutral soft)
11:13:27 Selected Filters: NONE
11:13:27 Selected Deinterlacer: AUTO
11:13:27 Selected Field Order: AUTO
11:13:27 Manual Crop: Enabled
11:13:27 Left Crop: 0
11:13:27 Top Crop: 0
11:13:27 Right Crop: 0
11:13:27 Botton Crop: 0
11:13:27 Manual Width: 320
11:13:27 Manual Height: 240
11:13:27 NeroAACEnc.exe: not present
11:13:27 Enabled Bitrate encoding with value 300
11:13:27 Track Language 1: Bleach19.avi
11:13:27 Audio Codec 1: WMV
11:13:27 Audio Quality 1: 64
11:13:27 Audio Channel 1: Stereo
11:13:27 Advanced Audio Settings DUMP Track 1
11:13:27 Nero Option Profiles: AUTO --- Encoding Mode: Quality
11:13:27 CCT Option Profiles: AUTO --- Channel Options: AUTO
11:13:27 Lame Settings: ABR
11:13:27 Audio Normalization: 1
11:13:27 Frequency: AUTO --- Tempo : NONE
11:13:27 Pitch: NONE --- Other Add :
11:13:27 Advanced Audio Settings DUMP Track 2
11:13:27 Nero Option Profiles: AUTO --- Encoding Mode: Quality
11:13:27 CCT Option Profiles: AUTO --- Channel Options: AUTO
11:13:27 Lame Settings: ABR
11:13:27 Audio Normalization: 1
11:13:27 Frequency: AUTO --- Tempo : NONE
11:13:27 Pitch: NONE --- Other Add :
11:13:27
11:13:42 Number of Frames: 32672
11:13:42 Framerate: 23.973824
11:13:42 Movie length in Seconds: 1363
11:13:42 Movie Width: 640
11:13:42 Movie Height: 480
11:15:42 Processing completed. Type is determined to be progressive.
11:15:42 Order: unk
11:15:42 WMV CMD: cscript.exe "C:\Program Files (x86)\AutoMKV\exe\encoder\WMCmd.vbs" -input "C:\Users\schizosmurf\Videos\PPC\temp\movie.avs" -output "C:\Users\schizosmurf\Videos\PPC\temp\movie.wmv" -v_codec WVC1 -v_mode 0 -v_bitrate 307200 -s_config "C:\Users\schizosmurf\Videos\PPC\temp\wmv_crb" -v_bframedist 1 -v_dquantoption 3 -v_loopfilter 1 -v_lookahead 16 -v_mmatch 2 -v_mslevel 4 -v_msrange 0 -v_mvcost 1 -v_buffer 15000 -v_bdeltaqp 1 -v_performance 80 -a_codec wmapro -a_mode 0 -title "Bleach19" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 64_44_2
11:16:44 Final Muxed size: -1 bytes
11:16:44 Encoding finished: 00:03:17 elapsed time
11:16:44 -----------------------------------------------------------------------
11:16:44 Script AutoCrop.log
11:16:44
11:16:44 Crop(4,0,632,480)
11:16:44 -----------------------------------------------------------------------
11:16:44 Script Resmovie.avs
11:16:44 -----------------------------------------------------------------------
11:16:44 Script movie.avs
11:16:44
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\autocrop.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\BicublinResize.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\blockbuster.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\cnr2.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\ColorMatrix.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Convolution3D.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\corrector.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\DctFilter.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Decomb.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Deen.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\degrainmedian.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\DGDecode.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\EEDI2.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\fft3dfilter.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\FluxSmooth.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\frfun7.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\hqdn3d.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\LeakKernelDeint.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\MaskTools.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\medianblur.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\MipSmooth.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\mt_masktools.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\mvtools.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\NicAudio.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\RemoveGrain.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\Repair.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\SangNom.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\SimpleResize.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\SoundOut.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TBilateral.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TDeint.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TIVTC.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TomsMoComp.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\TTempSmooth.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\UnDot.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\UnFilter.dll")
11:16:44 LoadPlugin("C:\Program Files (x86)\AutoMKV\exe\filter\VSFilter.dll")
11:16:44 #loadpluginstart
11:16:44
11:16:44 #test1
11:16:44
11:16:44 Import("C:\Program Files (x86)\AutoMKV\exe\filter\MCBob_v03c.avsi")
11:16:44 Import("C:\Program Files (x86)\AutoMKV\exe\filter\mvbob.avsi")
11:16:44 Import("C:\Program Files (x86)\AutoMKV\exe\filter\seesaw.avsi")
11:16:44 Import("C:\Program Files (x86)\AutoMKV\exe\filter\spresso.avsi")
11:16:44 #importstart
11:16:44
11:16:44 #test2
11:16:44
11:16:44 movie = directshowsource("C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi",audio=false)
11:16:44 movie = isRGB(movie) ? ConvertToYV12(movie,interlaced=true) : movie
11:16:44 movie = isYUY2(movie) ? ConvertToYV12(movie,interlaced=true) : movie
11:16:44 audio = DirectShowSource("C:\Users\schizosmurf\Videos\Bleach\Bleach19.avi",fps=23.973824,convertfps = true,video=false)
11:16:44 function getOrder(clip c) {
11:16:44 order = GetParity(c) ? 1 : 0
11:16:44 Return order }
11:16:44 #filter1start
11:16:44
11:16:44 #test3
11:16:44
11:16:44 last = movie
11:16:44 crop(movie,0,0,-0,-0)
11:16:44 #resizestart
11:16:44
11:16:44 #test4
11:16:44
11:16:44 SimpleResize(320,240)
11:16:44 #filter2start
11:16:44
11:16:44 #test5
11:16:44
11:16:44 audio=ConvertAudioToFloat(audio)
11:16:44 audio=getchannel(audio,1,2)
11:16:44 audiodub(audio,last)
11:16:44 -----------------------------------------------------------------------
11:16:44 Script mkvmaudio.avs
11:16:44 -----------------------------------------------------------------------
11:16:44 Script mkvmaudio.bat
11:16:44 -----------------------------------------------------------------------
11:16:44 Script mkvmaudio2.avs
11:16:44 -----------------------------------------------------------------------
11:16:44 Script mkvmaudio2.bat
11:16:44
11:16:44 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
and now that i've installed WME9, when AutoMKV gets to the step Lets Encode (after Testing Interlace pattern) cmd.exe crashes (regardless of which profile i use). I noticed its running the 64bit version at this step (perhpas why it crashes). the cmd.exe window shows
C:\Users\schizosmurf\Videos\PPC\temp>cscript.exe "C:\Program Files (x86)\AutoMKV
\exe\encoder\WMCmd.vbs" -input "C:\Users\schizosmurf\Videos\PPC\temp\movie.avs"
-output "C:\Users\schizosmurf\Videos\PPC\temp\movie.wmv" -v_codec WMV9 -v_mode
0 -v_bitrate 307200 -s_config "C:\Users\schizosmurf\Videos\PPC\temp\wmv_crb" -v_
bframedist 1 -v_dquantoption 2 -v_lookahead 0 -v_mbmodecost 0 -v_mmatch 0 -v_msl
evel 1 -v_msrange 0 -v_mvcost 0 -v_bdeltaqp 1 -a_codec WMASTD -a_mode 0 -title "
Bleach19" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 64_44_2
Microsoft (R) Windows Script Host Version 5.7
Copyright (C) Microsoft Corporation. All rights reserved.
I uninstaled WME9 and it stopped crashing but still not getting an output file
(on a side note: i tried usin WME9 before and had no luck, hence why i hit up videohelp.com and doom9 for alternatives)
buzzqw
19th March 2007, 17:49
@delacroixp
I tried to modify the <BitrateQuantizer>18</BitrateQuantizer> of ConstantQuality-CRF.xml since I never use 18 but MS Word complains about the change and AutoMKV lists the entire file in only 2 lines (no wrap)...
MS Word - Something about an XSLT conversion...
Sorry pal... but why use msword ? notepad/pspad is ok (i use ultraedit)
and (much important) DON'T directly edit the file!!
use the advanced profiles editing, modify the value, AND then check "use this profile" . AutoMKV will use this modified profile
@schizosmurf
yea plays perfectly
again automkv have done a good script
i can suggest to open a thread in http://forum.doom9.org/forumdisplay.php?f=54 about Vista and WME/WMCmd.vbs, ask help of Zambelli
BHH
delacroixp
19th March 2007, 18:44
@delacroixp
Sorry pal... but why use msword ? notepad/pspad is ok (i use ultraedit)
and (much important) DON'T directly edit the file!!
use the advanced profiles editing, modify the value, AND then check "use this profile" . AutoMKV will use this modified profile
That's what I do at the moment... but I'ld rather (modify) change the value to 22 permanently (as a default) and then modify the profile through AutoMKV when needed...
:) :D :eek:
Pascal
OK... get it... make a new modified profile... call it PascalsConsistantQuality.xml and use that...
:stupid:
kewl
(I modified a few scripts for random maps in Age of Empires II and Wordpad worked particularly well when Notepad run out of space.)
schizosmurf
19th March 2007, 19:05
http://forum.doom9.org/forumdisplay.php?f=54[/url] about Vista and WME/WMCmd.vbs, ask help of Zambelli
BHH
yes your right, automkv wrote a perfect .avs, i loaded it into WME9 and it spit out a perfect encode.
now if could just figure out why automkv uses the 64bit cmd.exe when it gets to the encode step when it uses the correct 32bit cmd.exe for the others
salman1
19th March 2007, 22:36
what this keep coming every time i encode avi
http://maxupload.com/img/C45535F7.jpg
buzzqw
19th March 2007, 22:37
now if could just figure out why automkv uses the 64bit cmd.exe when it gets to the encode step when it uses the correct 32bit cmd.exe for the others
while the other bat file will lanch simple command line exe (for x264/bautodeint/xvid_encraw...) the wmv bat will lauch the windows shell script interpreter (cscript.exe)
I suppose that cscript.exe (that is bundled with your vista os) that launch WMCmd.vbs (that is the interface to wme ) is for 64bit only...
BHH
EDIT: @salman1 , check your antivirus, and try to lauch mkvmaudio.bat. is it ok ?
salman1
19th March 2007, 22:44
while the other bat file will lanch simple command line exe (for x264/bautodeint/xvid_encraw...) the wmv bat will lauch the windows shell script interpreter (cscript.exe)
I suppose that cscript.exe (that is bundled with your vista os) that launch WMCmd.vbs (that is the interface to wme ) is for 64bit only...
BHH
EDIT: @salman1 , check your antivirus, and try to lauch mkvmaudio.bat. is it ok ?
can u explain me some more and or if u can plz pm that u can come to chat and you will show me how to use it :thanks:
nx6
19th March 2007, 23:34
I had no problem encoding "Band of Brothers" in "Full Resolution" (ie 1024x576) with Dr DivX... See Dr DivX Image from previous post (below)...
What qualifies 1024 as "full resolution"? The top resolution of DVD is only 720px (http://en.wikipedia.org/wiki/DVD-Video#Visual_data).
Encoding anything higher than that would only mean the encoder is now having to "make up" additional pixel data, which will not increase quality any more than having the decoder upconvert on playback.
chickenmonger
20th March 2007, 03:01
Would it be possible to add the Changelog to the wiki?
It is hard to find buzzqw's individual posts detailing what has changed with each new version.
Shark_jlc
20th March 2007, 04:47
Would it be possible to add the Changelog to the wiki?
It is hard to find buzzqw's individual posts detailing what has changed with each new version.
What a great idea, if I get bored tomorrow, I'll see if I can't do this.
schizosmurf
20th March 2007, 05:36
while the other bat file will lanch simple command line exe (for x264/bautodeint/xvid_encraw...) the wmv bat will lauch the windows shell script interpreter (cscript.exe)
I suppose that cscript.exe (that is bundled with your vista os) that launch WMCmd.vbs (that is the interface to wme ) is for 64bit only...
yea, seems its usin the 64bit cscript.exe (\System32\), which therefore calls the 64bit cmd.exe, instead of the 32bit cscript.exe (\SysWOW64\)
it'd be cool if there was some way to make AutoMKV check for C:\Windows\SysWOW64\cscript.exe and run that one if present and default back to C:\Windows\System32\cscript.exe if not.
Anyways, appreciate all your help. Even though I couldn't get AutoMKV to work for me 100% I am able to get an encode done the way I want with it's help at least. I'll keep an eye on this project in case you get that cscript.exe thing figured out for us 64bit users :P
buzzqw
20th March 2007, 08:27
@schizosmurf
please download this buil http://www.64k.it/andres/data/a/AutoMKV079-schizosmurf.exe
it is completly untested. It check if %windir%\SysWOW64\cscript.exe exist and if true use it
BHH
delacroixp
20th March 2007, 08:29
Would it be possible to add the Changelog to the wiki?
It is hard to find buzzqw's individual posts detailing what has changed with each new version.
What a great idea, if I get bored tomorrow, I'll see if I can't do this.
Well... if you get bored today... take the day off and head for the hills or the beach...
But if you get really excited... try adding the Changelog to the wiki... I'm sure you'll be a lot more inspiring if you're in a good mood.
:) :D :eek:
Pascal
nx6
20th March 2007, 08:56
What a great idea, if I get bored tomorrow, I'll see if I can't do this.
Why wait! I'm bored and slightly drunk right now!
http://automkv.wiki-site.com/index.php/Changelog
delacroixp
20th March 2007, 09:01
I'm compressing the entire 'Band of Brothers' series, with extras onto 1 DVD with maximum quality while maintaining consistency...
What qualifies 1024 as "full resolution"? The top resolution of DVD is only 720px (http://en.wikipedia.org/wiki/DVD-Video#Visual_data).
Encoding anything higher than that would only mean the encoder is now having to "make up" additional pixel data, which will not increase quality any more than having the decoder upconvert on playback.
See Pic (Resolution and Max resize resolution).
You make perfectly good sense and it certainly looks as though you are right... perhaps the (not so clever) Dr is dellusional and lying to us... a sure case of smoke and mirrors... maybe the original DVD was 'padded' since it's sure got 1024x576 pixel resolution (Dimensions)...
What gives... please help... :search:
:) :D :eek:
Pascal
BTW
I'm doing a 640x360 version of BoB in Q23 which is true 16:9 and nicely scalable on most 1280x1024 PC's... but H262 doesn't seam to like non-multiples of 16 (either width or height).
I can't 'make up my mind' whether I should go with 640x368 or 640x352...
"Of all the things I've lost... I miss my mind the most..."
delacroixp
20th March 2007, 09:26
Would it be possible to add the Changelog to the wiki?
It is hard to find buzzqw's individual posts detailing what has changed with each new version.
What a great idea, if I get bored tomorrow, I'll see if I can't do this.
Why wait! I'm bored and slightly drunk right now!
Watch this space (http://automkv.wiki-site.com/index.php/Changelog)
A round of :thanks: to chickenmonger for the idea... to Shark_jlc for the intention... and nx6 for the follow-through... gr8 teamwork all round !!!
@nx6... You must really show me how it's done sometime... I'm pretty clueless... yah really.
:) :D :eek:
Pascal
nx6
20th March 2007, 09:46
A round of :thanks: to chickenmonger for the idea... to Shark_jlc for the intention... and nx6 for the follow-through... gr8 teamwork all round !!!
@nx6... You must really show me how it's done sometime... I'm pretty clueless... yah really.
Alright. I'm getting sleepy. Someone else can work on it now. I got to 0.78 (the full package). People more into the nitty-gritty of AutoMKV's details should probably proofread some of what I've done (as converting notes into a more formal changelog isn't easy when I'm not familiar with all the changes listed). The hard part is reducing to the actual essence of the change to the software and not speaking in terms of metaphor or example, while not leaving out too many details about the change.
Posts used:
0.78 (http://forum.doom9.org/showpost.php?p=969772&postcount=1272)
0.78a (http://forum.doom9.org/showpost.php?p=970200&postcount=1291)
0.78b (http://forum.doom9.org/showpost.php?p=970714&postcount=1316)
0.78c (http://forum.doom9.org/showpost.php?p=971185&postcount=1337)
0.79 (http://forum.doom9.org/showpost.php?p=972571&postcount=1404)
0.79a (http://forum.doom9.org/showpost.php?p=972598&postcount=1407)
buzzqw
20th March 2007, 09:56
i could suggest to take a more detailed changelog from the stable to latest beta, and take the changelog as is for previus build
BHH
nx6
20th March 2007, 10:05
i could suggest to take a more detailed changelog from the stable to latest beta, and take the changelog as is for previous build
I'm sorry buzzqw, I'm not quite following you. Maybe if you drew me a diagram... er I mean wrote an example. :p
@delacroixp
I work on Wikipedia articles sometimes, so I have some experience. ;)
buzzqw
20th March 2007, 10:49
public the changelog as is from latest stable to old build (no need to point, paragraph...)
but from latest stable to new beta build public these changelog in more readable form... i hope to be clear :)
BHH
Shark_jlc
20th March 2007, 15:45
Why wait! I'm bored and slightly drunk right now!
http://automkv.wiki-site.com/index.php/Changelog
Wow, I was thinking about the format of this page and in my head I had an idea of how it should be laid out, and lo and behold, I click the link this morning, and it's exactly the way I thought it should be, nicely done.
delacroixp
20th March 2007, 16:11
Would it be possible to add the Changelog to the wiki?
What a great idea, if I get bored tomorrow, I'll see if I can't do this.
Why wait! I'm bored and slightly drunk right now! Watch this space (http://automkv.wiki-site.com/index.php/Changelog)
Wow, I was thinking about the format of this page and lo and behold, and it's exactly the way I thought it should be, nicely done.
It's a miracle... praise be to the Lord !!!
:) :D :eek:
Pascal
schizosmurf
20th March 2007, 18:39
@schizosmurf
please download this buil http://www.64k.it/andres/data/a/AutoMKV079-schizosmurf.exe
it is completly untested. It check if %windir%\SysWOW64\cscript.exe exist and if true use it
BHH
works right, runs the \syswow64\cscript.exe but it still crashes
i opened \syswow64\cmd.exe and input C:\Windows\SysWOW64\cscript.exe "C:\Program Files (x86)\Wind
ows Media Components\Encoder\WMCmd.vbs" -input "C:\Users\schizosmurf\Videos\PPC\
temp\movie.avs" -output "C:\Users\schizosmurf\Videos\PPC\temp\movie.wmv" -v_cod
ec WMV9 -v_mode 0 -v_bitrate 307200 -a_codec WMA9STD -a_mode 0 -a_setting 64_44_
2_16
switching to the WMCmd.vbs in the WME9 folder and leaving only the basic options and STILL cscript.exe crashed...
so apparently the issue with cscript.exe and wmcmd.vbs in Vista that was supposed to be cured by the hotfix http://support.microsoft.com/default.aspx/kb/929182
still exists
again thanks for all your help. If I find a solution for this i'll report back :)
BixMix
20th March 2007, 20:43
First, I really like this program. It does a good job, and I love the fact that it works in the background. Now my question: I want to increase the volume of the movies that I’m encoding.
The checkbox for “normalize” doesn’t do enough for my purposes, and I can’t find any other volume settings. Sorry to be dense about this, I realize that since mp3gain.exe, etc. are there that it must be possible, but I don’t see “gain” or “volume” in the Advanced Audio Options. I don’t see anything in the Advanced Settings. The Advanced Profiles Editing seems to be all about the video. I don’t know where else to look or what files to open up.
I’m a newbie, and I barely understand half of this thread, but I’d really appreciate a leg up here. I’ve used other programs to raise the volume, and I’d like to do it with AutoMKV. Perhaps the answer is obvious; I will slap my head and be humbled, but right now I’m lost. Please point me in the right direction.
nx6
20th March 2007, 20:56
public the changelog as is from latest stable to old build (no need to point, paragraph...)
but from latest stable to new beta build public these changelog in more readable form... i hope to be clear :)
Do you mean we could only show the changelog from the latest full package (0.79 in this case) through the updates in bulleted form, and then show the previous releases/updates in a more condensed style (just major feature changes, not minor bug fixes) or not at all?
buzzqw
20th March 2007, 22:27
@BixMix
automkv ALREADY normalize the audio of film. Is automkv that use mp3gain to "gain/apply" volume to your mp3 track
Isn't needed you intervent
The "gain" is the maximum SECURE value to apply without introduce clipping (sound distrurbed)
The way to apply MORE gain is to DE-CHECK Normalize AND in last option of advanced audio setting, at right of Pith and none, in the blank space write something like Amplifydb(15) this command force an audio gain of 15 decibel, in this way YOU must choose the gain, since in no more automatic
BETTER way is to install ffdshow, and use it as audio decoder AND check VOLUME, in this way the audio gain is transparent and good to hear
i hope to be clear!
@nx6
Do you mean we could only show the changelog from the latest full package (0.79 in this case) through the updates in bulleted form,
excatly
and then show the previous releases/updates in a more condensed style (just major feature changes, not minor bug fixes) or not at all?
just condensed style, with all minor and major, not bulleted
:thanks: ! you (plurale majestatis... someone speak Latin ???) are doing a very good job
BHH
delacroixp
20th March 2007, 22:41
Since H264 recommended encodes with mod 16 dimensions and the guy(s) at DivX recommending padding (see link, Post #6: (http://forums.divx.com/forum/viewTopic.php?id=3532)) I did an experiment...
I did 2 encodes of BoB 02 @ Q23... (640 x 368) and (640 x 360) and the results are quite refreshing.
640 x 368
= 347 661 kb
= 235 520 pixels
size/pixel = (347 661/235 520) = 1.5 kb/pixel
640 x 360
= 347 661 kb
= 230 400 pixels
size/pixel = (347 661/230 400) = 1.5 kb/pixel
There is no difference in efficiency.
However when comparing (720 x 400) @ Q24 and (640 x 360) @ Q23 on a 19inch LCD at fullscreen with particular reference to text in the opening credits ...
(640 x 360) @ Q23 came out a clear winner with superior crispness and clarity... and this despite the fact that the file was 5% smaller...
:) :D :eek:
Pascal
delacroixp
20th March 2007, 22:59
@BixMix
automkv ALREADY normalize the audio of film. Is automkv that use mp3gain to "gain/apply" volume to your mp3 track
Isn't needed you intervent
The "gain" is the maximum SECURE value to apply without introduce clipping (sound distrurbed)
The way to apply MORE gain is to DE-CHECK Normalize AND in last option of advanced audio setting, at right of Pith and none,
in the blank space write something like
Amplifydb(15)
this command force an audio gain of 15 decibel, in this way YOU must choose the gain, since in no more automatic
BETTER way is to install ffdshow, and use it as audio decoder AND check VOLUME, in this way the audio gain is transparent and good to hear
Another method is to run your audio track through BeSweet which will test for the Maximum possible gain... THEN pass this figure to AutoMKV with Amplifydb(xx)...
It's very hands-on and not recommended for the feint-hearted.
Good Luck and have a good one...
:) :D :eek:
Pascal
nx6
20th March 2007, 23:51
@nx6
excatly
just condensed style, with all minor and major, not bulleted
Whoever else is working on this seems to be doing it full bulleted like me, so I think I'll just keep following that for now. Maybe we could just lower the text size for all but the current major build + updates.
weaver4
21st March 2007, 00:37
I did a long movie using XviD Single pass Constant Quality profile with the bitrate quantizer of 3. The file size came out smaller than I expected. So I did the move twice more with avi.net and autogk and looked at the results with avinaptic and here are the results.
Avi.net
filesize: 1.7G
100% of the frames were DRF 3
AutoGK (Constant Quality 67%)
Filesize 1.75G
99% of the frames were DRF 3
1% of the frames were DRF 2
AutoMKV (ConstantQuality profile, bitrate quantizer of 3)
Filesize 1.1G
36% of the frames were DRF 3
64% of the frames were DRF 4
How can this be, shouldn't AutoMKV have a DRF of 3 for all the frames?
xmcnuggetx
21st March 2007, 00:50
I tried to read through the posts about vista I could find in this thread, but didn't seem to find a solution. When running automkv in Vista it seems to work ok at first, but then when running movie_wmv.bat it crashes out. Vista complaining about: Microsoft Console Based Script Host was closed. To help protect your computer Data Execution Prevention has closed Microsoft Console Based Scripting Host. I am unsure why or how to fix it. If I try double clicking the .bat I recieve the same error.
Here is the contents of the movie_wmv.bat:
cscript.exe "C:\Program Files\Automkv\exe\encoder\WMCmd.vbs" -input "C:\Users\Mike\Videos\Zune\temp\movie.avs" -output "C:\Users\Mike\Videos\Zune\temp\movie.wmv" -v_codec WMV8 -v_mode 4 -v_bitrate 512000 -s_config "C:\Users\Mike\Videos\Zune\temp\wmv_crb" -v_bframedist 1 -v_dquantoption 2 -v_lookahead 0 -v_mbmodecost 0 -v_mmatch 0 -v_mslevel 1 -v_msrange 0 -v_mvcoding 1 -v_mvcost 0 -v_peakbitrate 736000 -v_bdeltaqp 1 -a_codec WMASTD -a_mode 0 -title "Lost S01E01" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 64_44_2
Thanks
Mike
TheRyuu
21st March 2007, 04:56
I've seem to have stumbled upon something else.
I'm trying to re-encode a *.mp4 file (with H.264 video and what I think is mp3 audio).
It starts everything just fine.
But after it encodes the audio track, everything basically just stops. It doesn't continue.
If you want to try it yourself, go to:
http://asfdotcom.net/
Click downloads on the left, then "Bleach" in the right column (should be near the top, 2nd one) then download "Fourth Intro".
Any will do but I know it works with this one. This isn't the exact file I want to re-encode but the same problem happens no matter what.
Thanks :cool:
nx6
21st March 2007, 06:17
Please do not discuss copyright infringement on the forum.:mad:
delacroixp
21st March 2007, 08:43
I did a long movie using XviD Single pass Constant Quality profile with the bitrate quantizer of 3. The file size came out smaller than I expected. So I did the move twice more with avi.net and autogk and looked at the results with avinaptic and here are the results.
Avi.net
filesize: 1.7G
100% of the frames were DRF 3
AutoGK (Constant Quality 67%)
Filesize 1.75G
99% of the frames were DRF 3
1% of the frames were DRF 2
AutoMKV (ConstantQuality profile, bitrate quantizer of 3)
Filesize 1.1G
36% of the frames were DRF 3
64% of the frames were DRF 4
How can this be, shouldn't AutoMKV have a DRF of 3 for all the frames?
PuzZLeR (http://forums.divx.com/forum/viewTopic.php?id=3517&page=1) has discovered a similar anomaly, using a somewhat more simple though equally effective method.
I tried to download DivX DRF Analyzer - 0.9.5 (http://www.geocities.com/analyzerdrf/) without success... though it is outdated anyway...
What software do you use to test your encodes... ???
However, I think you are probably better qualified to handle the 'mystery and mayhem' ... since you got me interested in CQ encoding to start with...
CQ encoding has a ring of purity which now seams tarnished... but it still has the 2nd great virtue of "saving you time, saving you money" (by doing only 1 pass).
:) :D :eek:
Pascal
delacroixp
21st March 2007, 08:51
Please do not discuss copyright infringement on the forum.:mad:
Awesome job on the Changelog.... why can't everything be "Open Source"... there would be no need for copyright... we could live together in harmony... and there would probably be no need for any wars either.
I suppose it's just a fools paradise.
:) :D :eek:
Pascal
nx6
21st March 2007, 09:20
Awesome job on the Changelog....
Thanks, it still has a ways to go.
"Jeradc" (I assume that's Shark_jlc) and I are discussing the style for the individual bullet points. So some of the entries may have to be rewritten to follow an agreed upon style. Plus, there's still grammar editing for many entries, names of other software packages need to be changed to fit capitalization across the entire document (I've read at least four different ways of writing 'DGIndex' and 'AutoMKV'). Also it might make sense to change the subsection layout. I'd like to see them divided by full releases (ones that are all inclusive and don't require replacing files in an existing install), but it seems those releases happened quite often in AutoMKV's early history.
why can't everything be "Open Source"... there would be no need for copyright... we could live together in harmony... and there would probably be no need for any wars either.
I suppose it's just a fools paradise.
It is. There would no financial incentive to create new content, so the amount of new content would drop way down. This wouldn't mean the end to just stupid marketing-driven drivel like reality TV shows, it would mean lots of genuine content would disappear as well. People who would normally write, draw, sing, ect would be too busy working a regular job to earn a living to be able to focus on their art the way a professional artist would.
I couldn't help but feel a little hypocritical in that post, as most of what is done in this forum is a violation of the DMCA (bypassing DVD encryption to encode the video, ect). But it's done with the idea we are using our own legally purchased DVDs and obtained video files for the purpose of better enjoyment of the content. I'd like to (in the future) build an HTPC and have all by anime DVDs ripped to MKV files on it, so I can pull up any episode VOD-style from a Myth frontend, among other things.
But when someone comes on and points us to a site hosting clearly copyrighted content from a TV network as the source files they're using it attracts too much attention to activities like these.
delacroixp
21st March 2007, 09:40
I couldn't help but feel a little hypocritical in that post, as most of what is done in this forum is a violation of the DMCA (bypassing DVD encryption to encode the video, ect). But it's done with the idea we are using our own legally purchased DVDs and obtained video files for the purpose of better enjoyment of the content.
I'd like to (in the future) build an HTPC and have all my anime DVDs ripped to MKV files on it, so I can pull up any episode VOD-style from a Myth frontend, among other things.
I don't think you should get too 'hypocritical' on us just yet... It's not like we're encouraging people to "do drugs", "commit murder" or "go to the colliseum and watch till-death duals"...
For all the piracy that AutoMKV creates or tacitlly supports... movie companies, cinemas and video-cam manufacturers
are benefitting from an "increasingly aware, interested and excited consumer market"...
:) :D :eek:
Pascal
buzzqw
21st March 2007, 10:08
@xmcnuggetx
same problem as schizosmurf
@weaver4
CQ encoding mean that all I and P frames are at constant quantitizer, the B frames are NOT at constant quantitizer other values is taken like Quantitizer ratio and Quantitizer offset
<BQuantRatio>162</BQuantRatio>
The "Quantizer ratio" setting determines how many more times the B-frames should be compressed compared to P-frames (the higher the value, the higher the quantizer setting and therefore the more compressed the frame is).
<BQuantOffset>100</BQuantOffset>
The "Quantizer offset" setting determines the quantizer value to be added to B-frames compared to surrounding P-frames (so a setting of "1.00" would add "1.00" to the quantizer value of the B-frame, again the higher the quantizer, the more compression used).
(taken from Digital Digest)
@delacroixp and ALL
remember the forum's rules, all are bind to these rules
BHH
delacroixp
21st March 2007, 11:44
@weaver4
CQ encoding mean that all I and P frames are at constant quantitizer, the B frames are NOT at constant quantitizer other values is taken like Quantitizer ratio and Quantitizer offset
<BQuantRatio>162</BQuantRatio>
The "Quantizer ratio" setting determines how many more times the B-frames should be compressed compared to P-frames (the higher the value, the higher the quantizer setting and therefore the more compressed the frame is).
<BQuantOffset>100</BQuantOffset>
The "Quantizer offset" setting determines the quantizer value to be added to B-frames compared to surrounding P-frames (so a setting of "1.00" would add "1.00" to the quantizer value of the B-frame, again the higher the quantizer, the more compression used).
(taken from Digital Digest)
Where do I find the <BQuantRatio>162</BQuantRatio> and <BQuantOffset>100</BQuantOffset> settings...
there's no mention in the CQ profiles... except possibly <BframeBias>0</BframeBias>
This leads me to my next question... are there CQ profiles set-up specifically for Q22... I never use Q18 and they might be more 'tweaked' for Q22 usage ???
I will :readguid: to discover more and :readrule: to wise-up regarding postings on the forum... (the Darkside is always eager to lead fools into temptation).
:) :D :eek:
Pascal
BTW [*** EDIT ***]
Gr8 article on Profiles (http://www.digital-digest.com/articles/x264_options_page2.html) and the meaning of each setting.
A must-read for any tinkerer...
salman1
21st March 2007, 13:08
how make avi container from dvd -9
weaver4
21st March 2007, 13:42
PuzZLeR (http://forums.divx.com/forum/viewTopic.php?id=3517&page=1) has discovered a similar anomaly, using a somewhat more simple though equally effective method.
I tried to download DivX DRF Analyzer - 0.9.5 (http://www.geocities.com/analyzerdrf/) without success... though it is outdated anyway...
What software do you use to test your encodes... ???
However, I think you are probably better qualified to handle the 'mystery and mayhem' ... since you got me interested in CQ encoding to start with...
CQ encoding has a ring of purity which now seams tarnished... but it still has the 2nd great virtue of "saving you time, saving you money" (by doing only 1 pass).
:) :D :eek:
Pascal
I used avinaptic, which buzz told me about.
I want good quality video, I don't care what size it comes out. So I use CQ, but I am about to just start coding 1000kbs for 640 9x5 movies and 1300 for 640 4:3 movies and forget it.
weaver4
21st March 2007, 13:51
Buzz,
The picture quality is not nearly as good as those that maintain a constand DRF, like avi.net and autogk.
If what you said is correct why do avi.net, autogk, staxrip, mpg mediator, Dr Divx, and all the other programs do it as a constant dRF regardless of the frame type? Is it possible to change the profile to do this?
Shark_jlc
21st March 2007, 14:02
... "Jeradc" (I assume that's Shark_jlc) ...
You are correct :)
buzzqw
21st March 2007, 14:19
@delacroixp
read better, we are speaking of XVID
@salman1
please be more clear
@weaver4
i will change the CQ profile, thanks for suggestion!
Is it possible to change the profile to do this?
yes, change the value of parameters to this
<BQuantRatio>100</BQuantRatio> and leave <BQuantOffset>0</BQuantOffset> as is
BHH
BixMix
21st March 2007, 15:02
@buzzqw
I understand exactly what you mean by Amplifydb(15). However, I don't know how to invoke ffdshow inside of AutoMKV, so I'm unclear on your second solution.
@delacroixp
I'm feeling brave so I'll check out BeSweet.
@both
Thank you for helping me breakdown my brick wall. Now I just have to climb over the rubble, and I have a feeling that a better understanding of command line stuff would help me do that.
buzzqw
21st March 2007, 15:23
I don't know how to invoke ffdshow inside of AutoMKV, so I'm unclear on your second solution.
stop! ffdshow is a decoder !
you must install it and USE when PLAY the movie! not when encoding :)
BHH
BixMix
21st March 2007, 15:36
[QUOTE=you must install it and USE when PLAY the movie! not when encoding :)]
Hmmm...the movie is ultimately being played by a Disney MixMax, a handheld media player for kids. So ffdshow isn't part of that equation.
Thanks though...I'm learning more every hour.
buzzqw
21st March 2007, 15:46
@BixMix
one more question
if you play the final avi on your pc is the volume enough ?
BHH
BixMix
21st March 2007, 16:08
@BixMix
one more question
if you play the final avi on your pc is the volume enough ?
BHH
No, the volume is not enough on the PC either.
xmcnuggetx
21st March 2007, 16:30
@xmcnuggetx
same problem as schizosmurf
Sorry was there a solution posted?
buzzqw
21st March 2007, 16:49
@xmcnuggetx
Sorry was there a solution posted?
no :( since isn't a problem of automkv but vista and WMCmd.vbs (again ask zambelli on new alternative container forum)
@BixMix
that strange but not impossible, automkv normalize the audio till no artifact is audible.
use ffdshow as audio decoder and check volume
BHH
schizosmurf
21st March 2007, 17:22
Sorry was there a solution posted?
u can try installing Windows media encoder 9 HERE (http://www.microsoft.com/windows/windowsmedia/forpros/encoder/default.mspx) and then the Vista hotfix HERE (http://support.microsoft.com/kb/929182)
it is SUPPOSED to fix that exact problem, but for my case it didnt. maybe you'll have better luck
EDIT: I just started a thread HERE (http://forum.doom9.org/showthread.php?t=123750) about my problem, so if that doesn't fix your problem, please post over there to show that its not an isolated incident (hopefully anyways :P)
nx6
21st March 2007, 17:54
how make avi container from dvd -9
Has the DVD already been ripped to your hard drive?
delacroixp
21st March 2007, 18:13
@delacroixp
I'm feeling brave so I'll check out BeSweet.
@both
Thank you for helping me breakdown my brick wall. Now I just have to climb over the rubble, and I have a feeling that a better understanding of command line stuff would help me do that.
Don't forget about downloading BeLight (http://belight.corecodec.org/) (A very nice, easy to use, GUI for BeSweet).
:) :D :eek:
Pascal
delacroixp
21st March 2007, 18:21
@weaver4
i will change the CQ profile, thanks for suggestion!
Is it possible to change the profile to do this?
yes, change the value of parameters to this
<BQuantRatio>100</BQuantRatio> and leave <BQuantOffset>0</BQuantOffset> as is
Wonderfull... the Vatican says "Miracles do happen" and they're right !!!
:) :D :eek:
Pascal
delacroixp
21st March 2007, 18:47
I used avinaptic, which buzz told me about.
I want good quality video, I don't care what size it comes out. So I use CQ, but I am about to just start coding 1000kbs for 640 9x5 movies and 1300 for 640 4:3 movies and forget it.
Please don't 'forget it' ... I really think CQ is the 'way to go' if you can just get it to work properly.
Awesome Utility (http://forum.doom9.org/showthread.php?t=123076) ... though I'm just wondering why you prefer the Xvid container over the Mkv model ???
[ About file ]
Name: BoB 02 - 640x360.mkv
Date: 20/03/2007 19:21:20
Size: 56,004,800 bytes
[ Generic info ]
Play duration: 00:49:59 (2999.24 s)
Container type: matroska
Creation time: 20/03/2007 17:21:07 UTC
Number of streams: 1
Type of stream nr. 1: video (V_MPEG4/ISO/AVC) {BoB 02 - 640x360}
Audio streams: 0
Muxing Application: libebml v0.7.7 + libmatroska v0.8.1
Writing Application: mkvmerge v2.0.2 ('You're My Flame') built on Feb 21 2007 23:40:55
[ About quality ]
Resolution: HIGH (640 x 360)
Width: multiple of 16 (GOOD)
Height: multiple of 8 (16 would be better)
Average DRF quality: MEDIUM (25.505621)
Standard deviation quality: MEDIUM (3.105367)
Std. dev. weighted mean: MEDIUM (3.000197)
[ Video track ]
Codec ID: V_MPEG4/ISO/AVC
Resolution: 640 x 360
Frame aspect ratio: 16:9 = 1.777777
Pixel aspect ratio: 649:640 = 1.014062
Display aspect ratio: 649:360 = 1.802777 (~16:9)
Framerate: 25 fps
Stream size: 354,966,220 bytes
Bitrate: 946.816446 kbps
Qf: 0.164377
[ About H.264 encoding ]
User data: x264
User data: core 54 svn-628M
User data: H.264/MPEG-4 AVC codec
User data: Copyleft 2005
User data: http://www.videolan.org/x264.html
User data: cabac=1
User data: ref=3
User data: deblock=1:-2:-1
User data: analyse=0x3:0x133
User data: me=umh
User data: subme=5
User data: brdo=0
User data: mixed_ref=1
User data: me_range=16
User data: chroma_me=1
User data: trellis=1
User data: 8x8dct=1
User data: cqm=0
User data: deadzone=21,11
User data: chroma_qp_offset=0
User data: threads=3
User data: nr=0
User data: decimate=1
User data: mbaff=0
User data: bframes=3
User data: b_pyramid=1
User data: b_adapt=1
User data: b_bias=0
User data: direct=3
User data: wpredb=1
User data: bime=1
User data: keyint=250
User data: keyint_min=25
User data: scenecut=40(pre)
User data: rc=crf
User data: crf=23.0
User data: rceq='blurCplx^(1-qComp)'
User data: qcomp=0.60
User data: qpmin=10
User data: qpmax=51
User data: qpstep=4
User data: ip_ratio=1.40
User data: pb_ratio=1.30
SPS id: 0
Num ref frames: 6
PPS id: 0
Entropy coding type: CABAC
Weighted prediction: No
Number of frames: 74981
Drop/delay frames: 0
Corrupted frames: 0
P-slices: 40007 ( 53.356 %) #############
B-slices: 33987 ( 45.327 %) ###########
I-slices: 987 ( 1.316 %)
SP-slices: 0 ( 0.000 %)
SI-slices: 0 ( 0.000 %)
[ 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 %)
P-slices average DRF: 24.908615
P-slices std. deviation: 2.832718
P-slices max DRF: 32
B-slices average DRF: 26.299879
B-slices std. deviation: 3.205946
B-slices max DRF: 34
I-slices average DRF: 22.354609
I-slices std. deviation: 2.703872
I-slices max DRF: 30
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... that's tragic !!!
I'm keen to try the <BQuantRatio>100</BQuantRatio> and <BQuantOffset>0</BQuantOffset> settings... but the H264 profiles don't have that command at all and don't even know where best it should go even it does...
:) :D :eek:
Pascal
buzzqw
21st March 2007, 19:49
xvid/avi is playable on stand alone players, while mkv no
about the log... i suppose is a crf encoding at value 23... don't know about all those frames at varius quants...
if x264.exe work as this, for me is ok
BHH
P.S. i don't understand your sense of humor... i think is more sarcasm... and i don't like it
weaver4
21st March 2007, 20:38
xvid/avi is playable on stand alone players, while mkv no
about the log... i suppose is a crf encoding at value 23... don't know about all those frames at varius quants...
if x264.exe work as this, for me is ok
BHH
P.S. i don't understand your sense of humor... i think is more sarcasm... and i don't like it
I agree with buzz: If you need stand-alone-player capability then you should be using xvid-avi. If you are not concerned about that then you should use x264-mkv or x264-mp4. Unless you have a underpowered system, then stay with xvid-avi.
salman1
21st March 2007, 21:21
[QUOTE=buzzqw;973401]
@salman1
please be more clear
/QUOTE]
i have dvd that i want to do 2 cd rip with avi container with audio of 128kbps/s is that possible with this software?
xmcnuggetx
21st March 2007, 22:03
@xmcnuggetx
no :( since isn't a problem of automkv but vista and WMCmd.vbs (again ask zambelli on new alternative container forum)
FYI I fixed this in Vista by turning off DEP. You can do so by following this article:
http://vista.beyondthemanual.com/2006/11/vista_tip_turn_off_data_execut.html
buzzqw
21st March 2007, 22:06
@salman1
when you have the dvd on your hard disk, start automkv, on input poit to video_ts.ifo
select your container, codec, profile, audio and subs,select disk size and width, then click start
@xmcnuggetx
thanks to the info !
so is automkv and wmv fuctional under vista ? (just for conferm)
BHH
delacroixp
21st March 2007, 22:38
xvid/avi is playable on stand alone players, while mkv no
about the log... i suppose is a crf encoding at value 23... don't know about all those frames at varius quants...
if x264.exe work as this, for me is ok
BHH
P.S. i don't understand your sense of humor... i think is more sarcasm... and i don't like it
It is a crf encoding at Q23 but is it possible to have a totally flat quantizer... ?
I notice the Average DRF = 25.505621 with a huge swing between Q10 and Q34 ...
It's probably pretty standard stuff and I don't know any better myself but I'ld be keen to try a straight Q23... and c what it looks like.
:) :D :eek:
Pascal
nx6
22nd March 2007, 00:47
i have dvd that i want to do 2 cd rip with avi container with audio of 128kbps/s is that possible with this software?
Before you start, make sure you have all the required software installed. You need more than just AutoMKV, you also need AVISynth and XviD at least (see the first post (http://forum.doom9.org/showthread.php?p=854221#post854221) of this thread).
Insert your DVD.
In AutoMKV, select the drive in the upper right, then click "Check DVD Drive"
AutoMKV should select the largest IFO file (which will correspond to the main movie on the DVD).
Set your output location (where the video files should go). Use a hard drive with at least 15GB of free space to handle all the DVD temp files, etc.
Change the container on the right hand side to AVI (it says MKV right now). Codec should change to XVID.
Set encoding profile, remember that higher qulaity profiles will take longer to process.
In the area labeled "Audio Track 1" select your audio track. I recommend you use a 2-ch Stereo track unless you are actually planning on playing the file on a 5.1 channel system.
Change audio format to LAME , STEREO, and quality to 128.
Leave other options on AUTO or however they are set if you don't know what they do.
On Output File/Name Options area change disk setting to "2 CD" this will give you one 1400 MB file, not two 700MB ones. You can also enter a specify a name for the final movie file (you don't need to type the .avi).
Now hit Start Encoding, in the lower right.
DVDFab Decrypter will open and start ripping the DVD to your hard disk. If it gives you an error about the path where it is trying to save the DVD, just change it and then hit start on it's window. A minor hiccup, it will remember next time.
After DVD Decrypter finishes, DGIndex will start and begin processing. You may not see a window telling you what it is doing, as long as your hard disk is churning, it is fine.
Audio will be processed after that.
Then Video (this will take several hours depending on the specs of your computer).
Then the parts will all be put together in the file.
When AutoMKV finishes, on the "Log" tab of AutoMKV it will say "Finished Job" at the bottom of the log.
Now go look in the folder you had defined as the output, and you should see a file with the name you picked.avi.
@buzzqw:
I thought subtitles on AVI required the "burn in" option be used.
salman1
22nd March 2007, 03:22
^ i have dvd ripped in my hd drive also i have done d2v file so and the audio. what is input file then?
can i put d2v file as an input or the vob file? or i have to do others than that? thx
RipcordAFF
22nd March 2007, 03:40
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
@RipcordAFF
Bautodeint.exe NEED a yv12 decoder installed
Install the Koepi XviD Build (link on first post)
Hey buzzqw, I tried what you said, and it still didnt work. It still flys through the steps and only flashes up the command windows. Any ideas? Thanks
Here is the log
22:35:21 0.79 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
22:35:21 Selected Input file: F:\DVD Rips\Lost\e12\VTS_04_1.VOB
22:35:21 Selected Output dir: F:\DVD Rips\Lost\e12\temp\
22:35:21 Selected Final Name: Lost--S2E12
22:35:21 Selected Container type: WMV
22:35:21 Selected Encoder: WMV
22:35:21 Selected Size: 1/2 CD
22:35:21 Selected Slice: 1
22:35:21 Selected Profile: 1_Pass_CBR_VeryQuick.xml
22:35:21 Selected Width: Automatic
22:35:21 Selected Resizer: SimpleResize (neutral soft)
22:35:21 Selected Filters: RemoveGrain(mode=2)
22:35:21 Selected Deinterlacer: AUTO
22:35:21 Selected Field Order: AUTO
22:35:21 Track Language 1: AC3 Audio Stream 0
22:35:21 Audio Codec 1: WMV
22:35:21 Audio Quality 1: 96
22:35:21 Audio Channel 1: Stereo
22:35:21 Advanced Audio Settings DUMP Track 1
22:35:21 Nero Option Profiles: AUTO --- Encoding Mode: Quality
22:35:21 CCT Option Profiles: AUTO --- Channel Options: AUTO
22:35:21 Lame Settings: ABR
22:35:21 Audio Normalization: 1
22:35:21 Frequency: AUTO --- Tempo : NONE
22:35:21 Pitch: NONE --- Other Add :
22:35:21 Advanced Audio Settings DUMP Track 2
22:35:21 Nero Option Profiles: AUTO --- Encoding Mode: Quality
22:35:21 CCT Option Profiles: AUTO --- Channel Options: AUTO
22:35:21 Lame Settings: ABR
22:35:21 Audio Normalization: 1
22:35:21 Frequency: AUTO --- Tempo : NONE
22:35:21 Pitch: NONE --- Other Add :
22:35:21
22:35:21 Dgindex CMD: C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1 -YR=2 -AIF=[F:\DVD Rips\Lost\e12\VTS_04_1.VOB] -OF=[F:\DVD Rips\Lost\e12\temp\movie] -exit -minimize
22:37:13 Starting fixing audio delay on track number 1
22:37:13 DelayCut CMD: C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\dgindex\Delaycut.exe -auto -out "F:\DVD Rips\Lost\e12\temp\fixed1.ac3" "F:\DVD Rips\Lost\e12\temp\movie T01 3_2ch 384Kbps DELAY 0ms.ac3"
22:37:28 Original 1' Audio Size: 124133376 bytes
22:37:28 Finished fixing audio delay
22:37:28 ForceFilm Detected: 99.400002% FILM found
22:37:31 ERROR - There are some problem with movie lenght! Try parsing D2V file
22:37:31 Number of Frames: 9792
22:37:31 Framerate: 29.969999
22:37:31 Movie length in Seconds: 327
22:37:31 Movie Width: 720
22:37:31 Movie Height: 480
22:37:34 Order: unk
22:37:34 Autoresize CMD: cscript.exe "C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\encoder\WMCmd.vbs" -input "F:\DVD Rips\Lost\e12\temp\resmovie.avs" -output "F:\DVD Rips\Lost\e12\temp\resmovie.wmv" -v_codec WMV8 -v_mode 2 -v_quality 85 -s_config "F:\DVD Rips\Lost\e12\temp\wmv_crb" -a_codec WMASTD -a_mode 0 -title "Lost--S2E12" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 96_44_2
22:37:37 Tested total movie: 5%
22:37:37 AutoResize movie size: -1 bytes
22:37:37 Movie Width suggested: 943278096 value based on sample size (131010848.00% of original width)
22:37:38 WMV CMD: cscript.exe "C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\encoder\WMCmd.vbs" -input "F:\DVD Rips\Lost\e12\temp\movie.avs" -output "F:\DVD Rips\Lost\e12\temp\movie.wmv" -v_codec WMV8 -v_mode 0 -v_bitrate 9088256 -s_config "F:\DVD Rips\Lost\e12\temp\wmv_crb" -a_codec WMASTD -a_mode 0 -title "Lost--S2E12" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 96_44_2
22:37:41 Final Muxed size: -1 bytes
22:37:41 Encoding finished: 00:02:20 elapsed time
22:37:41 -----------------------------------------------------------------------
22:37:41 Script AutoCrop.log
22:37:41 -----------------------------------------------------------------------
22:37:41 Script Resmovie.avs
22:37:41
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\autocrop.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\BicublinResize.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\blockbuster.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\cnr2.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\ColorMatrix.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\Convolution3D.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\corrector.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\DctFilter.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\Decomb.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\Deen.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\degrainmedian.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\DGDecode.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\EEDI2.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\fft3dfilter.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\FluxSmooth.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\frfun7.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\hqdn3d.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\LeakKernelDeint.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\MaskTools.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\medianblur.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\MipSmooth.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\mt_masktools.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\mvtools.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\NicAudio.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\RemoveGrain.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\Repair.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\SangNom.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\SimpleResize.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\SoundOut.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\TBilateral.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\TomsMoComp.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\TTempSmooth.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\UnDot.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\UnFilter.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\VSFilter.dll")
22:37:41 #loadpluginstart
22:37:41
22:37:41 #test1
22:37:41
22:37:41 Import("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\MCBob_v03c.avsi")
22:37:41 Import("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\mvbob.avsi")
22:37:41 Import("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\seesaw.avsi")
22:37:41 Import("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\spresso.avsi")
22:37:41 #importstart
22:37:41
22:37:41 #test2
22:37:41
22:37:41 movie = mpeg2source("F:\DVD Rips\Lost\e12\temp\movie.d2v")
22:37:41 audio = NicAC3Source("F:\DVD Rips\Lost\e12\temp\fixed1.ac3",2)
22:37:41 function getOrder(clip c) {
22:37:41 order = GetParity(c) ? 1 : 0
22:37:41 Return order }
22:37:41 #filter1start
22:37:41
22:37:41 #test3
22:37:41
22:37:41 #cropstart
22:37:41
22:37:41 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
22:37:41 fixed_aspect = 1.185185
22:37:41 c_width = width(cropclip)
22:37:41 c_height = Round(height(cropclip) / fixed_aspect)
22:37:41 input_par = float(float(c_width)/float(c_height))
22:37:41 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
22:37:41 out_width = 704
22:37:41 out_height = Round(float(out_width) / input_par)
22:37:41 hmod = out_height - (floor(out_height / 16 ) * 16)
22:37:41 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
22:37:41 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
22:37:41 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
22:37:41
22:37:41 #resizestart
22:37:41
22:37:41 #test4
22:37:41
22:37:41 SimpleResize(out_width,out_height)
22:37:41 #filter2start
22:37:41
22:37:41 #test5
22:37:41
22:37:41 RemoveGrain(mode=2)
22:37:41 function Comptest(clip c, float percent)
22:37:41 {
22:37:41 frange=floor(14./(percent/100.))
22:37:41 Return SelectRangeEvery(c, frange, 14)
22:37:41 }
22:37:41 audio=ConvertAudioToFloat(audio)
22:37:41 audio=getchannel(audio,1,2)
22:37:41 audiodub(audio,last)
22:37:41 Comptest(5)
22:37:41 ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
22:37:41 -----------------------------------------------------------------------
22:37:41 Script movie.avs
22:37:41
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\autocrop.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\DGDecode.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\EEDI2.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\fft3dfilter.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\FluxSmooth.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\frfun7.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\hqdn3d.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\LeakKernelDeint.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\MaskTools.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\medianblur.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\MipSmooth.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\mt_masktools.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\mvtools.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\NicAudio.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\RemoveGrain.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\Repair.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\SangNom.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\SimpleResize.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\SoundOut.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\TBilateral.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\TDeint.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\TIVTC.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\TomsMoComp.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\TTempSmooth.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\UnDot.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\UnFilter.dll")
22:37:41 LoadPlugin("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\VSFilter.dll")
22:37:41 #loadpluginstart
22:37:41
22:37:41 #test1
22:37:41
22:37:41 Import("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\MCBob_v03c.avsi")
22:37:41 Import("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\mvbob.avsi")
22:37:41 Import("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\seesaw.avsi")
22:37:41 Import("C:\Users\Reed\Desktop\Utilities\DVD Stuff\automkv\exe\filter\spresso.avsi")
22:37:41 #importstart
22:37:41
22:37:41 #test2
22:37:41
22:37:41 movie = mpeg2source("F:\DVD Rips\Lost\e12\temp\movie.d2v")
22:37:41 audio = NicAC3Source("F:\DVD Rips\Lost\e12\temp\fixed1.ac3",2)
22:37:41 function getOrder(clip c) {
22:37:41 order = GetParity(c) ? 1 : 0
22:37:41 Return order }
22:37:41 #filter1start
22:37:41
22:37:41 #test3
22:37:41
22:37:41 #cropstart
22:37:41
22:37:41 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
22:37:41 fixed_aspect = 1.185185
22:37:41 c_width = width(cropclip)
22:37:41 c_height = Round(height(cropclip) / fixed_aspect)
22:37:41 input_par = float(float(c_width)/float(c_height))
22:37:41 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
22:37:41 out_width = 704
22:37:41 out_height = Round(float(out_width) / input_par)
22:37:41 hmod = out_height - (floor(out_height / 16 ) * 16)
22:37:41 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
22:37:41 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
22:37:41 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
22:37:41
22:37:41 #resizestart
22:37:41
22:37:41 #test4
22:37:41
22:37:41 SimpleResize(out_width,out_height)
22:37:41 #filter2start
22:37:41
22:37:41 #test5
22:37:41
22:37:41 RemoveGrain(mode=2)
22:37:41 ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
22:37:41 audio=ConvertAudioToFloat(audio)
22:37:41 audio=getchannel(audio,1,2)
22:37:41 audiodub(audio,last)
22:37:41 -----------------------------------------------------------------------
22:37:41 Script mkvmaudio.avs
22:37:41 -----------------------------------------------------------------------
22:37:41 Script mkvmaudio.bat
22:37:42 -----------------------------------------------------------------------
22:37:42 Script mkvmaudio2.avs
22:37:42 -----------------------------------------------------------------------
22:37:42 Script mkvmaudio2.bat
22:37:42
22:37:42 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
nx6
22nd March 2007, 03:49
^ i have dvd ripped in my hd drive also i have done d2v file so and the audio. what is input file then?
can i put d2v file as an input or the vob file? or i have to do others than that? thx
I don't know. I told you in PM I'm rather new to most video encoding. I don't use AutoMKV just for video encoding and muxxing, I let it handle everything (except ripping if I'm using an episodic DVD). From your earlier posts I got the idea you were just starting and you had a DVD you wanted to rip to a specific format, not that you had a bunch of stuff already encoded separately.
Edit: You can use the VOB as the input. I'm not sure how to specify a separate audio file for audio input, but I think it can be done, though. Someone else will have to chime in.
schizosmurf
22nd March 2007, 05:33
FYI I fixed this in Vista by turning off DEP. You can do so by following this article:
http://vista.beyondthemanual.com/2006/11/vista_tip_turn_off_data_execut.html
tried this and still same, with cscript.exe crashing
@RipcordAFF
see POST (http://forum.doom9.org/showthread.php?p=973454#post973454)
RipcordAFF
22nd March 2007, 06:26
tried this and still same, with cscript.exe crashing
@RipcordAFF
see POST (http://forum.doom9.org/showthread.php?p=973454#post973454)
Buzz I tried this, installed the WM 9 encoder, along with hotfix, and tried turning off DEP. All nothing. The CMD windows just close as soon as they open. If i really really watch them, they flash an error in the box right before they close, but i dont have enough time to read it....Any help? Thanks!
nx6
22nd March 2007, 07:00
Alright, AutoMKV is giving me Script Host error messages again. It was working fine it seemed on 0.78b, but something changed between that and the most recent version.
nx6
22nd March 2007, 08:32
Alright, AutoMKV is giving me Script Host error messages again. It was working fine it seemed on 0.78b, but something changed between that and the most recent version.
Ah, I think I have figured it out. It seems AutoMKV does not like it when the temp folder (with the ripped DVDs in it) is outside its own folder! I had moved it outside since I had installed 0.79a but still had 0.78b, and when I tried to run 0.78b I got errors on it, too. But after moving the temp folder into the 0.79a folder, now a job completed. :)
Very interesting. I wonder if this was the source of some of the issues I was having before when I first started trying to use AutoMKV.
delacroixp
22nd March 2007, 09:28
^ i have dvd ripped in my hd drive also i have done d2v file so and the audio. what is input file then?
can i put d2v file as an input or the vob file? or i have to do others than that? thx
I don't know. I told you in PM I'm rather new to most video encoding. I don't use AutoMKV just for video encoding and muxxing, I let it handle everything (except ripping if I'm using an episodic DVD). From your earlier posts I got the idea you were just starting and you had a DVD you wanted to rip to a specific format, not that you had a bunch of stuff already encoded separately.
Edit: You can use the VOB as the input. I'm not sure how to specify a separate audio file for audio input, but I think it can be done, though. Someone else will have to chime in.
You may wont to take your encoding to the next level and mux your tracks manually which will allow you to include any audio or even video (3D Stereoscopic Movies (http://en.wikipedia.org/wiki/Stereoscopy) viewed through Shutter Glasses (http://en.wikipedia.org/wiki/LCD_shutter_glasses)) tracks.
Download MKVToolnix (http://www.bunkus.org/videotools/mkvtoolnix/) which includes the MkvMerge GUI and browse through the MkvMerge User Guide (http://www.bunkus.org/videotools/mkvtoolnix/doc/mkvmerge-gui.html) (It's pretty much plane sailing after that).
Good Luck and have a good one...
:) :D :eek:
Pascal
nx6
22nd March 2007, 10:01
You may wont to take your encoding to the next level and mux your tracks manually which will allow you to include any audio or even video (3D Stereoscopic Movies (http://en.wikipedia.org/wiki/Stereoscopy) viewed through Shutter Glasses (http://en.wikipedia.org/wiki/LCD_shutter_glasses)) tracks.
Download MKVToolnix (http://www.bunkus.org/videotools/mkvtoolnix/) which includes the MkvMerge GUI and browse through the MkvMerge User Guide (http://www.bunkus.org/videotools/mkvtoolnix/doc/mkvmerge-gui.html) (It's pretty much plane sailing after that).
Good Luck and have a good one...
Ironically, MKVToolnix is what I tried before I tried MkvMagic, which what led me to AutoMKV.
I'm just looking for something fairly self contained and automated for now. Once I can get AutoMKV "jumping through hoops" maybe I'll look into it.
I'll assume you're talking to Salman1 since he has all the pieces waiting to be muxxed.
salman1
22nd March 2007, 13:09
I also have ifo file too can i use that?
buzzqw
22nd March 2007, 13:19
yes!
if you point to ifo you will can select audio tracks by name and not by number
BHH
RipcordAFF
22nd March 2007, 15:56
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
Any word on this yet Buzz? I love your program, but I cant seem to get it to work at all under vista....any help would be greatly appreciated. I tried all your suggestions (page 69) any some other's suggestions (previous page), nothing worked....thanks man!
buzzqw
22nd March 2007, 20:40
Any word on this yet Buzz? I love your program, but I cant seem to get it to work at all under vista.
open mkvmaudio.avs in virtualdub , any errors ?
for me is a bad installation of avisynth ... try disinstalling and reinstalling 2.5.7
BHH
salman1
22nd March 2007, 21:22
i get this error also
http://maxupload.com/img/77177EFF.jpg
buzzqw
22nd March 2007, 22:29
this error is often due to wrong framerate of avi file...
is movie.avi in temp directory playable ?
if so try manual muxing with virtualdub OR reencode (with xvid/avi) AND in advanced settings set use DivXMux
BHH
fenomeno83
23rd March 2007, 01:09
I have a problem:when I set both manually width resolution and final size automkv blocked on indexing!
PlayWithFire
23rd March 2007, 07:51
Can this tool be used to convert an MKV file to a WMV, so i can stream it to my 360? I've tried a few times, and i think the WMV Encoder is not working. The window displays some error about a profile, but i can't read what it is.
Any help would be greatly appreciated.
delacroixp
23rd March 2007, 10:46
Have you any thoughts on Psychovisual Enhancement ?
I don't know whether you ever used the EKG in Dr DivX 1 but basically the idea was to decrease the bitrate in areas the eyes wouldn't notice anyway.
How do you think this impacts on Constant Quality encodes since all is equal ?
I was just wondering whether it is not in fact better to vary the Quantiser (as is happening) for a better overall Psychovisually pleasing result.
What's your take ?
:) :D :eek:
Pascal
buzzqw
23rd March 2007, 13:43
@fenomeno83
since your source is from sat , i suppose is in TS format, in that case is much better to use projectX.
After loanding your file, go in advanced setting and check Use ProjectX (and leave de-check Use delay cut)
@PlayWithFire
launch from dos box movie_wmv.bat and spot the error
also read the hint on first post
BHH
fenomeno83
23rd March 2007, 14:33
my sat recording is in .mpg format (I cut it using mpeg2cut2)
buzzqw
23rd March 2007, 14:42
@fenomeno83
post the log
also try demuxing with dgindex and loading the dv2
BHH
BixMix
23rd March 2007, 15:03
In the Wiki it shows VBR as one of the pull-downs for Lame. I only seem to have ABR and CBR -- even when I put it on max quality. Why?
buzzqw
23rd March 2007, 15:25
the new soundout plugin doesn't support well pure VBR mp3, so the new default is ABR (average bitrate around your bitrate selected)
BHH
delacroixp
23rd March 2007, 16:38
I tried modifying the <MinQuantizer>23</MinQuantizer> <MaxQuantizer>23</MaxQuantizer> but this caused H264 to crash.
I even downloaded the Sharktooth profiles but they're much the same...
:) :D :eek:
Pascal
weaver4
23rd March 2007, 16:49
Have you any thoughts on Psychovisual Enhancement ?
I don't know whether you ever used the EKG in Dr DivX 1 but basically the idea was to decrease the bitrate in areas the eyes wouldn't notice anyway.
How do you think this impacts on Constant Quality encodes since all is equal ?
I was just wondering whether it is not in fact better to vary the Quantiser (as is happening) for a better overall Psychovisually pleasing result.
What's your take ?
:) :D :eek:
Pascal
I never liked it. The 5 to 10% it would save on a filesize was not worth it. I mean how do they know what is important to me? Maybe I do want to look at the redhead in the corner of the picture. Ever watch the movie 6th sense? When you watch it the second time you realize that all the hints of what is going on were red objects. It is unlikely that a computer could figure that out.
Where this is important is whey you are trying to bet the best picture possible over the smallest pipe. There is one RF-TV distribution system that uses DivX and it limits the bandwidth to 1000kbs. They use PE to squeeze out every bit.
SeeMoreDigital
23rd March 2007, 16:53
...There is one RF-TV distribution system that uses DivX and it limits the bandwidth to 1000kbs. They use PE to squeeze out every bit.Really, where?
weaver4
23rd March 2007, 16:54
I tried modifying the <MinQuantizer>23</MinQuantizer> <MaxQuantizer>23</MaxQuantizer> but this caused H264 to crash.
I even downloaded the Sharktooth profiles but they're much the same...
:) :D :eek:
Pascal
What profile are you using and when you run avinaptic on it what results is is giving you.
delacroixp
23rd March 2007, 16:57
Where’s the volume control ?
First, I really like this program. It does a good job, and I love the fact that it works in the background. Now my question: I want to increase the volume of the movies that I’m encoding.
The checkbox for “normalize” doesn’t do enough for my purposes, and I can’t find any other volume settings. Sorry to be dense about this, I realize that since mp3gain.exe, etc. are there that it must be possible, but I don’t see “gain” or “volume” in the Advanced Audio Options. I don’t see anything in the Advanced Settings. The Advanced Profiles Editing seems to be all about the video. I don’t know where else to look or what files to open up.
I’m a newbie, and I barely understand half of this thread, but I’d really appreciate a leg up here. I’ve used other programs to raise the volume, and I’d like to do it with AutoMKV. Perhaps the answer is obvious; I will slap my head and be humbled, but right now I’m lost. Please point me in the right direction.
In the Wiki it shows VBR as one of the pull-downs for Lame. I only seem to have ABR and CBR -- even when I put it on max quality. Why?
Which container are you using for your encodes (PC and/or DVD-standalone, etc...) and why encode into MP3 when AAC MP4 is eminently superior...
BeSweet offers very nice AAC 5.1 or stereo (VBR/CBR) encoding facilities... if you are willing to get your hands dirty...
:) :D :eek:
Pascal
buzzqw
23rd March 2007, 17:08
@delacroixp
I even downloaded the Sharktooth profiles but they're much the same...
no, not the same and not compatible. if you change only this value from 23 to 24 and x264 crash , you have done something other.
BeSweet offers very nice AAC 5.1 or stereo (VBR/CBR) encoding facilities... if you are willing to get your hands dirty...
even automkv could convert ac3 to aac... select an ac3/mpa/... as input file
BHH
RipcordAFF
23rd March 2007, 17:45
open mkvmaudio.avs in virtualdub , any errors ?
for me is a bad installation of avisynth ... try disinstalling and reinstalling 2.5.7
BHH
Buzz, you got it, Bad Aavisynth install, Thanks for the help!!!!!!!!:thanks: :thanks: :thanks:
fenomeno83
23rd March 2007, 18:03
I restarted my pc and now work!
RipcordAFF
23rd March 2007, 18:04
@BuzzQw
Well I spoke a little early, I am having the same problem that I remember having on XP, however I dont remember how to fix it. I spent a long time reading back through the previous pages and couldnt find the solution. What happens is it goes through all the steps just fine, and on let's encode, it just goes straight to saving log. And what it spits out is a really small (like 40k) wmv file. I am trying to encode a 1.5 gb vob file.
The fix, if i remember correctly had to do with copying some .dll s into the exe folder, I think maybe the GDindex one, but not sure....Any ideas? Thanks, you are an amazing guy!
delacroixp
23rd March 2007, 18:16
Have you any thoughts on Psychovisual Enhancement ?
I don't know whether you ever used the EKG in Dr DivX 1 but basically the idea was to decrease the bitrate in areas the eyes wouldn't notice anyway.
How do you think this impacts on Constant Quality encodes since all is equal ?
I was just wondering whether it is not in fact better to vary the Quantiser (as is happening) for a better overall Psychovisually pleasing result.
What's your take ?
I never liked it. The 5 to 10% it would save on a filesize was not worth it. I mean how do they know what is important to me? Maybe I do want to look at the redhead in the corner of the picture. Ever watch the movie 6th sense? When you watch it the second time you realize that all the hints of what is going on were red objects. It is unlikely that a computer could figure that out.
Where this is important is whey you are trying to bet the best picture possible over the smallest pipe. There is one RF-TV distribution system that uses DivX and it limits the bandwidth to 1000kbs. They use PE to squeeze out every bit.
How can I get true Q23 Constant Quality for H264 MKV container ?
I tried modifying the <MinQuantizer>23</MinQuantizer> <MaxQuantizer>23</MaxQuantizer> but this caused H264 to crash.
I even downloaded the Sharktooth profiles but they're much the same...
What profile are you using and when you run avinaptic on it what results is is giving you
I don't know whether you read my post on Page 74, #1469: (http://forum.doom9.org/showpost.php?p=973478&postcount=1469) but I tested an Episode of 'Band of Brothers' using AVInaptic with incredible results.
Also, I've been using the H264 (=> MKV container) ConstantQuality-CRF profile.
I've also posted a query on x264: Constant quality vs constant file size (http://forum.doom9.org/showpost.php?p=974346&postcount=11) and point out that it would seam a 'Variable Quantizer' is sometimes desirable.
:) :D :eek:
Pascal
vgiozo
23rd March 2007, 18:32
I had reported earlier a (very) low volume problem when encoding form AC3 6ch to Nero AAC 2ch...
It seems that the quality or bitrate mode in audio settings has no difference on the result...used both ways and ended up with low volume...
With the AC3 2ch audio to AAC 2ch, the volume is as it should be, so the problem can be attributed to the downmixing process...
The problem was not fixed by the previous or last (most recent) release...
The encodings were made with the 0.79a release...
delacroixp
23rd March 2007, 18:44
@delacroixp
I tried modifying the <MinQuantizer>23</MinQuantizer> <MaxQuantizer>23</MaxQuantizer> but this caused H264 to crash.
I even downloaded the Sharktooth profiles but they're much the same...
no, not the same and not compatible. if you change only this value from 23 to 24 and x264 crash , you have done something other.
I tried the Sharktooth CQ-ASP_Q2_eq(crf).xml profile and changed
<MinQuantizer>10</MinQuantizer> and <MaxQuantizer>51</MaxQuantizer>
to
<MinQuantizer>23</MinQuantizer> and <MaxQuantizer>23</MaxQuantizer>
which then crashed...
I realized that this probably wouldn't work anyway since those commands relate to multipass High-speed, High-quality (http://gabextreme.googlepages.com/DeathTheSheep_x264_VfW_guide.html) encoding.
:) :D :eek:
Pascal
buzzqw
23rd March 2007, 20:03
@RipcordAFF
was tivtc.dll
open your movie.avs file in virtualdub and look at the error (if any)
it's strange because in automkv 0.79a i used the compatibility version of dgindex (1.4.9 beta12) and tivtc (1.00 iirc)
@vgiozo
one more test
copy aacgain from \exe\besweet folder to temp folder
from dos box run "aacgain.exe audio.mp4" (without quotes)
what is the message ?
and post your mkvmaudio.avs
thanks ! :)
BHH
weaver4
23rd March 2007, 20:56
Really, where?
I don't remember the name of the system, but it is used in this upscale apartment complex in our city. They do this to encourage to dwellers to buy the broad-band bundle from the apartment complex rather than the local telco.
So I was told it was a wi-max type system from motorola with a Ethernet-Divx-Video converter box that is limited to 1Mbit/sec. I want to say the box is from Pace, but I am not sure about that.
RipcordAFF
23rd March 2007, 21:11
buzzqw-- Where is this movie.avs file? And what exactly is virtualdub? Im kinda new at all this, but this is the same error that i used to have under xp when i had to update those dlls......Im kinda stuck :( I cannot find those files you mentioned, but if you tell me, id be glad to post anythign i find
delacroixp
23rd March 2007, 21:43
@delacroixp
i am very happy. :rolleyes:
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
I don't think I can follow up the issue with DGIndex and the movie has a 16:9 aspect ratio with 1024x576 resolution but that's not the problem.
I've also noticed that when ripping with DVD Decrypter it lists the series as a 720x576 (PAL) 16:9 movie which is clearly illogical...
added!
now when selecting "Original" as WIDTH the RESIZER goes to NONE
The problem is that I can manually set the full resolution of 1024x576 by choosing '...' but I can't set the Resize Filter to NONE... only Original or 'AutoCrop Only' will allow No Resize Filter.
Please Help !
:thanks:
:) :D :eek:
Pascal
delacroixp
23rd March 2007, 22:03
I finally encoded the entire Band of Brothers series @ Q23 (640x360) onto 1 DVD with 1 MB to spare... and this from a series that is originally 34 GB and 12 hours long...
This truly, is a testament, not only to the power of H264, the simplicity and versatility of AutoMKV, and the sheer genius of Buzzqw... but also the absolute potential of the Constant Quality CRF profile...
See pic pending
:thanks:
:) :D :eek:
Pascal
buzzqw
23rd March 2007, 22:04
@delacroixp
I've also noticed that when ripping with DVD Decrypter it lists the series as a 720x576 (PAL) 16:9 movie which is clearly illogical..
start reading here http://www.doom9.org/aspectratios.htm
and after you have read, re-read, then if you got any question go here http://www.seemoredigital.net/03_Video_Info.html and specially here http://82.10.220.174/03_Video_Only_Info/PAL_-_Anamorphicly_Encoded_Images.html
The problem is that I can manually set the full resolution of 1024x576 by choosing '...' but I can't set the Resize Filter to NONE... only Original or 'AutoCrop Only' will allow No Resize Filter.
after these read you will know that this is a false problem
BHH
nx6
23rd March 2007, 22:48
The problem is that I can manually set the full resolution of 1024x576 by choosing '...' but I can't set the Resize Filter to NONE... only Original or 'AutoCrop Only' will allow No Resize Filter.
Remember that the maximum width of DVD-video is 720px. Therefore, it is impossible to encode at 1024xanything and not have resizing. If you don't resize, where is the encoder going to get the extra pixels from?
I have a question you can probably answer: Is it possible to encode using Constant Quality-CRF and have the encoder set the quality setting? Like if I set a container size, have the encoder check to see how complex the movie is and then set the quality level to suit the final size? Or am I just describing how regular encoding works now. :D
weaver4
23rd March 2007, 22:50
Can't I make use the iPod 5.5G and not set a filesize? Everytime I select Don't Care about Filesize it automatically sets me back to ConstantQuality-CRF.
The reason that I am asking is that the ipod 5.5G profile is the profile that should be used to work with the new Apple-TV, but for the apple TV I don't care about filesize because the files will stay resident on my computer. But if I use the Constant Quality-CRF profile the results will not play on the Apple-TV.
vgiozo
23rd March 2007, 23:13
@vgiozo
one more test
copy aacgain from \exe\besweet folder to temp folder
from dos box run "aacgain.exe audio.mp4" (without quotes)
what is the message ?
and post your mkvmaudio.avs
Unfortunately I 've deleted the temp along with the dvd folder...but I can Always encode a new movie! I'll be doing it just for you though, cause I'm not really into renting dvds and encoding into video files :cool:
I got another movie here with only 6ch AC3, so I'll let it encode during the night and see what we come up with...
Cheers
delacroixp
23rd March 2007, 23:15
@delacroixp
start reading here http://www.doom9.org/aspectratios.htm
and after you have read, re-read, then if you got any question go here http://www.seemoredigital.net/03_Video_Info.html and specially here http://82.10.220.174/03_Video_Only_Info/PAL_-_Anamorphicly_Encoded_Images.html
after these read you will know that this is a false problem
OK... all done !!! ... aswell as Anamorphic Widescreen (http://en.wikipedia.org/wiki/Anamorphic_widescreen) from Wikipedia where they mention
"It should be noted that the picture is not vertically manipulated in any way—the normal anamorphic process instead uses a horizontally-oriented element to squeeze the width only.".
So it's a bit like using old 'square' film completely and then horizontally stretching it into 2.39:1 or 16:9... rather than using only half the film area...
Aspect Ratios (http://www.doom9.org/index.html?/aspectratios.htm) on Doom9 Guides goes on to say that "When you encode for a PC based format (like DivX) you'll have to first unqueeze the picture and then resize that to your desired resolution (this would correspond to a stream having a 1:1 DAR)." ... since DivX only supports square pixels... and hence the 1024x576...
So far so good...
So I take it AutoMKV will alow me to encode the movie at the Full Resolution of 720x576 and then stretch it out to 1024x576 on playback... is that where the 'Aspect Ratios and Muxing' option comes in... ???
Can I still ask questions... or do I have to read some more... ???
:) :D :eek:
Pascal
vgiozo
24th March 2007, 00:08
Kind of an out of context question, but while I always use the "highquality-slow" profile for H264 encoding, I see great variations in the speed of encoding, ranging from 6fps to 24fps...
How does that measure with you?
That is with movies encoded at 720x* resolution and not that different in the scene-change speed etc, not a big fan of action movies in general...
(on a Amd64 X2 3800+ NF4 939, 1Gb ddr400 /dual channer computer)
Now running at 7.21fps with 5:25 hours to go for the first pass (wish I could give it a nudge)
TheRyuu
24th March 2007, 00:50
Question about a custom matrix.
Using Sharktooth's EQM v2, from what I understand is also EQM AutoGK Sharpmatrix, what will that do to the encode?
I know the best is either None or Auto but I guess I'm just curious.
Shark_jlc
24th March 2007, 06:27
When I load an ifo, what does the audio slider default to?
buzzqw
24th March 2007, 08:26
@delacroixp
Aspect Ratios and Muxing
go to advanced settings and set force muxing ar to 2.35 (only avaiable for mkv or mp4 container)
@weaver4
interesting question...
in x264 you can encode in
1 pass at fixed bitrate
2 pass
1 pass CRF
1 pass QP
so... you want unlimited size, it's is ok... but what profile ?
you can set disk settings to 10000 (yes 10gb) and automkv will compute bitrate (for 1 pass/2 pass)
or in advanced setting set the bitrate (1pass/2pass profile again)
make your choice
@vgiozo
keep me informed (about audio)
highquality-slow
seriusly, try the main profile and look at difference with slow... and take also note of speed...
for me the slow/er profile is to use only to squiz the last bit
@wizboy11
sharp matrix is to be used with high bitrate encoding, when no frames must be "bad".
Using a sharp/low matrix when bitrate isn't adeguate (to low/to high) will cause only more artifact
@Shark_jlc
i don't have understud...
you mean audio track language (and is set to first found) or audio bitrate ?
BHH
delacroixp
24th March 2007, 08:51
Has anyone encoded from Sony Superbit DVD's (http://www.sonypictures.com/cthe/superbit/what_is_superbit.html) ???
Apparently (http://www.hifi-writer.com/he/superbit/superbit.htm) they use the same resolution (Dimensions) of regular DVD's but boost the bitrate by sometimes 100%... which gives a better quality movie... something like encoding movies @ Q18 rather than Q22...
Also, audio is improved with the (probably) better DTS sound format.
It should encode beautifully with H264... especially for those guys/girls who can't get hold of HD and 1080HD material.
:) :D :eek:
Pascal
delacroixp
24th March 2007, 09:39
@delacroixp
go to advanced settings and set force muxing ar to 2.35 (only avaiable for mkv or mp4 container)
@weaver4
interesting question...
in x264 you can encode in
1 pass at fixed bitrate
2 pass
1 pass CRF
1 pass QP
Works beautifully though I will only C the results in 5 hours... 6 fps with 105,000 frames to go is a bit rough... (perhaps I should experiment with 1 chapter ??).
What is the best Filter to use for "Original" (In my case BoB, a war drama/documentary)... I'm trying MipSmooth(preset=MovieHQ2).
Perhaps AutoMKV could default to a recommended Filter for the "Original" setting.
I noticed "AutoCrop Only" insists on using a Resize Filter... I guess it's impossible to crop in such a way that AR is maintained and Risizing is un-necessary without killing the movie...
A 4:3 movie with black space (Top=2 and Bottom=2) would then be cropped (Left=4 Right=4 Top=2 and Bottom=4)... a bit cumbersome I suppose.
Would (can) H264 still support "Original" with, let's say, 2 lines cropped... without resizing and playing back with the correct AR ???
=> weaver4
I think he encodes into Xvid though I suppose the Profiles are generally the same...
:) :D :eek:
Pascal
buzzqw
24th March 2007, 09:53
Works beautifully though I will only C the results in 5 hours... (perhaps I should experiment with 1 chapter ??
better with some sample (100 mb...)
What is the best Filter to use for "Original"
Don't ask what is best, as forums rules
every film has its filter, removegrain(mode=2), DeGrainMedian(limitY=5,limitUV=5,mode=3), Convolution3d (preset="movieHQ") and MipSmooth(preset=MovieHQ2) are all very good general pourpose denoise , but only testing will lead you to "perfect filter" for THIS movie
I noticed "AutoCrop Only" insists on using a Resize Filter... I guess it's impossible to crop in such a way that AR is maintained and Risizing is un-necessary without killing the movie...
EXACTLY :) if you want to maintain the AR you need to resize
Would (can) H264 still support "Original" with, let's say, 2 lines cropped... without resizing and playing back with the correct AR ???
this isn't a feature of codec but of container. play with your file and mmg.exe and study the command line. Awesome result could be obtained with correct mkvmerge options
BHH
delacroixp
24th March 2007, 10:31
I discoverd an interesting article on CRF vs QP (http://handbrake.m0k.org/forum/viewtopic.php?p=1607) quantizer encoding.
Posted by jbrjake on Handbrake Forum (Fri, Feb 16 2007)
When you use a constant QP (the default), you compress every frame the same amount, regardless of the content.
When you use a constant rate factor, it varies the QP slightly. When a scene has a lot of action and motion, it will raise the QP (compressing more). This is because your eye will be distracted by everything going on, and won't have time to see the heavier compression. When a frame doesn't have a lot of motion, it will lower the QP, compressing it less. This is because your eye will have more time to look at the image, so you want it to be as much like the source as possible.
If you were a computer, you would look at a CRF encoding and say it was lower quality than the CQP copy. And it would be. But if you're a human being, subjectively, the CRF copy will look better. It least compresses the parts you see the most, and most compresses the parts you see the least.
I hope that's clear. I plan to have a Wiki page about CRF eventually, but I haven't had a chance to put one together yet.
Personally, I always use CRF for single-pass encodes and can think of no reason to ever use CQP.
What do you think ???
The Thread went further on to say that
Posted by jbrjake on Handbrake Forum (Sat Feb 17, 2007 6:50 pm)
If you seriously desire high quality output and you're patient, you can do a 1-pass CRF encode with a high quality level (65-75%), figure out what the bitrate is on it, and then do a 2-pass encode with that as the average bitrate.
See, when you do a CRF or CQP encode, you have no control over the output's size/bitrate. All you control is how heavily compressed each frame is. Once you know the bitrate you need to reach a certain quality level (compression rate factor), a 2-pass in ABR mode set to that bitrate will pack in even more quality.
How wierd is that... I always thought (certainly with QP) that 1-pass CQ gives the best quality for that filesize (all else being equal)... but now a 2-pass can actually increase the quality even further... !!!
Is this for real or what ?
:) :D :eek:
Pascal
delacroixp
24th March 2007, 10:42
Don't ask what is best... every film has its filter but only testing will lead you to "perfect filter" for THIS movie
:search: :readfaq: :search:
Would (can) H264 still support "Original" with, let's say, 2 lines cropped... without resizing and playing back with the correct AR ???
this isn't a feature of codec but of container. play with your file and mmg.exe and study the command line. Awesome result could be obtained with correct mkvmerge options
Magic... MKV rocks !!!
:) :D :eek:
Pascal
Shark_jlc
24th March 2007, 15:52
@delacroixp
@Shark_jlc
i don't have understud...
you mean audio track language (and is set to first found) or audio bitrate ?
BHH
the LowQual <> HiQual audio bitrate slider. What does it default to when an IFO is loaded?
weaver4
24th March 2007, 16:43
I was talking about the iPod profiles, it does not make sense to me that they are tied to filesize. These devices have a hard drive and the new Apple-TV has a harddrive. They should be like the ConstantQuality-CRF profile where you set the quality and tell it to encode. But if you use the ConstantQuality-CRF profile as it is the content will not play on the ipod or apple tv.
If you set the filesize to 10G and just let the coder figure it out you have no control over filesize/quality.
buzzqw
24th March 2007, 17:04
@Shark_jlc
the LowQual <> HiQual audio bitrate slider. What does it default to when an IFO is loaded?
you can copy the audio source, and so it's true the audio bitrate slider isn't needed, but you can encode the audio track to XXX and so the bitrate is needed again... (but maybe i don't understud well...)
@weaver4
the ipod profile's are 2 pass profile and so it is NOT possible to encode PER QUALITY
or you do a 2 pass encode or you do a 1 pass quality/bitrate encoding
more: the ipod profile aren't compatible with ipod... because of picky player inside... the mp4mux doesn't support the type of muxing needed by this player (ipod)
for compatibility you need to use nicmp4box, for muxing
BHH
delacroixp
24th March 2007, 17:57
@delacroixp
go to advanced settings and set force muxing ar to 2.35 (only avaiable for mkv or mp4 container)
@weaver4
interesting question...
@vgiozo
keep me informed (about audio)
@wizboy11
sharp matrix is to be used with high bitrate encoding, when no frames must be "bad".
@Shark_jlc
i don't have understud...
I tried with the first episode of BoB with Q22 and it came out with a staggering 850 MB... awesome Dr DivX Q3 (equivalent) came out at 1.3 GB... I'm really amazed...
However... the AR was still 4:3 (instead of 16:9)... so I tried a short chapter... also 4:3 and the logs dissapeared.
Finally I did another chp and also ticked the Anamorphic Encoding under "Muxing Options" aswell as the 2.35 Force Muxing AR.
The AR is still 4:3 though I can happily play the clip in Zoom Player by setting the 16:9 Aspect Ratio with perfect results... Media Player Classic and WMPlayer are unable to playback in 16:9...
Included Logs follow:
BoB 02 Chp 2.ini
; AutoMKV parameters
[AutoMKV]
DVD Drive = NONE
Input File = H:\Movies\To Be Encoded\Band of Brothers\BoB 02 - Chapter 2\BoB 02 - Chp 02.VOB
Input Folder = H:\Movies\To Be Encoded\Band of Brothers\BoB 02 - Chapter 2\
Output Folder = F:\Movies\Encodes\
Container = MKV
Movie Name = BoB 02 - Chp 02
Size = 1 CD
Slice = 1
Resizer = 12
Width = Original
Set encoding mode = X264
Audio Track 1 = NONE
Audio Codec 1 = Nero AAC
Audio Bit 1 = 7
Audio Bitrate 1 = 0.35
Audio Channel 1 = Stereo
Audio Track 2 = NONE
Audio Codec 2 = Nero AAC
Audio Bit 2 = 7
Audio Bitrate 2 = 0.35
Audio Channel 2 = Stereo
Sub Track 1 = NONE
Sub Track 2 = NONE
Encoding Profiles = _Pascals - 22 - CQ - CRF.xml
Hit Media/Go Unlimited = Selected Unlimited media size
Use CRF/CQ for AutoResize = 0
CRF/CQ Value = 22
Bitrate Encoding = 0
Bitrate Value = 700
Quality Encoding = 0
Quality Value = 75
Delete temporary files = 0
Encrust/Burn Subtitles = 0
Enable Shutdown = 0
Process this IFO = 0
Process this PGC = 0
PGC to Process = -1
Force ITU Resizing = 0
Anamorphic Encoding = 1
Filter = MipSmooth(preset = "MovieHQ2")
Enable Last Line AVS Script = 0
Last Line AVS Script =
Deinterlacer = AUTO
Field Order = AUTO
Language = eng
Use ProjectX for TS files = 0
Use custom X.ini = 0
Use DelayCut = 1
HQ Deinterlacer = 0
Matrix = NONE
Force PAR in XviD = NONE
Use DirectShowSource for Video = 0
Use DirectShowSource for Audio = 0
Enable Manual Crop And Resize = 0
Crop Top =
Crop Left =
Crop Bottom =
Crop Right =
Manual Width =
Manual Height =
Audio Track Name 1 =
Movie Title Name =
Audio Track Desc 1 =
Nero Profiles 1 = AUTO
Nero Encoding Mode 1 = Quality
CCT Profiles 1 = AUTO
Channel Options 1 = AUTO
MP3 Settings 1 = ABR
Windows Media Audio = AUTO
Windows Media Channel = AUTO
Normalize Audio 1 = 1
Frequency 1 = AUTO
Tempo 1 = NONE
Pitch 1 = NONE
OtherADD 1 =
Audio Track Name 2 =
Audio Track Desc 2 =
Nero Profiles 2 = AUTO
Nero Encoding Mode 2 = Quality
CCT Profiles 2 = AUTO
Channel Options 2 = AUTO
MP3 Settings 2 = ABR
Normalize Audio 2 = 1
Frequency 2 = AUTO
Tempo 2 = NONE
Pitch 2 = NONE
OtherADD 2 =
AutoMKV Log
17:01:32 0.79 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
17:01:32 Selected Input file: H:\Movies\To Be Encoded\Band of Brothers\BoB 02 - Chapter 2\BoB 02 - Chp 02.VOB
17:01:32 Selected Output dir: F:\Movies\Encodes\temp\
17:01:32 Selected Final Name: BoB 02 - Chp 02
17:01:32 Selected Container type: MKV
17:01:32 Selected Encoder: X264
17:01:32 Selected Size: 1 CD
17:01:32 Selected Slice: 1
17:01:32 Selected Profile: _Pascals - 22 - CQ - CRF.xml
17:01:32 Selected Width: Original
17:01:32 Selected Resizer: NONE
17:01:32 Selected Filters: MipSmooth(preset = "MovieHQ2")
17:01:32 Selected Deinterlacer: AUTO
17:01:32 Selected Field Order: AUTO
17:01:32 Enabled CRF/CQ AutoRes at 22 value
17:01:32 Track Language 1: NONE
17:01:32 Audio Codec 1: Nero AAC
17:01:32 Audio Quality 1: 0.35
17:01:32 Audio Channel 1: Stereo
17:01:32 Advanced Audio Settings DUMP Track 1
17:01:32 Nero Option Profiles: AUTO --- Encoding Mode: Quality
17:01:32 CCT Option Profiles: AUTO --- Channel Options: AUTO
17:01:32 Lame Settings: ABR
17:01:32 Audio Normalization: 1
17:01:32 Frequency: AUTO --- Tempo : NONE
17:01:32 Pitch: NONE --- Other Add :
17:01:32 Advanced Audio Settings DUMP Track 2
17:01:32 Nero Option Profiles: AUTO --- Encoding Mode: Quality
17:01:32 CCT Option Profiles: AUTO --- Channel Options: AUTO
17:01:32 Lame Settings: ABR
17:01:32 Audio Normalization: 1
17:01:32 Frequency: AUTO --- Tempo : NONE
17:01:32 Pitch: NONE --- Other Add :
17:01:32 Activate Anamorphic Encoding
17:01:32 Selected Unlimited media size
17:01:32 Dgindex CMD: F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\dgindex\dgindex.exe -FO=0
-OM=0 -YR=2 -If=[H:\Movies\To Be Encoded\Band of Brothers\BoB 02 - Chapter 2\BoB 02 - Chp 02.VOB]
-OF=[F:\Movies\Encodes\temp\movie] -exit -minimize
17:01:37 Starting fixing audio delay on track number 0
17:01:37 Finished fixing audio delay
17:01:42 Number of Frames: 10498
17:01:42 Framerate: 25.000000
17:01:42 Movie length in Seconds: 420
17:01:42 Movie Width: 720
17:01:42 Movie Height: 576
17:02:29 Processing completed. Type is determined to be progressive.
17:02:29 Order: unk
17:02:29 Starting X264
17:02:29 CRF encoding X264: F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\encoder\x264.exe --pass 1
--crf 22 --stats "F:\Movies\Encodes\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 "F:\Movies\Encodes\temp\movie.mp4" "F:\Movies\Encodes\temp\movie.avs"
17:33:29 Accepted values are between 697303040 and 741343232 bytes (movie+audio)
17:33:29 Got a file of size: 60914510 bytes + audio size -2 bytes (60914508)
17:33:29 "F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\matroska\mkvmerge.exe" -o "F:\Movies\Encodes\temp
\BoB 02 - Chp 02.mkv" --track-name -1:"BoB 02 - Chp 02" --aspect-ratio 1:2.35 Movies\Encodes\temp\movie.mp4"
--title "Done with AutoMKV 0.79 http://forum.doom9.org/showthread.php?p=854221 "
17:33:31 Final Muxed size: 60973777 bytes
17:33:31 Encoding finished: 00:31:59 elapsed time
17:33:31 -----------------------------------------------------------------------
17:33:31 Script AutoCrop.log
17:33:31
17:33:31 Crop(0,4,720,568)
17:33:31 -----------------------------------------------------------------------
17:33:31 Script Resmovie.avs
17:33:31 -----------------------------------------------------------------------
17:33:31 Script movie.avs
17:33:31
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\autocrop.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\BicublinResize.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\blockbuster.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\cnr2.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\ColorMatrix.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\Convolution3D.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\corrector.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\DctFilter.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\Decomb.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\Deen.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\degrainmedian.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\DGDecode.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\EEDI2.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\fft3dfilter.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\FluxSmooth.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\frfun7.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\hqdn3d.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\LeakKernelDeint.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\MaskTools.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\medianblur.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\MipSmooth.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\mt_masktools.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\mvtools.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\NicAudio.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\RemoveGrain.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\Repair.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\SangNom.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\SimpleResize.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\SoundOut.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\TBilateral.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\TDeint.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\TIVTC.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\TomsMoComp.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\TTempSmooth.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\UnDot.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\UnFilter.dll")
17:33:31 LoadPlugin("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\VSFilter.dll")
17:33:31 #loadpluginstart
17:33:31
17:33:31 #test1
17:33:31
17:33:31 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\MCBob_v03c.avsi")
17:33:31 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\mvbob.avsi")
17:33:31 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\seesaw.avsi")
17:33:31 Import("F:\Movies\_DIVX Program Files\Associate Progs\AutoMKV\AutoMKV 079a\exe\filter\spresso.avsi")
17:33:31 #importstart
17:33:31
17:33:31 #test2
17:33:31
17:33:31 movie = mpeg2source("F:\Movies\Encodes\temp\movie.d2v")
17:33:31 function getOrder(clip c) {
17:33:31 order = GetParity(c) ? 1 : 0
17:33:31 Return order }
17:33:31 #filter1start
17:33:31
17:33:31 #test3
17:33:31
17:33:31 #cropstart
17:33:31
17:33:31 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
17:33:31 fixed_aspect = 1
17:33:31 c_width = width(cropclip)
17:33:31 c_height = Round(height(cropclip) / fixed_aspect)
17:33:31 input_par = float(float(c_width)/float(c_height))
17:33:31 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
17:33:31 out_width = 720
17:33:31 out_height = Round(float(out_width) / input_par)
17:33:31 hmod = out_height - (floor(out_height / 16 ) * 16)
17:33:31 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
17:33:31 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
17:33:31 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
17:33:31
17:33:31 last = movie
17:33:31 #resizestart
17:33:31
17:33:31 #test4
17:33:31
17:33:31 #filter2start
17:33:31
17:33:31 #test5
17:33:31
17:33:31 MipSmooth(preset = "MovieHQ2")
17:33:31 ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
17:33:31 -----------------------------------------------------------------------
17:33:31 Script mkvmaudio.avs
17:33:31 -----------------------------------------------------------------------
17:33:31 Script mkvmaudio.bat
17:33:31 -----------------------------------------------------------------------
17:33:31 Script mkvmaudio2.avs
17:33:31 -----------------------------------------------------------------------
17:33:31 Script mkvmaudio2.bat
17:33:31
17:33:31 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
Sorry about all the baby-sitting...
:) :D :eek:
Pascal
vgiozo
24th March 2007, 17:58
@vgiozo
one more test
copy aacgain from \exe\besweet folder to temp folder
from dos box run "aacgain.exe audio.mp4" (without quotes)
what is the message ?
and post your mkvmaudio.avs
thanks ! :)
BHH
Ok, the newly encoded movie in which downmixing from 6 to 2ch was applied, presented equally low volume...
I did what you said above and this is what followed (jpg image)
http://img518.imageshack.us/img518/8274/aacgainja1.th.jpg (http://img518.imageshack.us/my.php?image=aacgainja1.jpg)
or
http://img518.imageshack.us/img518/8274/aacgainja1.jpg (http://imageshack.us)
And here is the mkvaudio.avs
http://d.turboupload.com/d/1642232/mkvmaudio.avs.html
delacroixp
24th March 2007, 18:18
I finally encoded the entire Band of Brothers series @ Q23 (640x360) onto 1 DVD with 1 MB to spare... and this from a series that is originally 34 GB and 12 hours long...
This is truly a testament, not only to the power of H264, the simplicity and versatility of AutoMKV, and the sheer genius of Buzzqw... but also the absolute potential of the Constant Quality CRF profile...
See pic pending
:thanks:
:) :D :eek:
Pascal
The Docs include .mht web pages and the InMatrix Zoom Player which is especially usefull in updating or downloading all the necessary codecs... even if they prefer to use another player later...
buzzqw
24th March 2007, 18:30
@delacroixp
open the movie.d2v with a text editor, search fro Aspect_Ratio= xxx
what is written ?
@vgiozo
got the error !! is due to SPACE in your installation folder
you have installed automkv in "C:\Program Files\AutoMKV079a" but the space between program AND files do not permit aacgain to work
First of all thanks for this bug !
Second, fixed in next release
Third, movie automkv079a folder to c:\apps\automkv079a or something similar
Fourth: ok, now that you have normalized the audio click on muxing.bat for re-mux
thanks again!
BHH
vgiozo
24th March 2007, 18:35
Great, thank you very much...
delacroixp
24th March 2007, 18:43
open the movie.d2v with a text editor, search fro Aspect_Ratio= xxx
what is written ?
I've just started a chkdsk on the beast... on all the drives (2 RAID 1 standard)... so I wont have access for quite awhile.
How do I get rid of Multi-Quote... I clicked it in error (I don't even know what it is) and now every "quote" is the same...
Please help !!!
:thanks:
:) :D :eek:
Pascal
RipcordAFF
24th March 2007, 19:13
buzzqw-- Where is this movie.avs file? And what exactly is virtualdub? Im kinda new at all this, but this is the same error that i used to have under xp when i had to update those dlls......Im kinda stuck :( I cannot find those files you mentioned, but if you tell me, id be glad to post anythign i find
So Buzz, I am still having no luck fixing this problem. Its the same problem as I had w\ my first install which I fixed by updating some dlls, but now its doing it w\ the new version under vista..... Please let me know if you have any ideas. thanks!
delacroixp
24th March 2007, 19:45
DGIndexProjectFile15
1
H:\Movies\To Be Encoded\Band of Brothers\BoB 02 - Chapter 2\BoB 02 - Chp 02.VOB
Stream_Type=1
MPEG_Type=2
iDCT_Algorithm=6
YUVRGB_Scale=0
Luminance_Filter=0,0
Clipping=0,0,0,0
Aspect_Ratio=16:9
Picture_Size=720x576
Field_Operation=0
Frame_Rate=25000 (25/1)
Location=0,0,0,25373
After this it's just serious hex and stuff...
:) :D :eek:
Pascal
weaver4
24th March 2007, 20:01
more: the ipod profile aren't compatible with ipod... because of picky player inside... the mp4mux doesn't support the type of muxing needed by this player (ipod)
for compatibility you need to use nicmp4box, for muxing
Well if I can't use AutoMKV for the iPod I won't buy an iPod. If the iPod profile does not work for the iPod does the Zune profile work for the Zune?
delacroixp
24th March 2007, 20:06
You can download VirtualDub here (http://virtualdub.sourceforge.net/) ... look for v1.6.17 (stable)
VD is one of the oldest video encoder/manipulator come jack of all trades apps ... written by a varsity student... how kewl is that.
You can find movie.avs in your 'temp' Encoding Output folder... check it out....
Enjoy !!!
:) :D :eek:
Pascal
buzzqw
24th March 2007, 20:07
@delacroixp
this value is not normal Crop(0,4,720,568)
for a 16:9 film the crop should more , a lot more
i think that this film is 4/3, and then squeezed to 16/9
i can suggest to ask help on general forum
@RipcordAFF
virtualdub: www.virtualdub.org
the movie.avs is in temp folder created by encoding
try this open mediaplayer classic and load the movie.avs, if it is ok you will see your movie and (if wmv encoding) hear audio, if not ok you will see a huge red line. Take note of this error (if present)
moreover the next full update will got the new wmcmd.vbs, that is more stable
@weaver4
yes, zune is ok, ask dlflannery (my main Zune tester)
BHH
delacroixp
24th March 2007, 20:16
Well if I can't use AutoMKV for the iPod I won't buy an iPod. If the iPod profile does not work for the iPod does the Zune profile work for the Zune?
I tried to create a 320x240 and 320x180 MP4 clip for my nephews new Nokia cellphone... the audio is fine but no movie...
Havn't tried anything for the MS Zune.
:) :D :eek:
Pascal
BTW
How do I de-activate the double-quote icon (bottom left on every post)... it's orange on one of my posts and everytime I quote... the same stuff is quoted...
delacroixp
24th March 2007, 20:23
Sorted... quoting is back to normal... my problem-solving skills are a bit limited...
:thanks:
:) :D :eek:
Pascal
I almost thought I was grounded for life and would have to move to a new forum... like DGIndex... heaven forbid...
delacroixp
24th March 2007, 20:31
@delacroixp
this value is not normal
for a 16:9 film the crop should more , a lot more
i think that this film is 4/3, and then squeezed to 16/9
i can suggest to ask help on general forum
@weaver4
yes, zune is ok, ask dlflannery (my main Zune tester)
np... you have already helped me more than my fair share on this forum to get things working perfectly... my posts are positively drowning out everyone else...
People are soon going to start thinking this is my forum... heaven forbid... a good time to chill...
Band of Brothers was meant to be a TV series... the most expensive ever @ $125 million so that may have something to do with the 4:3...
:) :D :eek:
Pascal
RipcordAFF
24th March 2007, 21:18
@delacroixp
@RipcordAFF
virtualdub: www.virtualdub.org
the movie.avs is in temp folder created by encoding
try this open mediaplayer classic and load the movie.avs, if it is ok you will see your movie and (if wmv encoding) hear audio, if not ok you will see a huge red line. Take note of this error (if present)
moreover the next full update will got the new wmcmd.vbs, that is more stable
BHH
Hey Buzz, I tried to open movie.avs w\ virtual dub, here is the error:
"Avisynth open failure:Loadplugin: unable to load "C:\users\reed\desktop\utilities\dvd stuff\automkv\exe\filter\removegrain.dll"
(F:\dvd rips\lost\e12\temp\movie.avs, line 25)
And ideas? Thanks man
Shark_jlc
24th March 2007, 22:06
@Shark_jlc
you can copy the audio source, and so it's true the audio bitrate slider isn't needed, but you can encode the audio track to XXX and so the bitrate is needed again... (but maybe i don't understud well...)
...
BHH
Let me try again. I set the audio bitrate slider to 128 kbps and save my settings. However, last night I opened AutoMKV, browsed to an IFO, and when the file was loaded by AutoMKV the audio slider changed to 64 Kbps.
So, I was wondering why the slider changed, is 64 the audio bitrate of the ifo/vob file that loaded? Or is it a bug?
Thanks buzzqw.
vgiozo
24th March 2007, 22:11
@buzzqw
The problem has not been fixed...I still get low volume, even though I changed the program path of AutoMKV, so that it does not contain any spaces...(c:\Apps)
What else could be at fault here?
buzzqw
24th March 2007, 22:43
@RipcordAFF
download this
http://home.arcor.de/kassandro/RemoveGrain/RemoveGrain.rar
delete from \exe\filter the RemoveGrain.dll and put into \exe\filter the RemoveGrainS.dll from this rar file
raname RemoveGrainS.dll to RemoveGrain.dll !
@Shark_jlc
must be a bug.. i will check!
@vgiozo
.... ... ... again copy aacgain.exe into this temp folder and from dos launch aacgain.exe audio.mp4
what is the message ? thanks again !
BHH
vgiozo
24th March 2007, 22:57
@buzzqw
The message is exactly the same as the one before...
TheRyuu
25th March 2007, 00:17
@RipcordAFF
download this
http://home.arcor.de/kassandro/RemoveGrain/RemoveGrain.rar
delete from \exe\filter the RemoveGrain.dll and put into \exe\filter the RemoveGrainS.dll from this rar file
raname RemoveGrainS.dll to RemoveGrain.dll
BHH
I know this doesn't really concern me but why rename it?
It shouldn't matter whether it says Removegrain.dll/Removegrainsse3.dll or w/e it may be.
I thought that, from what I've heard, get used either way.
Edit:
I put Removegrainsse3.dll in the filter folder, deleted the old one and it still worked AFAIK.
Shark_jlc
25th March 2007, 00:45
@RipcordAFF
@Shark_jlc
must be a bug.. i will check!
BHH
Actually, open AutoMKV, change the audio slider to 128, save settings, close AutoMKV.
Re-open AuMKV and the audio slider is at 64.
dlflannery
25th March 2007, 04:02
Encoding a .flv file to .wmv (Zune 1 pass quick profile).
The input is an AVS script:
global video=directShowSource("C:\Video\xmas_lights.flv", audio=false, fps=29.97)
global audio=directShowSource("C:\Video\xmas_lights.flv", video=false, fps=29.97)
audio=DelayAudio(audio, -1.0)
audiodub(video, audio)
Note that the "global" declarations make no difference in the problem to be reported here.
The movie.avs file is:
Import("C:\Video\xmas_lights.avs"), which is just importing my input AVS script. It plays OK in Media Player Classic.
The WME encoder script crashes with an error number after correctly determining the length. Can't read the error number -- it disappears too fast.
The very strange thing is: if I run the movie_wmv.bat file created in the temp folder, it encodes OK!
I can also use this AVS input to get a successful encoding using my own batch files that I had created before I started using AutoMKV.
I've tried this with another AVS source file that I had used before and it doesn't have this problem. :confused: It appears that when AutoMKV runs movie_wmv.bat it causes an error that doesn't happen if the batch file is run outside of AutoMKV. :confused:
Tobytl
25th March 2007, 07:56
Hello all, first of all I would just like to say thanks for this great utility, all the work really is appreciated.
That said, I think I may have come across a slightly obscure bug with AutoMKV (or maybe autocrop). There seems to be a slight incompatibility between deinterlacing (or processing film) and autocrop on some occasions. On a few 4:3 movies I have tested there are serious chroma aberrations that seem to stem from autocrop cropping on mod2 offsets instead of mod4 (though the height is mod4). eg: Crop(8,2,708,476).
Bad:6991
Now if I move the tfm().tdecimate() line above all the autocrop stuff (accommodating the movie variable of course) or manually crop on a mod4 offset this doesn't happen. eg: Crop(8,4,708,476)
Good:6992
The easy fix would be to deinterlace before autocropping, or for the end user to manually enter mod4 offsets (easy for me, almost no cropping is needed). The more elegant fix lies somewhere in autocrop.dll though I'm afraid. It's not supposed to pick non mod4 offsets in yv12 ever, but it apparently does sometimes.
If this has all been discussed before, I am very sorry, I just noticed it when watching my futurama rips on my htpc.
buzzqw
25th March 2007, 10:06
@vgiozo and ALL
i will solve this problem drastically.
In next update i will reintroduce Normalize() in audio script.
On my pc (p4 2.8 1gb ram) the analysis last 10 minutes before start encoding (on Matrix film), for me is ok.
@wizboy11
you are perfecly right. AutoMKV will load the dll in \exe\filter
@Shark_jlc
on my side is correct... (but maybe i had already fixed it..)
@dlflannery
In next update i will use the new wmcmd.vbs, a lot more reliable, this will solve the "big number" error
@Tobytl
in this rare cause i suggest to use the manual crop and resize in advanced settings
BHH
delacroixp
25th March 2007, 12:05
@delacroixp
this value is not normal
for a 16:9 film the crop should more , a lot more
i think that this film is 4/3, and then squeezed to 16/9
i can suggest to ask help on general forum
@RipcordAFF
virtualdub: www.virtualdub.org
@weaver4
yes, zune is ok, ask dlflannery (my main Zune tester)
Assuming I have an Mpeg-2, 4:3 AR movie @ 720x576...
Is there some way I can tweek the MKV container into muxing the file @ 16:9 DAR... ???
I know that most players would support a 16:9 playback anyway... but an automatically correct playback would be perfect !!!
I love the idea of encoding @ 720x576 and then stretching... rather than stretching to 1024x576 first and then encoding with the huge and unnecessary increase in filesize.
:thanks:
:) :D :eek:
Pascal
BTW
I have posted on MkvToolnix (http://forum.doom9.org/showpost.php?p=975103&postcount=246) (see link).
buzzqw
25th March 2007, 14:04
@delacroixp
download this sample (3mb) http://www.64k.it/andres/data/a/2-35.mkv
it is 720*576 but it will play at 1024*576
if not must be something not setted in your player/decoder
BHH
P.S. i play it with mediaplayer classic + ffdshow_beta2_20070319_clsid.exe + MatroskaSplitter07032007.exe
dlflannery
25th March 2007, 14:51
.......
@dlflannery
In next update i will use the new wmcmd.vbs, a lot more reliable, this will solve the "big number" error
........BHH
I downloaded the latest wmcmd.vbs (3/22/2007) and substituted for the version in 0.79a. It made no difference in the problem.
Did you understand that the movie_wmv.bat (created by AutoMKV) runs OK when launched outside AutoMKV but the exact same batch file has an error when launched by AutoMKV ? One possibility to explain this is that AutoMKV is prematurely terminating the process running the wmcmd.vbs (?). I get .wmv files of varying lengths each time I run this encode in AutoMKV.
delacroixp
25th March 2007, 14:52
@delacroixp
download this sample (3mb) 20th Century Fox Intro (http://www.64k.it/andres/data/a/2-35.mkv)
it is 720*576 but it will play at 1024*576
if not must be something not setted in your player/decoder
Plays beautifully...
Perhaps your Anamorphic Muxing options in AutoMKV are not working correctly... !!!
P.S. i play it with mediaplayer classic + ffdshow_beta2_20070319_clsid.exe + MatroskaSplitter07032007.exe
buzzqw You're totally wasting your time with me... all this stuff is like seriously Greek to me...
:) :D :eek:
Pascal
btw
The clip starts up in 16:9 (is this correct ?).
***NOTE***
I think there's something wrong with Zoom Player... if I set the AR to Derived (recommended)... BoB produces a 4:3 DAR while Fox has a DAR between 4:3 and 16:9.
With MediaPlayer Classic (v 6.4) set to Keep Aspect Ratio... BoB and Fox play automatically @ 16:9...
How wierd is that !!!
btw2
When encoding BoB on Original do I 'tick' Anamorphic aswell as change "Force Muxing AR" (default is Automatic) ?
Actually both those Muxing boxes could be included into 1 box.
buzzqw
25th March 2007, 15:06
@dlflannery
One possibility to explain this is that AutoMKV is prematurely terminating the process running the wmcmd.vbs
no, isn't this problem. AutoMKV will wait always for end of process.
i seriusly don't know what is happen on your side.
i don't want that something get hooked (directshowsource ould be very picky and nasty..) reboot ?
@delacroixp
this file is MADE WITH AUTOMKV... you will see it when playing with mediaplayer classic... i just set the force mux to 2.35
The clip starts up in 16:9 (is this correct ?).
yes is correct since the sample IS 16/9 but signed in MKV to play at 2.35
BHH
SeeMoreDigital
25th March 2007, 15:30
Hi Buzz,
There does appear to be something "hinky" regarding your "2-35 MKV" sample!
Upon playback in MPC the image appears to be displayed at something like 3.12:1, instead of 2.35:1.
EDIT: This is what I see: -
http://img255.imageshack.us/img255/808/whatiseeux5.th.jpg (http://img255.imageshack.us/my.php?image=whatiseeux5.jpg)
Plus, I'm unable to de-mux the AVC stream out of the MKV container and re-mux it into the MP4 container :confused:
buzzqw
25th March 2007, 15:44
@SeeMoreDigital
:confused: i just passed --aspect-ratio 1:2.35 to mkvmerge...
donwload this http://www.64k.it/andres/data/a/2.35.rar (2.15 mb)
contain: log, script avs, mp4 generated by x264, muxing instruction and encoding instruction
where is the glitch ?
BHH
SeeMoreDigital
25th March 2007, 17:01
I've just added a screen-shot (to my previous post) of what I see when playing your 2-35.MKV source in MPC with Haali's Matroska filter...
With regard to de-muxing....
Normally I'm able to use AVI-Mux_GUI to de-mux the AVC stream out of the MKV container (to a .RAW stream - which in reality is an elementary .H264 stream). Then I use YAMB/MP4Box to mux the .H264 stream into .MP4
Cheers mate
dlflannery
25th March 2007, 17:18
@dlflannery
no, isn't this problem. AutoMKV will wait always for end of process.
i seriusly don't know what is happen on your side.
i don't want that something get hooked (directshowsource ould be very picky and nasty..) reboot ?
......BHH
Apparently this is a case of directShowSource being "very picky and nasty".
I changed the input AVS from:
video=directShowSource("C:\Video\xmas_lights.flv", audio=false, fps=29.97)
audio=directShowSource("C:\Video\xmas_lights.flv", video=false, fps=29.97)
audio=DelayAudio(audio, -1.0)
audiodub(video, audio)
to:
directShowSource("C:\Video\xmas_lights.flv", fps=29.97)
delayAudio(-1.0)
and it encoded OK!
I can only guess that running the movie_wmv.bat from AutoMKV provides a different Windows environment than when you run it outside AutoMKV, and this triggers the quirks of DirectShowSource or DirectX or ..?
RipcordAFF
25th March 2007, 17:59
@RipcordAFF
download this
http://home.arcor.de/kassandro/RemoveGrain/RemoveGrain.rar
delete from \exe\filter the RemoveGrain.dll and put into \exe\filter the RemoveGrainS.dll from this rar file
raname RemoveGrainS.dll to RemoveGrain.dll !
BHH
Hey Buzz, I did that, copied that into my my filter folder, and same result, just goes from let's encode (flashes up) and straight to saving log. Just a little 50k or so, wmv file as a result..what is going on!? :confused:
buzzqw
25th March 2007, 18:41
@dlflannery
... it ain't broke, why fix it?
i don't know what happen inside directx/directshowsource... sorry
my knowledge is limited in this area :eek:
@RipcordAFF
open the movie.avs in virtualdub again, and look at the error...
if not present is audio...
BHH
RipcordAFF
25th March 2007, 18:51
...
@RipcordAFF
open the movie.avs in virtualdub again, and look at the error...
if not present is audio...
BHH
Actually Buzz, it seems to work under virtualdub. When I open the 5k movie.avs file, it plays, i cannot seek or scan through the file, but it plays the whole length I think (I watched about one minute, certainly more than 5k would be). No errors w\ movie.avs in virtual dub
If it matters, Im trying to encode this into wmv
buzzqw
25th March 2007, 19:03
@RipcordAFF
so it is audio...
post movie.avs (trim all first part with all load plugin), and post also movie_wmv.bat
BHH
RipcordAFF
25th March 2007, 19:08
@RipcordAFF
so it is audio...
post movie.avs (trim all first part with all load plugin), and post also movie_wmv.bat
BHH
Here they are, i think this is what you wanted
buzzqw
25th March 2007, 19:09
delete the attacment and paste here the script or mail me at my mail address (license.txt)
BHH
RipcordAFF
25th March 2007, 19:17
Im not sure how to post scripts here, but i will email you the attachment if you pm me your email address
buzzqw
25th March 2007, 19:22
at my mail address (license.txt)
open license.txt, my mail is written here
BHH
Tobytl
26th March 2007, 00:38
Sorry to bother you guys again, but I ran into another problem when I set the Futurama batch to run while I slept. It appears that if you manually set the crop, you don't actually get film decimation (maybe no deinterlacing at all, but haven't tested other methods). It produces this bit of script:
...
last = movie
tfm(d2v="E:\DVD\Futurama\301\temp\movie.d2v").tdecimate()
crop(movie,8,0,-8,-0)
#resizestart
#test4
LanczosResize(704,528)
...
As you can see, it sets the movie variable (the mpeg2source data) to the default variable. Does the film processing/decimating on that default variable (last). Then just crops the original, non film processed/decimated movie variable, and returns it. So the end result is still interlaced (telecined).
nx6
26th March 2007, 01:38
P.S. i play it with mediaplayer classic + ffdshow_beta2_20070319_clsid.exe + MatroskaSplitter07032007.exe
You're totally wasting your time with me... all this stuff is like seriously Greek to me...
Pascal
You already have Media Player Classic, ffdshow is just a big decoder pack. It also has some adjustment options for picture quality on playback, you can find it here (http://ffdshow.sourceforge.net/tikiwiki/tiki-view_articles.php). I'm not sure where Matroska Splitter is on the web, I got it from installing the Lazy Man's MKV (http://hp.vector.co.jp/authors/VA022257/matroska/) tools.
dalihrp
26th March 2007, 07:12
Hi , I Wonder,
Is AutoMKV full compatible with VISta? I only interested for DVD->WMV.
thanx
buzzqw
26th March 2007, 07:30
@Tobytl
Thanks for this bug !
Fixed in next release
@dalihrp
AutoMKV is compatible with Vista. (i havn't vista but several user reported the compatible)
The next question is WMcmd.vbs compatible with Vista ?
Some user report success, some other not.
The culprit is how wvc1 is installed.
i can only suggest to test
@nx6 and @delacroixp
Haali media splitter http://haali.cs.msu.ru/mkv/
BHH
PlayWithFire
26th March 2007, 16:38
How can i use AutoMKV from a command line?
I want to automatically convert files downloaded with µTorrent to WMV so they can be streamed to my 360.
delacroixp
26th March 2007, 17:25
You already have Media Player Classic, ffdshow is just a big decoder pack. It also has some adjustment options for picture quality on playback, you can find it here (http://ffdshow.sourceforge.net/tikiwiki/tiki-view_articles.php). I'm not sure where Matroska Splitter is on the web, I got it from installing the Lazy Man's MKV (http://hp.vector.co.jp/authors/VA022257/matroska/) tools.
I installed Zoom Player and it automatically updates all necessary codecs to the latest versions... it's pure good luck and good fortune that anything works in my life at all... I'm seriously clueless... things just seam to happen one thing after another... wierd !!!
http://souls-online.net/delacroixp/ZoomPlayerInstallCentral.jpg
:thanks: much
:) :D :eek:
Pascal
delacroixp
26th March 2007, 17:30
How can i use AutoMKV from a command line?
I want to automatically convert files downloaded with µTorrent to WMV so they can be streamed to my 360.
Sounds good !
Just as everyone's looking for a pretty (GUI)face to make the complex more simple and easy to use... there's bound to be someone to reverse the process...
:) :D :eek:
Pascal
delacroixp
26th March 2007, 18:59
Remember that the maximum width of DVD-video is 720px. Therefore, it is impossible to encode at 1024xanything and not have resizing. If you don't resize, where is the encoder going to get the extra pixels from?
Why you asking me...??? For all I know... the extra pixels come from PixieLand !!!
I have a question you can probably answer: Is it possible to encode using Constant Quality-CRF and have the encoder set the quality setting? Like if I set a container size, have the encoder check to see how complex the movie is and then set the quality level to suit the final size? Or am I just describing how regular encoding works now. :D
You're going to have to really tone down your questions a hang of a lot more... this is like "The Weakest Link" stuff... I've got the maturity of a 4 yr old, the IQ to match and I'am also very bad with guessing games... but that sounds pretty much like an HQ 2-pass... where the encoder is judging the necessary quality for the second pass... in a CRF kinda way.
This would, of course, not be possible with ConstantQuality-QP since each Quantizer can only have 1 filesize... so if you choose a filesize in-between 2 Quantizers... you're missing the boat by up to, potentially, 50% (half Qx and half Q(x+1))... meaning, half your movie would have lesser quality than the other half... the ultimate inconsistency.
@buzzqw
IF someone selects "Original" and
IF anamorphic and
IF mkv container
THEN AutoMKV should automatically set the anamorphic muxing
ELSE not 'mkv container' and they'll have to set the DAR manually on the player ???
ELSE not anamorphic... np
ELSE not "original"... np
This should be done automatically by AutoMKV if someone chooses the "Original" Resolution option !!!
:) :D :eek:
Pascal
buzzqw
26th March 2007, 19:21
@PlayWithFire
read the changelog and from dos box write automkv.exe /?
I want to automatically convert files downloaded with µTorrent to WMV so they can be streamed to my 360.
please remember the forum rules, also
Quote:I have a question you can probably answer: Is it possible to encode using Constant Quality-CRF and have the encoder set the quality setting? Like if I set a container size, have the encoder check to see how complex the movie is and then set the quality level to suit the final size? Or am I just describing how regular encoding works now.
automkv will judge the width/height based on quality and disk settings (on autoresize)
one more way if to select crf profile and HIT Media Size, in that case automkv will try to "guess" the crf needed to fit media and if fail will switch to 2 pass encoding (actually just one more pass, since crf encoding is the first pass)
BHH
delacroixp
26th March 2007, 23:57
I'm re-encoding "Band of Brothers (http://en.wikipedia.org/wiki/Band_of_Brothers)" @ full resolution & Q22... it's marginally too big... and I'm on a budget... 2 DVD's...
Well, there are 10 episodes each with the same Intro & Credits...
I'm not one to "torch" the intro's and stuff but perhaps I could slice them all out and keep 1 Intro & Credit... linked into an xml menu... which would then play for each episode.
The episodes are only 1 hour long so that they (the I's & C's) actually add up to a whopping 9% of each episode... which is 900MB over 2 DVD's and which are unnecessary anyway.
It's not as totally straight-forward as that since the intro isn't always completely at the beginning... in half the episodes, the interview starts first.
What can I use to slice up the VOB's since AutoMKV doesn't have that pre-encoding option like Virtual Dub and others... ?
I'm also considering a HQ 2-pass aswell since I'm getting a good idea of the 'proportional' size of each episode with the 1-pass CQ-CRF encodes... and I gather a good 2-pass can even further increase the quality.
:) :D :eek:
Pascal
xmcnuggetx
27th March 2007, 02:12
I have started trying to convert Lost Episodes from my DVDs to a Zune compatible format. I am not concerned much with size or time. I really want the quality to be nice. I am trying to use Zune_1_Pass_Slow or Zune_2_Pass_Slow and both are giving me horizontal lines. I have tried setting deinterlacer to auto and none, both result in the lines. I have attached an image as well as the log.
Shark_jlc
27th March 2007, 05:13
I have a ripped movie that I want to make into a .wmv (which I've done a few of so far) but on this one, AutoMKV finishes with it in 6 minutes. It should take about.... 12 hours.
Any ideas where I should start looking to get this taken care of?
nx6
27th March 2007, 06:36
Argh! I hate it when things just go BOOF for no reason and I'm not here to see it.
12:38:11 0.79 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
12:38:11 Selected Input file: S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\VTS_01_0.IFO
12:38:11 Selected Output dir: S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\
12:38:11 Selected Final Name: RashomonCRF20AAC25
12:38:11 Selected Container type: MKV
12:38:11 Selected Encoder: X264
12:38:11 Selected Size: 1 CD
12:38:11 Selected Slice: 1
12:38:11 Selected Profile: ConstantQuality-CRF.xml
12:38:11 Selected Width: Original
12:38:11 Selected Resizer: NONE
12:38:11 Selected Filters: RemoveGrain(mode=2)
12:38:11 Selected Deinterlacer: AUTO
12:38:11 Selected Field Order: AUTO
12:38:11 Enabled CRF/CQ AutoRes at 18 value
12:38:11 Track Language 1: Japanese (AC3 1ch, 0xBD 0x80) [0]
12:38:11 Audio Codec 1: Nero AAC
12:38:11 Audio Quality 1: 0.25
12:38:11 Audio Channel 1: Stereo
12:38:11 Track Language 2: English (AC3 1ch, 0xBD 0x81) [0]
12:38:11 Audio Codec 2: Nero AAC
12:38:11 Audio Quality 2: 0.25
12:38:11 Audio Chennel 2: Stereo
12:38:11 Advanced Audio Settings DUMP Track 1
12:38:11 Nero Option Profiles: AUTO --- Encoding Mode: Quality
12:38:11 CCT Option Profiles: AUTO --- Channel Options: AUTO
12:38:11 Lame Settings: ABR
12:38:11 Audio Normalization: 1
12:38:11 Frequency: AUTO --- Tempo : NONE
12:38:11 Pitch: NONE --- Other Add :
12:38:11 Advanced Audio Settings DUMP Track 2
12:38:11 Nero Option Profiles: AUTO --- Encoding Mode: Quality
12:38:11 CCT Option Profiles: AUTO --- Channel Options: AUTO
12:38:11 Lame Settings: ABR
12:38:11 Audio Normalization: 1
12:38:11 Frequency: AUTO --- Tempo : NONE
12:38:11 Pitch: NONE --- Other Add :
12:38:11 Selected 1' Sub tracks: English 0 (0xBD 0x20) [0]
12:38:11 Selected Unlimited media size
12:38:11 Starting SubRipping
13:25:49 Subtitle Size: 1468416 bytes
13:25:49 Finished SubRipping
13:25:49 Starting Indexing
13:25:49 Dgindex CMD: S:\AutoMKV079a\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1,2 -YR=2 -AIF=[S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\VTS_01_1.vob] -OF=[S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie] -exit -minimize
14:16:41 Finished indexing
14:16:41 Starting fixing audio delay on track number 1
14:16:41 DelayCut CMD: S:\AutoMKV079a\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed1.ac3" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie T01 1_0ch 192Kbps DELAY 611ms.ac3"
14:17:50 Original 1' Audio Size: 126951936 bytes
14:17:50 DelayCut CMD: S:\AutoMKV079a\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed2.ac3" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie T02 1_0ch 192Kbps DELAY 1ms.ac3"
14:19:04 Original 2' Audio Size: 126951936 bytes
14:19:04 Finished fixing audio delay
14:19:05 Encoding S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed1.ac3 to NeroAAC with 0.25 quality
14:23:30 Applying ReplayGain
14:23:32 Encoded 1' Audio Track: 22419890 bytes
14:23:32 Encoding S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed2.ac3 to NeroAAC with 0.25 quality
14:28:01 Applying ReplayGain
14:28:02 Encoded 2' Audio Track: 22025454 bytes
14:28:03 ForceFilm Detected: 97.400002% FILM found
14:28:42 Number of Frames: 158532
14:28:42 Framerate: 29.970030
14:28:42 Movie length in Seconds: 5290
14:28:42 Movie Width: 720
14:28:42 Movie Height: 480
14:49:28 Processing completed. Type is determined to be partly film.
14:49:28 Processing completed. Type is determined to be partly film.
14:49:28 BFF: 53
14:49:28 TFF: 403
14:49:28 Order: tff
14:49:29 Starting X264
14:49:29 CRF encoding X264: S:\AutoMKV079a\exe\encoder\x264.exe --pass 1 --crf 20/BitrateQuantizer --stats "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\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:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.mp4" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.avs"
14:49:35 Accepted values are between 697303040 and 741343232 bytes (movie+audio)
14:49:35 Got a file of size: -1 bytes + audio size 44453754 bytes (45187960)
14:49:35 "S:\AutoMKV079a\exe\matroska\mkvmerge.exe" -o "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\RashomonCRF20AAC25.mkv" --track-name -1:"RashomonCRF20AAC25" --aspect-ratio 1:1.344538 --chapters "S:\AutoMKV079a\exe\chapters.txt" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.mp4" --language -1:jpn "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\audio.mp4" --language -1:eng "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\audio2.mp4" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\RashomonCRF20AAC25.idx" --title "Done with AutoMKV 0.79 http://forum.doom9.org/showthread.php?p=854221 "
14:49:38 Final Muxed size: -1 bytes
14:49:38 Encoding finished: 02:11:27 elapsed time
14:49:38 -----------------------------------------------------------------------
14:49:38 Script AutoCrop.log
14:49:38
14:49:38 Crop(8,2,708,476)
14:49:38 -----------------------------------------------------------------------
14:49:38 Script Resmovie.avs
14:49:38 -----------------------------------------------------------------------
14:49:38 Script movie.avs
14:49:38
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\autocrop.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\BicublinResize.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\blockbuster.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\cnr2.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\ColorMatrix.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\Convolution3D.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\corrector.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\DctFilter.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\Decomb.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\Deen.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\degrainmedian.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\DGDecode.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\EEDI2.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\fft3dfilter.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\FluxSmooth.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\frfun7.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\hqdn3d.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\LeakKernelDeint.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\MaskTools.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\medianblur.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\MipSmooth.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\mt_masktools.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\mvtools.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\NicAudio.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\RemoveGrain.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\Repair.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\SangNom.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\SimpleResize.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\SoundOut.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\TBilateral.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\TDeint.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\TIVTC.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\TomsMoComp.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\TTempSmooth.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\UnDot.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\UnFilter.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\VSFilter.dll")
14:49:38 #loadpluginstart
14:49:38
14:49:38 #test1
14:49:38
14:49:38 Import("S:\AutoMKV079a\exe\filter\MCBob_v03c.avsi")
14:49:38 Import("S:\AutoMKV079a\exe\filter\mvbob.avsi")
14:49:38 Import("S:\AutoMKV079a\exe\filter\seesaw.avsi")
14:49:38 Import("S:\AutoMKV079a\exe\filter\spresso.avsi")
14:49:38 #importstart
14:49:38
14:49:38 #test2
14:49:38
14:49:38 movie = mpeg2source("S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.d2v")
14:49:38 function getOrder(clip c) {
14:49:38 order = GetParity(c) ? 1 : 0
14:49:38 Return order }
14:49:38 #filter1start
14:49:38
14:49:38 #test3
14:49:38
14:49:38 #cropstart
14:49:38
14:49:38 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
14:49:38 fixed_aspect = 0.888889
14:49:38 c_width = width(cropclip)
14:49:38 c_height = Round(height(cropclip) / fixed_aspect)
14:49:38 input_par = float(float(c_width)/float(c_height))
14:49:38 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
14:49:38 out_width = 720
14:49:38 out_height = Round(float(out_width) / input_par)
14:49:38 hmod = out_height - (floor(out_height / 16 ) * 16)
14:49:38 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
14:49:38 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
14:49:38 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
14:49:38
14:49:38 last = movie
14:49:38 tfm(d2v="S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.d2v").tdecimate(hybrid=3)
14:49:38 #resizestart
14:49:38
14:49:38 #test4
14:49:38
14:49:38 #filter2start
14:49:38
14:49:38 #test5
14:49:38
14:49:38 RemoveGrain(mode=2)
14:49:38 ColorMatrix("Rec.709->Rec.601",hints=false,threads=2)
14:49:38 -----------------------------------------------------------------------
14:49:38 Script mkvmaudio.avs
14:49:38
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\NicAudio.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\SoundOut.dll")
14:49:38 NicAC3Source("S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed1.ac3")
14:49:38 #Applying STEREO downmixing routines
14:49:38 function stereo(clip a)
14:49:38 {
14:49:38 flr = GetChannel(a, 1, 2)
14:49:38 fcc = GetChannel(a, 3)
14:49:38 lfe = GetChannel(a, 4)
14:49:38 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
14:49:38 mix = MergeChannels(lfc, lfc)
14:49:38 lrc = MixAudio(flr, mix, 0.2929, 1.0)
14:49:38 blr = GetChannel(a, 5, 6)
14:49:38 Return MixAudio(lrc, blr, 1.0, 0.2929)
14:49:38 }
14:49:38 #
14:49:38 6==Audiochannels() ? stereo() : last
14:49:38 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV079a\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.25 -if - -of audio.mp4",postfilename="",nofilename=true,showoutput=false)
14:49:38 -----------------------------------------------------------------------
14:49:38 Script mkvmaudio.bat
14:49:38
14:49:38 "S:\AutoMKV079a\exe\BeSweet\ffmpeg.exe" -y -t 1 -i "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\mkvmaudio.avs" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\junk.wav"
14:49:38 -----------------------------------------------------------------------
14:49:38 Script mkvmaudio2.avs
14:49:38
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\NicAudio.dll")
14:49:38 LoadPlugin("S:\AutoMKV079a\exe\filter\SoundOut.dll")
14:49:38 NicAC3Source("S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed2.ac3")
14:49:38 #Applying STEREO downmixing routines
14:49:38 function stereo(clip a)
14:49:38 {
14:49:38 flr = GetChannel(a, 1, 2)
14:49:38 fcc = GetChannel(a, 3)
14:49:38 lfe = GetChannel(a, 4)
14:49:38 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
14:49:38 mix = MergeChannels(lfc, lfc)
14:49:38 lrc = MixAudio(flr, mix, 0.2929, 1.0)
14:49:38 blr = GetChannel(a, 5, 6)
14:49:38 Return MixAudio(lrc, blr, 1.0, 0.2929)
14:49:38 }
14:49:38 #
14:49:38 6==Audiochannels() ? stereo() : last
14:49:38 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV079a\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.25 -if - -of audio2.mp4",postfilename="",nofilename=true,showoutput=false)
14:49:38 -----------------------------------------------------------------------
14:49:38 Script mkvmaudio2.bat
14:49:38
14:49:38 "S:\AutoMKV079a\exe\BeSweet\ffmpeg.exe" -y -t 1 -i "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\mkvmaudio2.avs" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\junk2.wav"
14:49:38
14:49:38 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
I see I have a final muxxed size of -1 bytes, but I don't know how I got there.
buzzqw
27th March 2007, 12:12
@Shark_jlc
open movie.avs in virtualdub, it is ok ?
launch movie_wmv.bat from dos, what is the error ?
@nx6
--crf 20/BitrateQuantizer
what the hell is this ? you have edited the profile ????
@ALL
next update should be a little more robust on wmv encoding (or i hope so...)
BHH
Shark_jlc
27th March 2007, 13:27
@Shark_jlc
open movie.avs in virtualdub, it is ok ?
Actually, I get the following error:
Avisynth open failure:
I don't know what "audio" means (D:\temp\movie.avs, line 85)
launch movie_wmv.bat from dos, what is the error ?
There is no error, it calculates the length incorrectly:
Warning: Encoder failed to retrieve duration attribute from source plug-in.
Trying alternate method now.
Opening source....................
Source duration successfully retrieved: 10 seconds.
======== Encoding Completed ========
Video :
Codec: Windows Media Video 9
Average bit rate: 2107 bps
Expected fps: 24
Dropped frame count: 0
Total coded frames: 240
Average sample rate: 24.001
Dropped bytes: 0 bytes
Total bytes: 10919 bytes
Overall:
Encoding time: 11 seconds
Average bit rate: 2107 bps
File size: 21201 bytes
File duration: 9.991 seconds
@ALL
next update should be a little more robust on wmv encoding (or i hope so...)
BHH
Sounds good! :)
delacroixp
27th March 2007, 16:08
@Shark_jlc
@nx6
what the hell is this ? you have edited the profile ????
@ALL
next update should be a little more robust on wmv encoding (or i hope so...)
I should have picked up on this error myself though my H264 command line syntax is a bit poor...
I used to be a Tutor at UCT (http://www.uct.ac.za/) to the first year Pascal (http://www.powells.com/cgi-bin/biblio?inkey=4-0393954455-1) students...
Syntax errors are deadly and totally unforgiving... though Pascal was quite student-friendly...
In your case it looks like you've deleted the "<" in <BitrateQuantizer>18</BitrateQuantizer>
Replace it and you're well on the road to script and profile modding...
:) :D :eek:
Pascal
nx6
27th March 2007, 19:09
@nx6
what the hell is this ? you have edited the profile ????
I'm playing around with exactly how much the quality/file size changes with the Quantizer, yes. I'm not making permanent changes to the profile, though.
How come the width changes to 720px with the ConstantQuality profile? Shouldn't it be AUTO or Original?
Syntax errors are deadly and totally unforgiving... though Pascal was quite student-friendly...
In your case it looks like you've deleted the "<" in <BitrateQuantizer>18</BitrateQuantizer>
Pascal
Good lord. If that what was causing this the whole time I feel really stupid. I've had this happen a couple times before and I never knew why.
buzzqw
27th March 2007, 19:21
How come the width changes to 720px with the ConstantQuality profile? Shouldn't it be AUTO or Original?
good point, should be original, thanks!
i'm not making permanent changes to the profile, though.
sorry if i seemed harsh.. don't want ! i can only suggest to duplicate the profile, while leaving intect the orginal, and so working on duplicate :)
BHH
P.S. btw... in next release you will welcome in "thanks" section of license.txt. One of the few that have answered on questions of other forummers ! thanks!
nx6
27th March 2007, 22:28
I have a request. In advanced audio settings, can we have the values retained until AutoMKV is restarted? Right now if I go in an make changes like setting a title for the muxxed file or adding "Director's commentary" to an audio track name, I hit save and the window closes, but if I reopen it everything gets reset back.
dlflannery
28th March 2007, 01:09
If you are encoding DVD (or VOB, MPEG2) to WMV and haven't tried "Film" in the deinterlacer setting, do so. (Try auto first.)
If you have gspot or dgindex and know how to use them you can check to see if the the video is telecined (film) but just trying the setting in AutoMKV may be as quick and easy.
I can also recommend VideoReDo (http://www.videoredo.com)for cleaning up the .vob files (and it will join them for you). You can free-trial it uncrippled -- just download, install, and ask for the free trial key.
BixMix
28th March 2007, 03:02
@BixMix
The way to apply MORE gain is to DE-CHECK Normalize AND in last option of advanced audio setting, at right of Pith and none, in the blank space write something like Amplifydb(15) this command force an audio gain of 15 decibel, in this way YOU must choose the gain, since in no more automatic
BHH
I did what you suggested. Either I misunderstood or I found a bug because it never got louder. After trying a couple of times, I made it 25 decibel (wondering if I just couldn't hear a difference or something). Here's the log; I think it still is "normalizing" the volume even though I unchecked the box.
06:43:54 0.79 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
06:43:54 Selected Input file: C:\Documents and Settings\Ned\Desktop\ThatGirl\VTS_01_0.IFO
06:43:54 Selected Output dir: C:\Documents and Settings\Ned\Desktop\temp\
06:43:54 Selected Final Name: ThatGirl-Amplifydb(25)
06:43:54 Selected Container type: WMV
06:43:54 Selected Encoder: WMV
06:43:54 Selected Size: 1 CD
06:43:54 Selected Slice: 1
06:43:54 Selected Profile: 2_Pass_VBR_VeryQuick.xml
06:43:54 Selected Width: Automatic
06:43:54 Selected Resizer: SimpleResize (neutral soft)
06:43:54 Selected Filters: RemoveGrain(mode=2)
06:43:54 Selected Deinterlacer: AUTO
06:43:54 Selected Field Order: AUTO
06:43:54 Track Language 1: English (AC3 2ch, 0xBD 0x80) [0]
06:43:54 Audio Codec 1: WMV
06:43:54 Audio Quality 1: 256
06:43:54 Audio Channel 1: Stereo
06:43:54 Advanced Audio Settings DUMP Track 1
06:43:54 Audio Track Language: und
06:43:54 Nero Option Profiles: AUTO --- Encoding Mode: Quality
06:43:54 CCT Option Profiles: AUTO --- Channel Options: AUTO
06:43:54 Lame Settings: ABR
06:43:54 Audio Normalization: Normalize Audio
06:43:54 Frequency: AUTO --- Tempo : NONE
06:43:54 Pitch: NONE --- Other Add : Amplifydb(25)
06:43:54 Advanced Audio Settings DUMP Track 2
06:43:54 Nero Option Profiles: AUTO --- Encoding Mode: Quality
06:43:54 CCT Option Profiles: AUTO --- Channel Options: AUTO
06:43:54 Lame Settings: ABR
06:43:54 Audio Normalization: 1
06:43:54 Frequency: AUTO --- Tempo : NONE
06:43:54 Pitch: NONE --- Other Add :
06:43:54
06:43:54 Starting Indexing
06:43:54 Dgindex CMD: C:\AutoMKV079a\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1 -YR=2 -AIF=[C:\Documents and Settings\Ned\Desktop\ThatGirl\VTS_01_1.vob] -OF=[C:\Documents and Settings\Ned\Desktop\temp\movie] -exit -minimize
06:43:58 Finished indexing
06:43:58 Starting fixing audio delay on track number 1
06:43:58 DelayCut CMD: C:\AutoMKV079a\exe\dgindex\Delaycut.exe -auto -out "C:\Documents and Settings\Ned\Desktop\temp\fixed1.ac3" "C:\Documents and Settings\Ned\Desktop\temp\movie T01 2_0ch 192Kbps DELAY 0ms.ac3"
06:43:58 Original 1' Audio Size: 5525760 bytes
06:43:58 Finished fixing audio delay
06:44:04 Number of Frames: 6902
06:44:04 Framerate: 29.970030
06:44:04 Movie length in Seconds: 231
06:44:04 Movie Width: 720
06:44:04 Movie Height: 480
06:46:38 Processing completed. Type is determined to be film.
06:46:38 BFF: 40
06:46:38 TFF: 180
06:46:38 Order: var
06:46:38 Autoresize CMD: cscript.exe "C:\AutoMKV079a\exe\encoder\WMCmd.vbs" -input "C:\Documents and Settings\Ned\Desktop\temp\resmovie.avs" -output "C:\Documents and Settings\Ned\Desktop\temp\resmovie.wmv" -v_codec WMV8 -v_mode 2 -v_quality 85 -s_config "C:\Documents and Settings\Ned\Desktop\temp\wmv_crb" -a_codec WMASTD -a_mode 0 -title "ThatGirl-Amplifydb(25)" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 256_44_2
06:47:26 Tested total movie: 5%
06:47:26 AutoResize movie size: 2111885 bytes
06:47:26 Movie Width suggested: 19456 value based on sample size (2702.22% of original width)
06:47:26 WMV CMD: cscript.exe "C:\AutoMKV079a\exe\encoder\WMCmd.vbs" -input "C:\Documents and Settings\Ned\Desktop\temp\movie.avs" -output "C:\Documents and Settings\Ned\Desktop\temp\movie.wmv" -v_codec WMV8 -v_mode 3 -v_bitrate 25747456 -s_config "C:\Documents and Settings\Ned\Desktop\temp\wmv_crb" -a_codec WMASTD -a_mode 0 -title "ThatGirl-Amplifydb(25)" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 256_44_2
06:57:21 Final Muxed size: 121750974 bytes
06:57:22 Encoding finished: 00:13:28 elapsed time
06:57:22 -----------------------------------------------------------------------
06:57:22 Script AutoCrop.log
06:57:22
06:57:22 Crop(0,48,720,384)
06:57:22 -----------------------------------------------------------------------
06:57:22 Script Resmovie.avs
06:57:22
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\autocrop.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\BicublinResize.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\blockbuster.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\cnr2.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\ColorMatrix.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\Convolution3D.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\corrector.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\DctFilter.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\Decomb.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\Deen.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\degrainmedian.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\DGDecode.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\EEDI2.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\fft3dfilter.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\FluxSmooth.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\frfun7.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\hqdn3d.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\LeakKernelDeint.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\MaskTools.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\medianblur.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\MipSmooth.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\mt_masktools.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\mvtools.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\NicAudio.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\RemoveGrain.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\Repair.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\SangNom.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\SimpleResize.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\SoundOut.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TBilateral.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TDeint.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TIVTC.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TomsMoComp.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TTempSmooth.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\UnDot.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\UnFilter.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\VSFilter.dll")
06:57:22 #loadpluginstart
06:57:22
06:57:22 #test1
06:57:22
06:57:22 Import("C:\AutoMKV079a\exe\filter\MCBob_v03c.avsi")
06:57:22 Import("C:\AutoMKV079a\exe\filter\mvbob.avsi")
06:57:22 Import("C:\AutoMKV079a\exe\filter\seesaw.avsi")
06:57:22 Import("C:\AutoMKV079a\exe\filter\spresso.avsi")
06:57:22 #importstart
06:57:22
06:57:22 #test2
06:57:22
06:57:22 movie = mpeg2source("C:\Documents and Settings\Ned\Desktop\temp\movie.d2v")
06:57:22 audio = NicAC3Source("C:\Documents and Settings\Ned\Desktop\temp\fixed1.ac3",2)
06:57:22 function getOrder(clip c) {
06:57:22 order = GetParity(c) ? 1 : 0
06:57:22 Return order }
06:57:22 #filter1start
06:57:22
06:57:22 #test3
06:57:22
06:57:22 #cropstart
06:57:22
06:57:22 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
06:57:22 fixed_aspect = 0.888889
06:57:22 c_width = width(cropclip)
06:57:22 c_height = Round(height(cropclip) / fixed_aspect)
06:57:22 input_par = float(float(c_width)/float(c_height))
06:57:22 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
06:57:22 out_width = 704
06:57:22 out_height = Round(float(out_width) / input_par)
06:57:22 hmod = out_height - (floor(out_height / 16 ) * 16)
06:57:22 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
06:57:22 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
06:57:22 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
06:57:22
06:57:22 tfm(d2v="C:\Documents and Settings\Ned\Desktop\temp\movie.d2v").tdecimate()
06:57:22 #resizestart
06:57:22
06:57:22 #test4
06:57:22
06:57:22 SimpleResize(out_width,out_height)
06:57:22 #filter2start
06:57:22
06:57:22 #test5
06:57:22
06:57:22 RemoveGrain(mode=2)
06:57:22 function Comptest(clip c, float percent)
06:57:22 {
06:57:22 frange=floor(14./(percent/100.))
06:57:22 Return SelectRangeEvery(c, frange, 14)
06:57:22 }
06:57:22 audio=ConvertAudioToFloat(audio)
06:57:22 audio=getchannel(audio,1,2)
06:57:22 audiodub(audio,last)
06:57:22 Comptest(5)
06:57:22 ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
06:57:22 -----------------------------------------------------------------------
06:57:22 Script movie.avs
06:57:22
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\autocrop.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\BicublinResize.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\blockbuster.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\cnr2.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\ColorMatrix.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\Convolution3D.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\corrector.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\DctFilter.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\Decomb.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\Deen.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\degrainmedian.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\DGDecode.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\EEDI2.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\fft3dfilter.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\FluxSmooth.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\frfun7.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\hqdn3d.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\LeakKernelDeint.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\MaskTools.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\medianblur.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\MipSmooth.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\mt_masktools.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\mvtools.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\NicAudio.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\RemoveGrain.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\Repair.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\SangNom.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\SimpleResize.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\SoundOut.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TBilateral.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TDeint.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TIVTC.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TomsMoComp.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\TTempSmooth.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\UnDot.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\UnFilter.dll")
06:57:22 LoadPlugin("C:\AutoMKV079a\exe\filter\VSFilter.dll")
06:57:22 #loadpluginstart
06:57:22
06:57:22 #test1
06:57:22
06:57:22 Import("C:\AutoMKV079a\exe\filter\MCBob_v03c.avsi")
06:57:22 Import("C:\AutoMKV079a\exe\filter\mvbob.avsi")
06:57:22 Import("C:\AutoMKV079a\exe\filter\seesaw.avsi")
06:57:22 Import("C:\AutoMKV079a\exe\filter\spresso.avsi")
06:57:22 #importstart
06:57:22
06:57:22 #test2
06:57:22
06:57:22 movie = mpeg2source("C:\Documents and Settings\Ned\Desktop\temp\movie.d2v")
06:57:22 audio = NicAC3Source("C:\Documents and Settings\Ned\Desktop\temp\fixed1.ac3",2)
06:57:22 function getOrder(clip c) {
06:57:22 order = GetParity(c) ? 1 : 0
06:57:22 Return order }
06:57:22 #filter1start
06:57:22
06:57:22 #test3
06:57:22
06:57:22 #cropstart
06:57:22
06:57:22 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
06:57:22 fixed_aspect = 0.888889
06:57:22 c_width = width(cropclip)
06:57:22 c_height = Round(height(cropclip) / fixed_aspect)
06:57:22 input_par = float(float(c_width)/float(c_height))
06:57:22 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
06:57:22 out_width = 704
06:57:22 out_height = Round(float(out_width) / input_par)
06:57:22 hmod = out_height - (floor(out_height / 16 ) * 16)
06:57:22 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
06:57:22 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
06:57:22 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
06:57:22
06:57:22 tfm(d2v="C:\Documents and Settings\Ned\Desktop\temp\movie.d2v").tdecimate()
06:57:22 #resizestart
06:57:22
06:57:22 #test4
06:57:22
06:57:22 SimpleResize(out_width,out_height)
06:57:22 #filter2start
06:57:22
06:57:22 #test5
06:57:22
06:57:22 RemoveGrain(mode=2)
06:57:22 ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
06:57:22 audio=ConvertAudioToFloat(audio)
06:57:22 audio=getchannel(audio,1,2)
06:57:22 audiodub(audio,last)
06:57:22 -----------------------------------------------------------------------
06:57:22 Script mkvmaudio.avs
06:57:22 -----------------------------------------------------------------------
06:57:22 Script mkvmaudio.bat
06:57:22 -----------------------------------------------------------------------
06:57:22 Script mkvmaudio2.avs
06:57:22 -----------------------------------------------------------------------
06:57:22 Script mkvmaudio2.bat
06:57:22
06:57:22 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
Interestingly, this music video doesn't need to be any louder. However the movie from the same DVD (same rip by DVDFab) is quiet. I need to find time to do more research on why...
Thank you for your continuing help.
Shark_jlc
28th March 2007, 05:27
If you are encoding DVD (or VOB, MPEG2) to WMV and haven't tried "Film" in the deinterlacer setting, do so. (Try auto first.)
...
It's always on auto, and that hasn't worked for this particular movie, neither did setting it to film. Thanks though :/
buzzqw
28th March 2007, 07:38
@nx6
as you know i reset all advanced setting every time the window is open. BUT automkv remember the settings till next reopen of advanced audio settings.
About memorizing this settings (even with save settings) could cause user to "apply without remember" same settings.
i prefer to let it be set every time
@dlflannery
well said
@BixMix
wmv encoding. this is the key!
advanced audio settings aren't applied to wmv encoding.
Audio will ne normalized in wmv from next version!
@Shark_jlc
what is reported by deint.log ?
BHH
AMED
28th March 2007, 11:26
Hi buzzqw
is there any chance of getting the subtitle track 1 and subtitle track 2 drop down boxes to display something instead of NONE when using external subtitles. Maybe something like "Using External Subtitles".
Also do you plan to add any support for forced subtitles?
Shark_jlc
28th March 2007, 13:52
@Shark_jlc
what is reported by deint.log ?
BHH
Here is the deint.log file when the AutoMKV deinterlacer dropdown is set to Auto.
buzzqw
28th March 2007, 14:27
@AMED
i will look... but not now.. and not so easy... since the external subtitle are not exclusive of one selected
about cc, have you at hand the link on vsrip and cc? (or i will search myself)
@Shark_jlc
thanks, wait for approval
@ALL
in next update i will introduce ffmpeg.exe as encoder
till now i have added support (limited) for flv, rv10, mpeg2video, msmpeg4v2.
I tryed even snow... but i miss surely something
any other codec to add ?
BHH
glynor
28th March 2007, 19:04
Yesterday I attempted to rip my copy of O Brother Where Art Thou using only AutoMKV. I typically rip the discs myself using either DVD Fab Decrypter or RipIt4Me, but I decided to give AutoMKV a shot.
So, I loaded it into my DVD drive (an external Plextor PX-712UF drive), selected the drive from the drop-down, hit the check DVD drive button, it selected the right PGC, and I set my settings and hit Go.
Unfortunately, the rip process never completed. DVD Fab Express loaded, and the process was going, but it was running extremely slowly. Watching the process in Process Explorer showed it was using basically 0% CPU time (it was "blipping" up to 1-2% every so often, but generally was at 0%), but the I/O chart was very interesting -- It was "spiking" up and down regularly like a EKG readout. I checked, and the file sizes in the output directory were slowly climbing, so it was doing something. At first, I thought the process was stalled because it was progressing so slowly...
Either way, I was curious, so I let the process run overnight. After running for over 16 hours solid, it was still only about 2/3 completed. I killed the task this morning because I was tired of waiting.
So today I ran the same disc, in the same drive, on the same machine through DVD Fab Decrypter (the current freebie version) on it's own and it completed in about 25 minutes.
Not sure what's going on here, but something was screwy. The logs were unfortunately completely empty on disk, so I don't have much to show other than that. I'm happy to run the test again if you show me what I can post that'll help!
glynor
28th March 2007, 19:07
@ALL
in next update i will introduce ffmpeg.exe as encoder
till now i have added support (limited) for flv, rv10, mpeg2video, msmpeg4v2.
I tryed even snow... but i miss surely something
any other codec to add ?
Any chance we can get DV?
buzzqw
28th March 2007, 19:36
@glynor
about ripping:
I loaded it into my DVD drive
good
selected the drive from the drop-down
good
hit the check DVD drive button
good
it selected the right PGC, and I set my settings and hit Go.
bad
why bad?
after ripping i select directly the main movie BUT if you select the pgc (and check USE this pgc or use this ifo) automkv will parse all those vobs and extract only the pgc you select.
The pgc fuction is to use with episodic dvd not in main movie selection
Any chance we can get DV?
just to specify: take an "file" and encode TO DV ?
if so.. i must check ffmpeg if dv is supported in encoding, no problem to add
BHH
glynor
28th March 2007, 21:36
@glynor
bad
why bad?
after ripping i select directly the main movie BUT if you select the pgc (and check USE this pgc or use this ifo) automkv will parse all those vobs and extract only the pgc you select.
The pgc fuction is to use with episodic dvd not in main movie selection
Nope... Sorry. I think you misread my comment (or I mis-represented what I had done). I said IT picked the correct PGC, not that I did. I had Process this PGC and Process this IFO unchecked.
Just to note... I've now re-tried the operation with the same computer and same disc and same settings and it appears to be working properly. Not sure what's going on now!! :confused:
EDIT: Actually... Interesting results.
As I mentioned, I ripped the DVD myself using DVD Fab Decrypter and then I encoded it to a x264 MKV. Worked perfectly. Then, immediately and without closing/reopening AutoMKV, I attempted to re-rip the disc using AutoMKV. I kept all the settings the same as what I had just used, but selected my drive from the dropdown and hit "Check DVD". It properly selected the F:\Video_TS\VTS_01_0.IFO, I changed the "output file name", and I hit go. Interestingly, even though it is a CSS protected DVD, AutoMKV didn't actually launch DVD Fab Express but proceeded directly into the Dgindex step. I manually "restored" the Dgindex window and (unsurprisingly) the video display window was black.
I was fairly sure something was going wrong so I Killed the AutoMKV process tree, deleted the orphaned temp directory, and started over. After "launching fresh", AutoMKV properly launched DVD Fab Express and is currently properly decrypting the disc. So... That was pretty odd!
just to specify: take an "file" and encode TO DV ?
if so.. i must check ffmpeg if dv is supported in encoding, no problem to add
Yes. That's exactly what I mean. I wouldn't use it often, but it can come in handy sometimes for converting to weird formats that can't be handled by my favorite converter... AutoMKV of course!
PlayWithFire
28th March 2007, 21:41
i almost gone AutoMKV working for converting MKV to WMV. There's just one problem: there's no sound.
Can anyone help me?
nx6
28th March 2007, 22:06
...AutoMKV didn't actually launch DVD Fab Express but proceeded directly into the Dgindex step. I manually "restored" the Dgindex window and (unsurprisingly) the video display window was black...
DGIndex's window is always black for me. I can tell if its running or not because on a running DGIndex:
The window title wont be just "DGIndex" but "DGIndex - VOB 1_1..." something about the file its processing.
There will be a minimized, inactive window in the lower left corner of the screen (minimized to a small title bar, not to the taskbar). The tile of this window is "Information" and it is not possible to restore this window I find.
The hard drive will be churning.
Were any of these symptoms occurring?
nx6
28th March 2007, 22:08
i almost gone AutoMKV working for converting MKV to WMV. There's just one problem: there's no sound.
Can anyone help me?
I don't mean to be insulting, but you did remember to select audio tracks, right?
Can you post the log file?
PlayWithFire
28th March 2007, 22:10
no, you are not insulting at all
but yes, i did select an audio track.
i should elaborate a little bit. Some sound does come thought, but mostly background noise. It's really strange.
i will post my log file when i get home tonight
nx6
29th March 2007, 00:28
no, you are not insulting at all
but yes, i did select an audio track.
i should elaborate a little bit. Some sound does come thought, but mostly background noise. It's really strange.
i will post my log file when i get home tonight
Did you choose a 5.1 channel audio track as your source but a 2 channel audio format? Sometimes I have weird effects with the loudness of vocals in relation to background noise when playing a 5.1 channel audio track over a two channel system.
Use the "code" tags when you post the log, if you attach a text file we'll have to wait for it to be approved, and if you just paste without the tags the word wrap will make it harder to read.
PlayWithFire
29th March 2007, 04:36
nx6, i don't think i did that
here's my log
20:56:09 0.79 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
20:56:09 Selected Input file: D:\Video\TV\Lost\Lost.S03E13.720p.HDTV.x264-CTU.mkv
20:56:09 Selected Output dir: D:\Video\HD\temp\
20:56:09 Selected Final Name: Lost.S03E13.720p.HDTV.x264-CTU
20:56:09 Selected Container type: WMV
20:56:09 Selected Encoder: WMV
20:56:09 Selected Size: Don't care about size
20:56:09 Selected Slice: 1
20:56:09 Selected Profile: 1_Pass_CBR_UltraQuick.xml
20:56:09 Selected Width: 720
20:56:09 Selected Resizer: SimpleResize (neutral soft)
20:56:09 Selected Filters: RemoveGrain(mode=2)
20:56:09 Selected Deinterlacer: AUTO
20:56:09 Selected Field Order: AUTO
20:56:09 NeroAACEnc.exe: not present
20:56:09 Enabled CRF/CQ AutoRes at 85 value
20:56:09 Track Language 1: Lost.S03E13.720p.HDTV.x264-CTU.mkv
20:56:09 Audio Codec 1: WMV
20:56:09 Audio Quality 1: 96
20:56:09 Audio Channel 1: Stereo
20:56:09 Advanced Audio Settings DUMP Track 1
20:56:09 Nero Option Profiles: AUTO --- Encoding Mode: Quality
20:56:09 CCT Option Profiles: AUTO --- Channel Options: AUTO
20:56:09 Lame Settings: ABR
20:56:09 Audio Normalization: 1
20:56:09 Frequency: AUTO --- Tempo : NONE
20:56:09 Pitch: NONE --- Other Add :
20:56:09 Advanced Audio Settings DUMP Track 2
20:56:09 Nero Option Profiles: AUTO --- Encoding Mode: Quality
20:56:09 CCT Option Profiles: AUTO --- Channel Options: AUTO
20:56:09 Lame Settings: ABR
20:56:09 Audio Normalization: 1
20:56:09 Frequency: AUTO --- Tempo : NONE
20:56:09 Pitch: NONE --- Other Add :
20:56:09
20:56:12 Number of Frames:
20:56:12 Framerate:
20:56:12 Movie length in Seconds: 0
20:56:12 Movie Width:
20:56:12 Movie Height:
20:56:12 Avi engage mode not corrected, switched to DirectShowSource
20:57:38 Number of Frames: 60874
20:57:38 Framerate: 23.976044
20:57:38 Movie length in Seconds: 2539
20:57:38 Movie Width: 1280
20:57:38 Movie Height: 720
20:57:41 Order: unk
20:57:41 WMV CMD: cscript.exe "C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\encoder\WMCmd.vbs" -input "D:\Video\HD\temp\movie.avs" -output "D:\Video\HD\temp\movie.wmv" -v_codec WMV7 -v_mode 0 -v_bitrate 108057856 -s_config "D:\Video\HD\temp\wmv_crb" -v_bframedist 1 -v_dquantoption 2 -v_lookahead 0 -v_mbmodecost 0 -v_mmatch 0 -v_mslevel 1 -v_msrange 0 -v_mvcost 0 -v_bdeltaqp 1 -a_codec WMASTD -a_mode 0 -title "Lost.S03E13.720p.HDTV.x264-CTU" -year 2007 -copyright "Done with AutoMKV! 0.79" -a_setting 96_44_2
22:30:05 Final Muxed size: 441276800 bytes
22:30:05 Encoding finished: 01:33:56 elapsed time
22:30:05 -----------------------------------------------------------------------
22:30:05 Script AutoCrop.log
22:30:05
22:30:05 Crop(0,4,1276,708)
22:30:05 -----------------------------------------------------------------------
22:30:05 Script Resmovie.avs
22:30:05 -----------------------------------------------------------------------
22:30:05 Script movie.avs
22:30:05
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\autocrop.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\BicublinResize.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\blockbuster.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\cnr2.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\ColorMatrix.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\Convolution3D.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\corrector.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\DctFilter.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\Decomb.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\Deen.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\degrainmedian.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\DGDecode.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\EEDI2.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\fft3dfilter.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\FluxSmooth.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\frfun7.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\hqdn3d.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\LeakKernelDeint.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\MaskTools.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\medianblur.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\MipSmooth.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\mt_masktools.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\mvtools.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\NicAudio.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\RemoveGrain.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\Repair.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\SangNom.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\SimpleResize.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\SoundOut.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\TBilateral.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\TDeint.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\TIVTC.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\TomsMoComp.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\TTempSmooth.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\UnDot.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\UnFilter.dll")
22:30:05 LoadPlugin("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\VSFilter.dll")
22:30:05 #loadpluginstart
22:30:05
22:30:05 #test1
22:30:05
22:30:05 Import("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\MCBob_v03c.avsi")
22:30:05 Import("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\mvbob.avsi")
22:30:05 Import("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\seesaw.avsi")
22:30:05 Import("C:\Documents and Settings\Pasha\Desktop\AutoMKV\exe\filter\spresso.avsi")
22:30:05 #importstart
22:30:05
22:30:05 #test2
22:30:05
22:30:05 movie = directshowsource("D:\Video\TV\Lost\Lost.S03E13.720p.HDTV.x264-CTU.mkv",audio=false)
22:30:05 movie = isRGB(movie) ? ConvertToYV12(movie,interlaced=true) : movie
22:30:05 movie = isYUY2(movie) ? ConvertToYV12(movie,interlaced=true) : movie
22:30:05 audio = DirectShowSource("D:\Video\TV\Lost\Lost.S03E13.720p.HDTV.x264-CTU.mkv",fps=23.976044,convertfps = true,video=false)
22:30:05 function getOrder(clip c) {
22:30:05 order = GetParity(c) ? 1 : 0
22:30:05 Return order }
22:30:05 #filter1start
22:30:05
22:30:05 #test3
22:30:05
22:30:05 #cropstart
22:30:05
22:30:05 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
22:30:05 fixed_aspect = 1
22:30:05 c_width = width(cropclip)
22:30:05 c_height = Round(height(cropclip) / fixed_aspect)
22:30:05 input_par = float(float(c_width)/float(c_height))
22:30:05 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
22:30:05 out_width = 720
22:30:05 out_height = Round(float(out_width) / input_par)
22:30:05 hmod = out_height - (floor(out_height / 16 ) * 16)
22:30:05 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
22:30:05 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
22:30:05 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
22:30:05
22:30:05 #resizestart
22:30:05
22:30:05 #test4
22:30:05
22:30:05 SimpleResize(out_width,out_height)
22:30:05 #filter2start
22:30:05
22:30:05 #test5
22:30:05
22:30:05 RemoveGrain(mode=2)
22:30:05 audio=ConvertAudioToFloat(audio)
22:30:05 audio=getchannel(audio,1,2)
22:30:05 audiodub(audio,last)
22:30:05 -----------------------------------------------------------------------
22:30:05 Script mkvmaudio.avs
22:30:05 -----------------------------------------------------------------------
22:30:05 Script mkvmaudio.bat
22:30:05 -----------------------------------------------------------------------
22:30:05 Script mkvmaudio2.avs
22:30:05 -----------------------------------------------------------------------
22:30:05 Script mkvmaudio2.bat
22:30:05
22:30:05 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
nx6
29th March 2007, 06:11
nx6, i don't think i did that
I actually missed that this was converting MKV to WMV.
(snip)
20:56:09 Advanced Audio Settings DUMP Track 2
20:56:09 Nero Option Profiles: AUTO --- Encoding Mode: Quality
20:56:09 CCT Option Profiles: AUTO --- Channel Options: AUTO
20:56:09 Lame Settings: ABR
20:56:09 Audio Normalization: 1
20:56:09 Frequency: AUTO --- Tempo : NONE
20:56:09 Pitch: NONE --- Other Add :
20:56:09 {{where's the audio encoding info? it should be somewhere in here}}
20:56:12 Number of Frames:
20:56:12 Framerate:
20:56:12 Movie length in Seconds: 0
20:56:12 Movie Width:
20:56:12 Movie Height:
20:56:12 Avi engage mode not corrected, switched to DirectShowSource
20:57:38 Number of Frames: 60874
(snip)
What format are the audio tracks in the MKV in?
nx6
29th March 2007, 06:25
@buzzqw
I've been trying occasionally to do a grayscale encoding using the method you gave me here (http://forum.doom9.org/showthread.php?p=969510#post969510), but so far it's not completing successfully.
12:28:29 0.79 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
12:28:29 Selected Input file: S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\VTS_01_0.IFO
12:28:29 Selected Output dir: S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\
12:28:29 Selected Final Name: RoshomonCRF18BWAAC25
12:28:29 Selected Container type: MKV
12:28:29 Selected Encoder: X264
12:28:29 Selected Size: Don't care about size
12:28:29 Selected Slice: 1
12:28:29 Selected Profile: ConstantQuality-CRF.xml
12:28:29 Selected Width: 720
12:28:29 Selected Resizer: SimpleResize (neutral soft)
12:28:29 Selected Filters: RemoveGrain(mode=2)
12:28:29 Selected Deinterlacer: AUTO
12:28:29 Selected Field Order: AUTO
12:28:29 Enabled CRF/CQ AutoRes at 18 value
12:28:29 Track Language 1: Japanese (AC3 1ch, 0xBD 0x80) [0]
12:28:29 Audio Codec 1: Nero AAC
12:28:29 Audio Quality 1: 0.25
12:28:29 Audio Channel 1: Stereo
12:28:29 Track Language 2: English (AC3 1ch, 0xBD 0x81) [0]
12:28:29 Audio Codec 2: Nero AAC
12:28:29 Audio Quality 2: 0.25
12:28:29 Audio Chennel 2: Stereo
12:28:29 Advanced Audio Settings DUMP Track 1
12:28:29 Movie title Name: Roshomon (B&W encoding)
12:28:29 Audio Track Language: und
12:28:29 Nero Option Profiles: AUTO --- Encoding Mode: Quality
12:28:29 CCT Option Profiles: AUTO --- Channel Options: AUTO
12:28:29 Lame Settings: ABR
12:28:29 Audio Normalization: Normalize Audio
12:28:29 Frequency: AUTO --- Tempo : NONE
12:28:29 Pitch: NONE --- Other Add :
12:28:29 Advanced Audio Settings DUMP Track 2
12:28:29 Nero Option Profiles: AUTO --- Encoding Mode: Quality
12:28:29 CCT Option Profiles: AUTO --- Channel Options: AUTO
12:28:29 Lame Settings: ABR
12:28:29 Audio Normalization: 1
12:28:29 Frequency: AUTO --- Tempo : NONE
12:28:29 Pitch: NONE --- Other Add :
12:28:29 Selected 1' Sub tracks: English 0 (0xBD 0x20) [0]
12:28:29 Activate Last line AVS Script: grayscale()
12:28:29 Selected Unlimited media size
12:28:30 Starting SubRipping
14:20:26 Subtitle Size: 1468416 bytes
14:20:26 Finished SubRipping
14:20:26 Starting Indexing
14:20:26 Dgindex CMD: S:\AutoMKV079a\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1,2 -YR=2 -AIF=[S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\VTS_01_1.vob] -OF=[S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie] -exit -minimize
15:10:06 Finished indexing
15:10:06 Starting fixing audio delay on track number 1
15:10:06 DelayCut CMD: S:\AutoMKV079a\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed1.ac3" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie T01 1_0ch 192Kbps DELAY 611ms.ac3"
15:11:11 Original 1' Audio Size: 126951936 bytes
15:11:11 DelayCut CMD: S:\AutoMKV079a\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed2.ac3" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie T02 1_0ch 192Kbps DELAY 1ms.ac3"
15:12:12 Original 2' Audio Size: 126951936 bytes
15:12:12 Finished fixing audio delay
15:12:12 Encoding S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed1.ac3 to NeroAAC with 0.25 quality
15:16:37 Encoded 1' Audio Track: 22419890 bytes
15:16:37 Encoding S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed2.ac3 to NeroAAC with 0.25 quality
15:21:10 Applying ReplayGain
15:21:12 Encoded 2' Audio Track: 22025454 bytes
15:21:12 ForceFilm Detected: 97.400002% FILM found
15:21:50 Number of Frames: 158532
15:21:50 Framerate: 29.970030
15:21:50 Movie length in Seconds: 5290
15:21:50 Movie Width: 720
15:21:50 Movie Height: 480
15:42:25 Processing completed. Type is determined to be partly film.
15:42:25 Processing completed. Type is determined to be partly film.
15:42:25 BFF: 53
15:42:25 TFF: 403
15:42:25 Order: tff
15:42:26 Starting X264
15:42:26 CRF encoding X264: S:\AutoMKV079a\exe\encoder\x264.exe --pass 1 --crf 18 --stats "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\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:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.mp4" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.avs"
15:42:55 Accepted values are between 31876710400 and 33889976320 bytes (movie+audio)
15:42:55 Got a file of size: 0 bytes + audio size 44453754 bytes (45187960)
15:42:55 "S:\AutoMKV079a\exe\matroska\mkvmerge.exe" -o "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\RoshomonCRF18BWAAC25.mkv" --track-name -1:"RoshomonCRF18BWAAC25" --aspect-ratio 1:1.344538 --chapters "S:\AutoMKV079a\exe\chapters.txt" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.mp4" --language -1:und "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\audio.mp4" --language -1:eng "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\audio2.mp4" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\RoshomonCRF18BWAAC25.idx" --title "Roshomon (B&W encoding)"
15:42:59 Final Muxed size: -1 bytes
15:42:59 Encoding finished: 03:14:30 elapsed time
15:42:59 -----------------------------------------------------------------------
15:42:59 Script AutoCrop.log
15:42:59
15:42:59 Crop(8,2,708,476)
15:42:59 -----------------------------------------------------------------------
15:42:59 Script Resmovie.avs
15:42:59 -----------------------------------------------------------------------
15:42:59 Script movie.avs
15:42:59
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\autocrop.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\BicublinResize.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\blockbuster.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\cnr2.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\ColorMatrix.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\Convolution3D.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\corrector.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\DctFilter.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\Decomb.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\Deen.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\degrainmedian.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\DGDecode.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\EEDI2.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\fft3dfilter.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\FluxSmooth.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\frfun7.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\hqdn3d.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\LeakKernelDeint.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\MaskTools.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\medianblur.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\MipSmooth.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\mt_masktools.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\mvtools.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\NicAudio.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\RemoveGrain.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\Repair.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\SangNom.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\SimpleResize.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\SoundOut.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\TBilateral.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\TDeint.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\TIVTC.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\TomsMoComp.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\TTempSmooth.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\UnDot.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\UnFilter.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\VSFilter.dll")
15:42:59 #loadpluginstart
15:42:59
15:42:59 #test1
15:42:59
15:42:59 Import("S:\AutoMKV079a\exe\filter\MCBob_v03c.avsi")
15:42:59 Import("S:\AutoMKV079a\exe\filter\mvbob.avsi")
15:42:59 Import("S:\AutoMKV079a\exe\filter\seesaw.avsi")
15:42:59 Import("S:\AutoMKV079a\exe\filter\spresso.avsi")
15:42:59 #importstart
15:42:59
15:42:59 #test2
15:42:59
15:42:59 movie = mpeg2source("S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.d2v")
15:42:59 function getOrder(clip c) {
15:42:59 order = GetParity(c) ? 1 : 0
15:42:59 Return order }
15:42:59 #filter1start
15:42:59
15:42:59 #test3
15:42:59
15:42:59 #cropstart
15:42:59
15:42:59 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
15:42:59 fixed_aspect = 0.888889
15:42:59 c_width = width(cropclip)
15:42:59 c_height = Round(height(cropclip) / fixed_aspect)
15:42:59 input_par = float(float(c_width)/float(c_height))
15:42:59 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
15:42:59 out_width = 720
15:42:59 out_height = Round(float(out_width) / input_par)
15:42:59 hmod = out_height - (floor(out_height / 16 ) * 16)
15:42:59 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
15:42:59 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
15:42:59 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
15:42:59
15:42:59 tfm(d2v="S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\movie.d2v").tdecimate(hybrid=3)
15:42:59 #resizestart
15:42:59
15:42:59 #test4
15:42:59
15:42:59 SimpleResize(out_width,out_height)
15:42:59 #filter2start
15:42:59
15:42:59 #test5
15:42:59
15:42:59 RemoveGrain(mode=2)
15:42:59 ColorMatrix("Rec.709->Rec.601",hints=false,threads=2)
15:42:59 grayscale()
15:42:59 -----------------------------------------------------------------------
15:42:59 Script mkvmaudio.avs
15:42:59
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\NicAudio.dll")
15:42:59 LoadPlugin("S:\AutoMKV079a\exe\filter\SoundOut.dll")
15:42:59 NicAC3Source("S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed1.ac3")
15:42:59 #Applying STEREO downmixing routines
15:42:59 function stereo(clip a)
15:42:59 {
15:42:59 flr = GetChannel(a, 1, 2)
15:42:59 fcc = GetChannel(a, 3)
15:42:59 lfe = GetChannel(a, 4)
15:42:59 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
15:42:59 mix = MergeChannels(lfc, lfc)
15:42:59 lrc = MixAudio(flr, mix, 0.2929, 1.0)
15:42:59 blr = GetChannel(a, 5, 6)
15:42:59 Return MixAudio(lrc, blr, 1.0, 0.2929)}
15:42:59 #
15:42:59 6==Audiochannels() ? stereo() : last
15:42:59 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV079a\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.25 -if - -of audio.mp4",postfilename="",nofilename=true,showoutput=false)
15:42:59 -----------------------------------------------------------------------
15:42:59 Script mkvmaudio.bat
15:42:59
15:43:00 "S:\AutoMKV079a\exe\BeSweet\ffmpeg.exe" -y -t 1 -i "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\mkvmaudio.avs" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\junk.wav"
15:43:00 -----------------------------------------------------------------------
15:43:00 Script mkvmaudio2.avs
15:43:00
15:43:00 LoadPlugin("S:\AutoMKV079a\exe\filter\NicAudio.dll")
15:43:00 LoadPlugin("S:\AutoMKV079a\exe\filter\SoundOut.dll")
15:43:00 NicAC3Source("S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\fixed2.ac3")
15:43:00 #Applying STEREO downmixing routines
15:43:00 function stereo(clip a)
15:43:00 {
15:43:00 flr = GetChannel(a, 1, 2)
15:43:00 fcc = GetChannel(a, 3)
15:43:00 lfe = GetChannel(a, 4)
15:43:00 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
15:43:00 mix = MergeChannels(lfc, lfc)
15:43:00 lrc = MixAudio(flr, mix, 0.2929, 1.0)
15:43:00 blr = GetChannel(a, 5, 6)
15:43:00 Return MixAudio(lrc, blr, 1.0, 0.2929)}
15:43:00 #
15:43:00 6==Audiochannels() ? stereo() : last
15:43:00 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV079a\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.25 -if - -of audio2.mp4",postfilename="",nofilename=true,showoutput=false)
15:43:00 -----------------------------------------------------------------------
15:43:00 Script mkvmaudio2.bat
15:43:00
15:43:00 "S:\AutoMKV079a\exe\BeSweet\ffmpeg.exe" -y -t 1 -i "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\mkvmaudio2.avs" "S:\AutoMKV079a\temp\MainMovie\RASHOMON\VIDEO_TS\temp\junk2.wav"
15:43:00
15:43:00 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
There's something goofy going on in the highlighted area, but I don't know what.
buzzqw
29th March 2007, 07:32
audio = DirectShowSource("D:\Video\TV\Lost\Lost.S03E13.720p.HDTV.x264-CTU.mkv",fps=23.976044,convertfps = true,video=false)
seems that DirectShowSource is unable to access your file,
create an avs script with written only
DirectShowSource("D:\Video\TV\Lost\Lost.S03E13.720p.HDTV.x264-CTU.mkv",fps=23.976044,convertfps = true,video=false)
and open with media player classic, are you able to hear sound ?
@nx6
please don't blame me... but
grayscale() doesn't exists... use
greyscale() :p
btw thanks for answering and suggesting to other user!
(yesterday i was busy with some redolog/controlfile of one of our oracle servers...)
BHH
nx6
29th March 2007, 09:03
@nx6
please don't blame me... but
grayscale() doesn't exists... use
greyscale() :p
BHH
:eek: :eek: :eek:
They're both correct spellings, it's just :rolleyes:
:thanks: I will try again later on (these jobs take a loooooong time to encode).
delacroixp
29th March 2007, 09:13
@nx6
please don't blame me... but
grayscale() doesn't exists... use
greyscale() :p
In programming... there is no room for "syntax" errors...
I'm dying to see how your 'grayscale' encode pans out... it's pretty exciting...
You don't perhaps know how to use "single channel mono (http://forum.doom9.org/showthread.php?t=113811&page=66)"... I tried to downmix... (in BeSweet/Belight) but the new file is larger than the stereo-only... it still seams to be creating 2 channels, rather than one... albeit 'mono channels'...
:eek: :eek: :eek:
They're both correct spellings, it's just :rolleyes:
:thanks: I will try again later on (these jobs take a loooooong time to encode).
Try a 100 MB clip first... perhaps you can rip just one chapter.
I've been trying some seriously HQ 2-pass encodes since I now know how large (proportionally) each episode of BoB should be... I used the first chapter from the first episode which still turned out to be 400 MB...
Anyway I tried the "HighQuality-Insane" profile set to the same filesize as the 22-CQ-CRF encode... I normally got 6fps... now I got 2fps (x2 - for the 2nd pass)... so it took six-times longer... Funny enough... there was no significant difference in quality though I will have a closer look later...
I usually look for differences in small text in the intro... especially the 'diagonal leg' of the capital 'R'... maybe even in red... but I could see nothing.
For maximum quality... what kind of profile/filters/settings do you recommend ??? I'm looking for Q20-CRF quality on a Q22-CRF budget...
:) :D :eek:
Pascal
delacroixp
29th March 2007, 10:03
If I save my "Original" settings AutoMKV restarts with the Resize Filter option set to "SimpleResize(neutral soft)" instead of NONE.
Perhaps
IF someone chooses the 'AutoCrop Only' option... THEN
IF using MKV container... THEN
no resizing takes place and muxing switches are automatically set.
ELSE resize accordingly.
:):D:eek:
Pascal
nx6
29th March 2007, 10:26
In programming... there is no room for "syntax" errors...
I'm dying to see how your 'grayscale' encode pans out... it's pretty exciting...
You mean the greyscale encode? :D
You don't perhaps know how to use "single channel mono (http://forum.doom9.org/showthread.php?t=113811&page=66)"
No, I do actually. I just forgot to set it on the audio settings when I did the "normal" encoding so I was purposefully leaving it on stereo with this grayscale attempt as well for consistency (since I would be comparing the final movie sizes).
Since the size of the "color" one was 1.66GB (@CRF:18), I know the final encoding I do when I finish playing around will be at a lower quality setting anyway, I can downmix it on that one. But I'll just use the default CRF profile for now (to avoid anymore hiccups like accidentally deleting brackets). :D
gekan
29th March 2007, 11:00
...
For maximum quality... what kind of profile/filters/settings do you recommend ??? I'm looking for Q20-CRF quality on a Q22-CRF budget...
What do you mean "Q20-CRF quality on a Q22-CRF budget"?
delacroixp
29th March 2007, 11:31
For maximum quality... what kind of profile/filters/settings do you recommend ??? I'm looking for Q20-CRF quality on a Q22-CRF budget...
What do you mean "Q20-CRF quality on a Q22-CRF budget"?
Well... I'm looking for Q20 quality on Q22 filesize... with a little patience, endurance and persistence to help 'pay the way'...
:):D:eek:
Pascal
PlayWithFire
29th March 2007, 14:09
What format are the audio tracks in the MKV in?i have no idea, how do i find out?
create an avs script with written only
DirectShowSource("D:\Video\TV\Lost\Lost.S03E13.720p.HDTV.x264-CTU.mkv",fps=23.976044,convertfps = true,video=false)
and open with media player classic, are you able to hear sound ?yes, i can hear sound if i do this
gekan
29th March 2007, 14:40
Well... I'm looking for Q20 quality on Q22 filesize... with a little patience, endurance and persistence to help 'pay the way'...
:):D:eek:
Pascal
It would be great if you find settings to result in this way. It would be really great! :)
buzzqw
29th March 2007, 15:13
UPDATE !!! 0.80
new full package
http://www.64k.it/andres/data/a/AutoMKV080_NORIP.rar (12 mb)
http://www.64k.it/andres/data/a/AutoMKV080.rar (12.5 mb)
0.80 Full Package 29/03/2007
ADDED: MediaInfo. AutoMKV will use it as last resort to analyse input file
ADDED: New WMCmd.vbs. More stable and robust
ADDED: In Log file the AR reported by DgIndex
ADDED: WMV WVC1 preset based on Zambelli post http://forum.doom9.org/showthread.php?t=123812 , these preset are 2 pass encoding (Preset_Fast_WVC1.xml, Preset_Good_WVC1.xml, Preset_Better_WVC1.xml, Preset_Best_WVC1.xml, Prest_Insane_WVC1.xml)
ADDED: Normalize() to audio avs file. On my pc (p4 2.8ghz 1gb ram) took 10 minutes to analyze film like Matrix before start encoding, wait and go to drink a tea.
ADDED: FFmpeg.exe as encoder. If xvid_encraw/x264/wmcmd isn't able to process input file (not on dvd input) ffmpeg will try to encode to desidered codec/container/width (not autocrop sorry...). Manual crop will be parsed and applyed
ADDED: Multi Encoder!. If a file named "flv" or "msmpeg4v2" or "mpeg2video" or "rv10" is present in automkv folder then automkv will be force to used ffmpeg.exe to these format. (not woriking on dvd or avs input)
ADDED: VirtualDub (1.7.1) as launcher of SoundOut plugin. More support to "strange" avs audio file
FIXED: MP4 was recognized as AUDIO. Now is Video
FIXED: XviD_CQ profile is now a true CQ. BQuantRatio is set to 1 (suggestion by weaver4)
FIXED: In X264 the -ref was applyed two times (thanks to Demeragon)
FIXED: New Audio setting for WMV (more compatible with new WMCmd.vbs)
FIXED: AACgain doesn't work for installation path with space (like c:\program files\automkv\... ) (thanks to vgiozo)
FIXED: Some tuning to audio downmixing when using WMV
FIXED: Moved Force Mux AR to Muxing Options and Anamorphic Encoding to Aspect Ratio Options (suggestion by delacroixp)
FIXED: Some layout change to Log file
FIXED: Substituted RemoveGrain.dll to RemoveGrainS.dll (fix Athlon issue). If you have a more powerfull CPU delete this file and from http://home.arcor.de/kassandro/RemoveGrain/RemoveGrain.rar take the DLL version your CPU supports (RemoveGrainSSE2.dll or RemoveGrainSSE3.dll). Same job with RepairSSE2.dll or RepairSSE3.dll
FIXED: Some tuning to WMV bitrate calculator
FIXED: If profile is CRF or CQ, and user select Go Unlimited Size, the width is now set to "Original" (suggestion by nx6)
UPDATE: NicAudio to 2.0.0.2, DgIndex to 1.4.7 beta 17, X264 v635, ffmpeg.exe v8435
NOTE: i tryed to add support with ffmpeg to encode in DV and SNOW but without success. There are 2 sample encoding command line: where is the error ?
DV: ffmpeg.exe -i movie.avi -vcodec dvvideo -target dv -b 3000000 -cropleft 2 -croptop 72 -cropright 2 -cropbottom 72 -s 640x352 -r 25.000 -acodec pcm_u16le -ac 2 -ar 48000 test_dv.avi
SNOW: ffmpeg.exe -i movie.avi -vcodec snow -b 200000 -pass 1 -r 25.000 -acodec mp3 -ac 2 -ab -ar 44100 test_snow.snow
@delacroixp
try with "spresso" filter or the Kiss method (keep it simple/stupid) "Deen().Undot()"
@PlayWithFire
do proprierties of file, is 5.1 ? (and try this update!)
BHH
Shark_jlc
29th March 2007, 15:17
Awesome Buzzqw, I look forward to trying this out tonight!
PlayWithFire
29th March 2007, 15:17
@buzzqw, AWESOME!
i'll try the update tonight, thanks a lot!
(I think i might need to explore where that PayPal button goes :p )
DarkZell666
29th March 2007, 15:55
@buzzqw:
I see one error with the snow command-line:
-ab needs a value (and there isn't any specified).
ex: -ab 128000 (for 128kbps).
I'm not sure about the absence of -ab for the DV command-line though, it may be a predetermined value due to the use of the "pcm_u16le" audio codec.
buzzqw
29th March 2007, 16:41
i'm not sure about the absence of -ab for the DV command-line though, it may be a predetermined value due to the use of the "pcm_u16le" audio codec.
without the value it will use the 1536 (iirc)
BHH
Shark_jlc
29th March 2007, 17:03
Sorry about the size of this post, but I got tired of waiting for the attachments to be approved.
1st post: http://forum.doom9.org/showthread.php?p=975924#post975924
2nd Post: http://forum.doom9.org/showthread.php?p=976021#post976021
3rd Post: http://forum.doom9.org/showthread.php?p=976379#post976379
Movie.avs
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\autocrop.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\BicublinResize.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\blockbuster.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\cnr2.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\ColorMatrix.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\Convolution3D.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\corrector.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\DctFilter.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\Decomb.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\Deen.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\degrainmedian.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\DGDecode.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\EEDI2.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\fft3dfilter.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\FluxSmooth.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\frfun7.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\hqdn3d.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\LeakKernelDeint.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\MaskTools.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\medianblur.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\MipSmooth.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\mt_masktools.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\mvtools.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\NicAudio.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\RemoveGrain.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\Repair.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\SangNom.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\SimpleResize.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\SoundOut.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\TBilateral.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\TDeint.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\TIVTC.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\TomsMoComp.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\TTempSmooth.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\UnDot.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\UnFilter.dll")
LoadPlugin("C:\Program Files\AutoMKV079a\exe\filter\VSFilter.dll")
#loadpluginstart
#test1
Import("C:\Program Files\AutoMKV079a\exe\filter\MCBob_v03c.avsi")
Import("C:\Program Files\AutoMKV079a\exe\filter\mvbob.avsi")
Import("C:\Program Files\AutoMKV079a\exe\filter\seesaw.avsi")
Import("C:\Program Files\AutoMKV079a\exe\filter\spresso.avsi")
#importstart
#test2
movie = mpeg2source("D:\temp\movie.d2v")
function getOrder(clip c) {
order = GetParity(c) ? 1 : 0
Return order }
#filter1start
#test3
#cropstart
cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
fixed_aspect = 0.888889
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 = 720
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)
last = movie
tfm(d2v="D:\temp\movie.d2v").tdecimate()
#resizestart
#test4
#filter2start
#test5
RemoveGrain(mode=2)
ColorMatrix("Rec.709->Rec.601",hints=false,threads=2)
audio=ConvertAudioToFloat(audio)
audio=getchannel(audio,1,2)
audiodub(audio,last)
Deint.log (edited for length)
processed frames: 29/2850 -- 1% completed
.........
processed frames: 2850/2850 -- 100% completed
BAutoDeint [info]: Number of sections of type `unknown': 121
BAutoDeint [info]: Number of sections of type `progressive': 16
BAutoDeint [info]: Number of sections of type `film': 53
processed frames: 0/1895 -- 0% completed
processed frames: 19/1895 -- 1% completed
.......
processed frames: 1895/1895 -- 100% completed
BAutoDeint [info]: Number of sections of type `bff': 56
BAutoDeint [info]: Number of sections of type `tff': 226
BAutoDeint [info]: Number of sections of type `unknown': 97
Processing completed. Type is determined to be partly film.
Field order is variable.
Any help is appreciated. I will try again tonight with .80, but nothing jumped out at me in the change log as helping with this specific issue.
glynor
29th March 2007, 17:32
Two things I found with this build (0.80), one very small and one big.
1) The first time you use this, VirtualDub will give you a warning that you have to click through and until you do it pauses all execution. This warning is minimized though so if you wander off you might not ever see it. No huge deal, but just be aware.
2) When I'm ripping from an episodic VOB/IFO on my hard drive (ripped from DVD using DVD Fab Decrypter), and I've selected a second audio track, and I encode directly (by clicking the "Start Encoding" button) everything goes smoothly. However, if I add the job to the Queue, the second audio track gets forgotten somehow and does not get processed. I discovered this today with 0.79a and tried it again with 0.80 and no change. I have no idea if this only applies to jobs similar to the one I'm processing, or if it applies to all jobs sent to the Queue (I've only tried the one type so far). Either way, with five or six different jobs I've tried the second audio track is not getting done for jobs sent to the Queue.
Also... A couple of little questions:
I'm not real clear on when we have to check the new Process this PGC/IFO options vs. when we don't. The select PGC combobox is always active on the Basic Settings tab and always seems to list all of the titles when I select a IFO file as the Input. If I'm ripping an Episodic DVD, and I don't check the Process this PGC/IFO options, but I choose one of the titles from the Select PGC combobox, what happens? Is my selection in the combobox ignored (and if so, why isn't the combobox greyed out)? Something else?
My other question is more of a request. I realize you generally dislike working on the Queued Jobs section of the application, buzzqw. However, it'd be really keen if we could get two things:
a) In the Queued Job listing tab, can you move the Movie Name field over to the far left of the window (just to the right of the Input File field maybe)? When I'm trying to see what jobs I've queued, the Movie Name field is generally the most important one, and it's way over to the right where I can't see it. Alternatively, if we could re-order those ourselves (and have it "stick") that'd be swell.
b) It'd be super-keen if we could re-order the job list. I realize this might be some serious work though... But keep it in mind. Quite often if I decide that one job is more important than others, I have to delete all of the jobs in order to move one up a few "steps". I imagine I could also do it by closing AutoMKV and then manually re-numbering the queue#.ini files, but I've never tried (and that's certainly less than intuitive).
Oh, and thanks a lot for trying on the DV encoding. Sorry that I can't be any help with the command line though! I'm no FFMPEG ninja...
buzzqw
29th March 2007, 19:45
@Shark_jlc
the script miss the audio=XXXX (must be just after movie= )
what audio tracks have you selected ???
@glynor
The select PGC combobox is always active on the Basic
in dvd mode (main film only), without checking use this pcg and process this ifo is used only for determine the pgc of subtitle extraction
Process this ifo: is to check before selectin the ifo (on already ripped dvd).
Normaly automkv even if you point to a specific ifo will select the BIGGEST ifo, and so the vobs belonging to this ifo will be processed.
BUT if you check (before manual selecting the ifo) Use this IFO automkv will process only the vobs belonging to this SPECIFIC IFO. (example you select Video_TS.ifo... then only Video_TS_0X.vob will be processed)
The Use this PCG is to use with dvd that contain only one pgc (one set of vobs) BUT this vobs contain multiple episodes.
So you select the ifo (before have checked use this ifo), AND then CHECK USE THIS PGC, go in main tab and select from combo list the PGC (episode) to process.
After the FULL film is ripped (if needed) autoMKV will SCAN all this vobs and will create a NEW VOB that contain ONLY this PGC and then will work on this vob
I hope to be clear! (someone will copy this to the wiki... ?)
about missing audio: thanks.. i will look at this!
about queue... :scared: ... i will try ... but as you well understud i don't like working on it too much...
BHH
Shark_jlc
29th March 2007, 19:50
@Shark_jlc
the script miss the audio=XXXX (must be just after movie= )
what audio tracks have you selected ???
...
BHH
The only thing in the drop down typically, as I try to rip the dvd's with only the audio track I want to use. I can verify tonight though.
glynor
29th March 2007, 20:02
VirtualDub has been crashing on me when trying to convert the audio track (track 1) in a conversion to NeroAAC for me (two different occasions with two different "episodes" from the same DVD rip). I haven't completed the encode yet (the last time I killed it after VirtualDub crashed), but it looks like it might still be working...
Here's the relevant details of the encode from the log:
14:12:55 Track Language 1: English (AC3 2ch, 0xBD 0x80) [0,1,2,3,4,5,6]
14:12:55 Audio Codec 1: Nero AAC
14:12:55 Audio Quality 1: 0.50
14:12:55 Audio Channel 1: Stereo
14:12:55 Advanced Audio Settings DUMP Track 1
14:12:55 Nero Option Profiles: AUTO --- Encoding Mode: Quality
14:12:55 CCT Option Profiles: AUTO --- Channel Options: AUTO
Nothing really appears to be showing up in the log related to the crash though, and the VirtualDub error message didn't really provide much info (other than that VirtualDub had crashed)... What else can I post to help?
EDIT: Here's the mkvaudio.bat and mkvaudio.avs from this run: http://www.geocities.com/ri0n/automkv/vdub_audio_crash.zip
nx6
29th March 2007, 20:54
i have no idea, how do i find out?
If you're playing the file in VLC Media Player, go to View->Stream and Media Info, then click on the "Advanced information" tab.
If you're playing the file in Media Player Classic with ffdshow, go to File->Properties and click on the "Details" tab.
buzzqw
29th March 2007, 21:28
the crash happen early or while encoding ?
i have (again) encode audio track of matrix with your script and vdub don't blame...
please try change (inside mkvmaudio.bat)
"C:\Program Files\AutoMKV\exe\BeSweet\vdub.exe" /x "C:\video\projects\temp\mkvmaudio.avs" to
"C:\Program Files\AutoMKV\exe\BeSweet\ffmpeg.exe" -y -t 1 -i "C:\video\projects\temp\mkvmaudio.avs" "C:\video\projects\temp\junk.wav"
and relaunch mkvmaudio.bat, but i supposce could be "damaged" your ac3 file (bad rip ?)
BHH
glynor
29th March 2007, 21:59
the crash happen early or while encoding ?
I believe right as the encode was finishing. The encode where VirtualDub crashed (that caused me to post before) actually just finished all the way, and the audio appears to work perfectly (for both tracks). I can't hear any problems with it at all.
The only real issue then is that the error message VDub threw up blocked AutoMKV from completing until I clicked "OK".
please try change (inside mkvmaudio.bat)
"C:\Program Files\AutoMKV\exe\BeSweet\vdub.exe" /x "C:\video\projects\temp\mkvmaudio.avs" to
"C:\Program Files\AutoMKV\exe\BeSweet\ffmpeg.exe" -y -t 1 -i "C:\video\projects\temp\mkvmaudio.avs" "C:\video\projects\temp\junk.wav"
and relaunch mkvmaudio.bat, but i supposce could be "damaged" your ac3 file (bad rip ?)
Since the encode worked, I'd guess the AC3 file was okay (though maybe it has a small error in it near the end). I'm actually testing re-encoding the same file right now and I'll watch to see when the error comes up. Interestingly, in the progress dialog that comes up, it lists:
Source Position: [00.12:55] of [00:00:05] Speed 10.74 x Realtime
Which appears that it doesn't have an accurate total length.
Okay... My test re-encode just finished. The error comes up after VirtualDub is completely finished converting (and after the 5 second auto-close countdown on the progress dialog finishes). The error lists the crash details as:
An out-of-bounds memory access (access violation) occurred in module 'SoundOut'...
...reading address 00000004.
I also have a "crashinfo.txt" file generated by VDub that I can post if you need it.
I'm trying it right now with the modified BAT file...
Dum...dee...dum... :)
No error that time. Don't know if that helps though. The junk.wav file it generated is tiny (188 kb) and doesn't appear to contain any actual sound. Do you need anything posted further?
delacroixp
29th March 2007, 22:44
You've surpassed yourself yet again... surely another miracle of software engineering...
I will certainly download 080 tonight and try it out sometime next week...
LoL... Just kidding...
@delacroixp
try with "spresso" filter or the Kiss method (keep it simple/stupid) "Deen().Undot()"
@PlayWithFire
do proprierties of file, is 5.1 ? (and try this update!)
I read In (http://www.amazon.com/Search-Excellence-Lessons-Americas-Companies/dp/0446385077) search (http://www.businessballs.com/tompetersinsearchofexcellence.htm) of (http://www.mckinsey.com/ideas/books/insearchofexcellence.asp) Excellence (http://en.wikipedia.org/wiki/In_Search_of_Excellence) while doing Business Science at varsity... one of their main themes was "kiss" and "if not broke why fix it".
In the quest for perfection rather than simplicity I will definitely give SPresso a go... your version doesn't seam to have any variations ???
Most of your filters have a couple of different flavours...
:):D:eek:
Pascal
dlflannery
30th March 2007, 01:13
.... The first time you use this, VirtualDub will give you a warning that you have to click through and until you do it pauses all execution. This warning is minimized though so if you wander off you might not ever see it. No huge deal, but just be aware........
Same experience for me ... I never saw any message -- finally just closed the command window Vdub was running in. Then it went on OK. Didn't happen again on the second try.
Shark_jlc
30th March 2007, 02:58
3 things:
1) I have the exact same issue with .80 as I did with .79a (see my post above), I had 2 options in my audio drop down ("English (AC3 2ch, 0xBD 0x81)[0]" and "English AC3 2ch, 0xBD 0x82)[0]"), and I chose the first one. The length by the encoder was still determined to be 10 seconds.
Virtualdub did give me a different error this time though when I tried to open movie.avs:
Avisynth open failure:
TFM: Illegal transitions found in dvd2avi project file!
Please use the fixed version that has been created
in the same directory as the original d2v file.
(d:\temp\movies.avs, line 74)
Here is my AutoMKV output:
20:34:51 0.80 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
20:34:51 Selected Input file: D:\todo\MainMovie\SHEERLUCKHOLMES\VIDEO_TS\VTS_01_0.IFO
20:34:51 Selected Output dir: D:\temp\
20:34:51 Selected Final Name: VIDEO_TS
20:34:51 Selected Container type: WMV
20:34:51 Selected Encoder: WMV
20:34:51 Selected Size: Don't care about size
20:34:51 Selected Slice: 1
20:34:51 Selected Profile: 1_Pass_Quality_Quick.xml
20:34:51 Selected Width: Original
20:34:51 Selected Resizer: NONE
20:34:51 Selected Filters: RemoveGrain(mode=2)
20:34:51 Selected Deinterlacer: AUTO
20:34:51 Selected Field Order: AUTO
20:34:51 NeroAACEnc.exe: not present
20:34:51 Enabled CRF/CQ AutoRes at 89 value
20:34:51 Track Language 1: English (AC3 2ch, 0xBD 0x81) [0]
20:34:51 Audio Codec 1: WMV
20:34:51 Audio Quality 1: 128
20:34:51 Audio Channel 1: Stereo
20:34:51 Advanced Audio Settings DUMP Track 1
20:34:51 Nero Option Profiles: AUTO --- Encoding Mode: Quality
20:34:51 CCT Option Profiles: AUTO --- Channel Options: AUTO
20:34:51 Lame Settings: ABR
20:34:51 Audio Normalization: 1
20:34:51 Frequency: AUTO --- Tempo : NONE
20:34:51 Pitch: NONE --- Other Add :
20:34:51 Advanced Audio Settings DUMP Track 2
20:34:51 Nero Option Profiles: AUTO --- Encoding Mode: Quality
20:34:51 CCT Option Profiles: AUTO --- Channel Options: AUTO
20:34:51 Lame Settings: ABR
20:34:51 Audio Normalization: 1
20:34:51 Frequency: AUTO --- Tempo : NONE
20:34:51 Pitch: NONE --- Other Add :
20:34:51
20:34:51 Starting Indexing
20:34:51 Dgindex CMD: C:\Program Files\AutoMKV080\exe\dgindex\dgindex.exe -FO=0 -OM=1 -TN=1 -YR=2 -AIF=[D:\todo\MainMovie\SHEERLUCKHOLMES\VIDEO_TS\VTS_01_1.vob] -OF=[D:\temp\movie] -exit -minimize
20:35:37 Finished indexing
20:35:37 On selected tracks Dgindex isn't able to demux any audio tracks, now rerunning dgindex in demux all tracks mode
20:35:37 Dgindex CMD: C:\Program Files\AutoMKV080\exe\dgindex\dgindex.exe -FO=0 -OM=2 -YR=2 -aif=[D:\todo\MainMovie\SHEERLUCKHOLMES\VIDEO_TS\VTS_01_1.vob] -OF=[D:\temp\movie] -exit -minimize
20:36:29 Finished FULL indexing
20:36:29 Starting fixing audio delay on track number 1
20:36:29 Finished fixing audio delay
20:36:34 Number of Frames: 94557
20:36:34 Framerate: 29.970030
20:36:34 Movie length in Seconds: 3156
20:36:34 Movie Width/Height: 720/480
20:36:34 DgIndex AR: 4:3
20:40:09 Processing completed. Type is determined to be partly film.
20:40:09 Processing completed. Type is determined to be partly film.
20:40:09 BFF: 56
20:40:09 TFF: 224
20:40:09 Order: var
20:40:09 WMV CMD: cscript.exe "C:\Program Files\AutoMKV080\exe\encoder\WMCmd.vbs" -input "D:\temp\movie.avs" -output "D:\temp\movie.wmv" -v_codec WMV9 -v_mode 2 -v_quality 90 -s_config "D:\temp\wmv_crb" -v_bframedist 1 -v_dquantoption 2 -v_lookahead 0 -v_mbmodecost 0 -v_mmatch 0 -v_mslevel 1 -v_msrange 0 -v_mvcost 0 -v_bdeltaqp 1 -a_codec WMASTD -a_mode 0 -title "VIDEO_TS" -year 2007 -copyright "Done with AutoMKV! 0.80" -a_setting 128_48_2
20:41:09 Only Movie Size: 41331 bytes
20:41:10 Final Muxed size: 41331 bytes
20:41:10 Encoding finished: 00:06:19 elapsed time
20:41:10 -----------------------------------------------------------------------
20:41:10 Script AutoCrop.log
20:41:10
20:41:10 Crop(4,0,712,480)
20:41:10 -----------------------------------------------------------------------
20:41:10 Script Resmovie.avs
20:41:10 -----------------------------------------------------------------------
20:41:10 Script movie.avs
20:41:10
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\autocrop.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\BicublinResize.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\blockbuster.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\cnr2.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\ColorMatrix.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\Convolution3D.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\corrector.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\DctFilter.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\Decomb.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\Deen.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\degrainmedian.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\DGDecode.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\EEDI2.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\fft3dfilter.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\FluxSmooth.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\frfun7.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\hqdn3d.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\LeakKernelDeint.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\MaskTools.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\medianblur.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\MipSmooth.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\mt_masktools.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\mvtools.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\NicAudio.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\RemoveGrainS.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\RepairS.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\SangNom.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\SimpleResize.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\SoundOut.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TBilateral.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TDeint.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TIVTC.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TomsMoComp.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TTempSmooth.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\UnDot.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\UnFilter.dll")
20:41:10 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\VSFilter.dll")
20:41:10 #loadpluginstart
20:41:10
20:41:10 #test1
20:41:10
20:41:10 Import("C:\Program Files\AutoMKV080\exe\filter\MCBob_v03c.avsi")
20:41:10 Import("C:\Program Files\AutoMKV080\exe\filter\mvbob.avsi")
20:41:10 Import("C:\Program Files\AutoMKV080\exe\filter\seesaw.avsi")
20:41:10 Import("C:\Program Files\AutoMKV080\exe\filter\spresso.avsi")
20:41:10 #importstart
20:41:10
20:41:10 #test2
20:41:10
20:41:10 movie = mpeg2source("D:\temp\movie.d2v")
20:41:10 function getOrder(clip c) {
20:41:10 order = GetParity(c) ? 1 : 0
20:41:10 Return order }
20:41:10 #filter1start
20:41:10
20:41:10 #test3
20:41:10
20:41:10 #cropstart
20:41:10
20:41:10 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
20:41:10 fixed_aspect = 0.888889
20:41:10 c_width = width(cropclip)
20:41:10 c_height = Round(height(cropclip) / fixed_aspect)
20:41:10 input_par = float(float(c_width)/float(c_height))
20:41:10 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
20:41:10 out_width = 720
20:41:10 out_height = Round(float(out_width) / input_par)
20:41:10 hmod = out_height - (floor(out_height / 16 ) * 16)
20:41:10 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
20:41:10 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
20:41:10 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
20:41:10
20:41:10 last = movie
20:41:10 tfm(d2v="D:\temp\movie.d2v").tdecimate()
20:41:10 #resizestart
20:41:10
20:41:10 #test4
20:41:10
20:41:10 #filter2start
20:41:10
20:41:10 #test5
20:41:10
20:41:10 RemoveGrain(mode=2)
20:41:10 ColorMatrix("Rec.709->Rec.601",hints=false,threads=2)
20:41:10 audio=ConvertAudioToFloat(audio)
20:41:10 audio=Normalize(audio)
20:41:10 audio=getchannel(audio,1,2)
20:41:10 audiodub(audio,last)
20:41:10 -----------------------------------------------------------------------
20:41:10 Script mkvmaudio.avs
20:41:10 -----------------------------------------------------------------------
20:41:10 Script mkvmaudio.bat
20:41:10 -----------------------------------------------------------------------
20:41:10 Script mkvmaudio2.avs
20:41:10 -----------------------------------------------------------------------
20:41:10 Script mkvmaudio2.bat
20:41:10
20:41:10 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
2) Secondly, here is a command that gets executed before the encoding:
"C:\Program Files\AutoMKV080\exe\encoder\BAutoDeint.exe" --input "D:\temp\createautodeintmovie.avs" 1>"D:\temp\"deint.log
I think the quotes are in the wrong spot at the very end, I'm guessing it should be:
"C:\Program Files\AutoMKV080\exe\encoder\BAutoDeint.exe" --input "D:\temp\createautodeintmovie.avs" 1>"D:\temp\deint.log"
3) Lastly, this message is duplicated in the log. I noticed this on .79a as well, so this is not a new "feature":
20:40:09 Processing completed. Type is determined to be partly film.
dlflannery
30th March 2007, 05:23
......NOTE: i tryed to add support with ffmpeg to encode in DV and SNOW but without success. There are 2 sample encoding command line: where is the error ?
DV: ffmpeg.exe -i movie.avi -vcodec dvvideo -target dv -b 3000000 -cropleft 2 -croptop 72 -cropright 2 -cropbottom 72 -s 640x352 -r 25.000 -acodec pcm_u16le -ac 2 -ar 48000 test_dv.avi
..............
BHH
Buzz, I did some experimenting with this. If you try just:
ffmpeg -i myVideo.avi -target dv myVideo.dv it will work.
This produces a 720x480 file with yuv411p color.
Then you can try adding in the crops, fps, etc. What I found was:
1. You can only get a 720x480 output (or 720x576 if you use -target pal-dv). Looking at DV specs in wikipedia this makes sense because the formats are:
720x480, 4:1:1 (NTSC)
720x576, 4:2:0 (PAL)
However I found the color was still yuv411p even if I specified pal-dv.
If you use -s to specify any other size it throws an error.
2. Your crops and pads cannot change the image size. In other words the sum of top/bottom crops must equal the sum of top/bottom pads, and the same for left/right crop/pads. It appears crops and pads apply to the output format only, even if you put them before the input file name.
3. you can only get pcm_s16le audio. If you try to specify pcm_u16le it will not encode.
4. Frame rates are only 25 for pal and 29.97 for ntsc and do not need to be specified. If you specify the wrong frame rate it is an error.
5. aspect ratio can be specified but I can't see that it makes any difference in the encoded file.
6. video bitrate (-b) is meaningless and is ignored. The rate is determined by ffmpeg based on the other parameters.
7. I had to use the .dv extension on my output files in order for vlc player or quicktime player to recognize and play them.
8. You don't need the -vcodec option if target = dv.
I thought maybe if you did not specify the target ("dv") ffmpeg might let you set the other parameters to other values but I never found any combination that it would accept.
I couldn't get wmv files to encode to DV. Complained of audio sync errors.
Here is an example of the output from ffmpeg:
Input #0, avi, from 'myVideo.avi':
Duration: 00:01:52.8, start: 0.000000, bitrate: 1162 kb/s
Stream #0.0: Video: mpeg4, yuv420p, 640x480, 29.97 fps(r)
Stream #0.1: Audio: mp3, 48000 Hz, stereo, 128 kb/s
Assuming NTSC for target.
Output #0, dv, to 'test_dv.dv':
Stream #0.0: Video: dvvideo, yuv411p, 720x480, q=2-31, 200 kb/s, 29.97 fps(c)
Stream #0.1: Audio: pcm_s16le, 48000 Hz, stereo, 1536 kb/s
Stream mapping:
Stream #0.0 -> #0.0
Stream #0.1 -> #0.1
Press [q] to stop encoding
frame= 3380 fps= 66 q=0.0 Lsize= 396094kB time=112.8 bitrate=28771.2kbits/s
video:396094kB audio:21150kB global headers:0kB muxing overhead -5.068979%
Hope this helps you. DV files are so huge! When are they needed?
buzzqw
30th March 2007, 06:58
@glynor
thanks for your test!
seems that soundout could have some problem... on some audio source. I think that those audio track have some problem...
about junk.wav... yes is junk.. could you mail me the crash report ? just to point to Sh0dan
thanks again!
@delacroixp
the filter box is editable.. try to edit spresso to your taste!
and if you found an good setting post here! (to share with all) :)
@Shark_jlc
download dgindex 1.4.8 http://www.64k.it/andres/data/d/dgmpgdec148.zip , unzip in dgindex folder , take dgdecode.dll and put also in filter folder
in this way ivtc must be fixed
20:35:37 On selected tracks Dgindex isn't able to demux any audio tracks, now rerunning dgindex in demux all tracks mode
seems problem in demuxing. please do this:
1) manually launch dgindex and create the d2v file AND the audio file
2) launch AutoMKV, on input select the d2v and the audio file
3) set your wmv encoding and let's start encoding!
I think the quotes are in the wrong spot at the very end
it's is a true problem since bdeint will fuction.... i called it a missed feature... don't worry the test is fully operative
@dlflannery
thanks, i will do some more test based on your tests!
BHH
Bigmango
30th March 2007, 12:35
Hi,
I'm trying to shrink a movie for a mobile phone.
For this I'd like to set the FPS at 12.5 ; but there seems to be no way to set the fps in automkv ?
Could you please add this option ?
Thanks.
Ronin-7
30th March 2007, 12:49
Hi,
I'm trying to shrink a movie for a mobile phone.
For this I'd like to set the FPS at 12.5 ; but there seems to be no way to set the fps in automkv ?
Could you please add this option ?
Thanks.
I second this if it is at all possible buzzqw.
I picked up a Meizu M6 (http://en.meizu.com/product_m6.asp) which plays XviD in AVI but only at 20fps & would be great if I could use AutoMKV with it as most of the other conversion software is pretty poor.
buzzqw
30th March 2007, 13:09
or this I'd like to set the FPS at 12.5 ; but there seems to be no way to set the fps in automkv ?
picked up a Meizu M6 which plays XviD in AVI but only at 20fps
It is already possible!
in advanced setting, check "Last line AVS script" and write ChangeFPS(20.000) or ChangeFPS(12.500) :)
BHH
Shark_jlc
30th March 2007, 14:11
@Shark_jlc
download dgindex 1.4.8 http://www.64k.it/andres/data/d/dgmpgdec148.zip , unzip in dgindex folder , take dgdecode.dll and put also in filter folder
in this way ivtc must be fixed
seems problem in demuxing. please do this:
1) manually launch dgindex and create the d2v file AND the audio file
2) launch AutoMKV, on input select the d2v and the audio file
3) set your wmv encoding and let's start encoding!
BHH
It still failed. The encoding process still detected the length to be 10 seconds.
Here is the automkv log:
08:03:20 0.80 - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
08:03:20 Selected Input file: D:\MyTry\VTS_01_1.d2v
08:03:20 Selected Output dir: D:\MyTry-Output\temp\
08:03:20 Selected Final Name: VeggieTales - Sheerluck Holmes and the Golden Ruler
08:03:20 Selected Container type: WMV
08:03:20 Selected Encoder: WMV
08:03:20 Selected Size: Don't care about size
08:03:20 Selected Slice: 1
08:03:20 Selected Profile: 1_Pass_Quality_Quick.xml
08:03:20 Selected Width: Original
08:03:20 Selected Resizer: NONE
08:03:20 Selected Filters: RemoveGrain(mode=2)
08:03:20 Selected Deinterlacer: AUTO
08:03:20 Selected Field Order: AUTO
08:03:20 NeroAACEnc.exe: not present
08:03:20 Enabled CRF/CQ AutoRes at 89 value
08:03:20 Track Language 1: D:\MyTry\VTS_01_1 T02 2_0ch 192Kbps DELAY 0ms.ac3
08:03:20 Audio Codec 1: WMV
08:03:20 Audio Quality 1: 128
08:03:20 Audio Channel 1: Stereo
08:03:20 Advanced Audio Settings DUMP Track 1
08:03:20 Nero Option Profiles: AUTO --- Encoding Mode: Quality
08:03:20 CCT Option Profiles: AUTO --- Channel Options: AUTO
08:03:20 Lame Settings: ABR
08:03:20 Audio Normalization: 1
08:03:20 Frequency: AUTO --- Tempo : NONE
08:03:20 Pitch: NONE --- Other Add :
08:03:20 Advanced Audio Settings DUMP Track 2
08:03:20 Nero Option Profiles: AUTO --- Encoding Mode: Quality
08:03:20 CCT Option Profiles: AUTO --- Channel Options: AUTO
08:03:20 Lame Settings: ABR
08:03:20 Audio Normalization: 1
08:03:20 Frequency: AUTO --- Tempo : NONE
08:03:20 Pitch: NONE --- Other Add :
08:03:20
08:03:20 DelayCut CMD: C:\Program Files\AutoMKV080\exe\dgindex\Delaycut.exe -auto -out "D:\MyTry-Output\temp\fixed1.ac3" "D:\MyTry\VTS_01_1 T02 2_0ch 192Kbps DELAY 0ms.ac3"
08:03:23 DelayCut CMD: C:\Program Files\AutoMKV080\exe\dgindex\Delaycut.exe -auto -out "D:\MyTry-Output\temp\fixed2.ac3" "D:\MyTry\VTS_01_1 T03 2_0ch 192Kbps DELAY 0ms.ac3"
08:03:28 Number of Frames:
08:03:28 Framerate:
08:03:28 Movie length in Seconds: 0
08:03:28 Movie Width/Height: /
08:03:28 DgIndex AR: 4:3
08:03:31 Order: unk
08:03:31 WMV CMD: cscript.exe "C:\Program Files\AutoMKV080\exe\encoder\WMCmd.vbs" -input "D:\MyTry-Output\temp\movie.avs" -output "D:\MyTry-Output\temp\movie.wmv" -v_codec WMV9 -v_mode 2 -v_quality 90 -s_config "D:\MyTry-Output\temp\wmv_crb" -v_bframedist 1 -v_dquantoption 2 -v_lookahead 0 -v_mbmodecost 0 -v_mmatch 0 -v_mslevel 1 -v_msrange 0 -v_mvcost 0 -v_bdeltaqp 1 -a_codec WMASTD -a_mode 0 -title "VeggieTales - Sheerluck Holmes and the Golden Ruler" -year 2007 -copyright "Done with AutoMKV! 0.80" -a_setting 128_48_2
08:03:49 Only Movie Size: 25533 bytes
08:06:00 Final Muxed size: 25533 bytes
08:06:00 Encoding finished: 00:02:40 elapsed time
08:06:00 -----------------------------------------------------------------------
08:06:00 Script AutoCrop.log
08:06:00 -----------------------------------------------------------------------
08:06:00 Script Resmovie.avs
08:06:00 -----------------------------------------------------------------------
08:06:00 Script movie.avs
08:06:00
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\autocrop.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\BicublinResize.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\blockbuster.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\cnr2.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\ColorMatrix.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\Convolution3D.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\corrector.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\DctFilter.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\Decomb.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\Deen.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\degrainmedian.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\DGDecode.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\EEDI2.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\fft3dfilter.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\FluxSmooth.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\frfun7.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\hqdn3d.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\LeakKernelDeint.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\MaskTools.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\medianblur.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\MipSmooth.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\mt_masktools.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\mvtools.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\NicAudio.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\RemoveGrainS.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\RepairS.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\SangNom.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\SimpleResize.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\SoundOut.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TBilateral.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TDeint.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TIVTC.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TomsMoComp.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\TTempSmooth.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\UnDot.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\UnFilter.dll")
08:06:00 LoadPlugin("C:\Program Files\AutoMKV080\exe\filter\VSFilter.dll")
08:06:00 #loadpluginstart
08:06:00
08:06:00 #test1
08:06:00
08:06:00 Import("C:\Program Files\AutoMKV080\exe\filter\MCBob_v03c.avsi")
08:06:00 Import("C:\Program Files\AutoMKV080\exe\filter\mvbob.avsi")
08:06:00 Import("C:\Program Files\AutoMKV080\exe\filter\seesaw.avsi")
08:06:00 Import("C:\Program Files\AutoMKV080\exe\filter\spresso.avsi")
08:06:00 #importstart
08:06:00
08:06:00 #test2
08:06:00
08:06:00 movie = mpeg2source("D:\MyTry\VTS_01_1.d2v")
08:06:00 audio = NicAC3Source("D:\MyTry-Output\temp\fixed1.ac3",2)
08:06:00 function getOrder(clip c) {
08:06:00 order = GetParity(c) ? 1 : 0
08:06:00 Return order }
08:06:00 #filter1start
08:06:00
08:06:00 #test3
08:06:00
08:06:00 #cropstart
08:06:00
08:06:00 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
08:06:00 fixed_aspect = -1.#IND00
08:06:00 c_width = width(cropclip)
08:06:00 c_height = Round(height(cropclip) / fixed_aspect)
08:06:00 input_par = float(float(c_width)/float(c_height))
08:06:00 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
08:06:00 out_width =
08:06:00 out_height = Round(float(out_width) / input_par)
08:06:00 hmod = out_height - (floor(out_height / 16 ) * 16)
08:06:00 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
08:06:00 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
08:06:00 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
08:06:00
08:06:00 last = movie
08:06:00 #resizestart
08:06:00
08:06:00 #test4
08:06:00
08:06:00 #filter2start
08:06:00
08:06:00 #test5
08:06:00
08:06:00 RemoveGrain(mode=2)
08:06:00 audio=ConvertAudioToFloat(audio)
08:06:00 audio=Normalize(audio)
08:06:00 audio=getchannel(audio,1,2)
08:06:00 audiodub(audio,last)
08:06:00 -----------------------------------------------------------------------
08:06:00 Script mkvmaudio.avs
08:06:00 -----------------------------------------------------------------------
08:06:00 Script mkvmaudio.bat
08:06:00 -----------------------------------------------------------------------
08:06:00 Script mkvmaudio2.avs
08:06:00 -----------------------------------------------------------------------
08:06:00 Script mkvmaudio2.bat
08:06:00
08:06:00 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
VirtualDub fails to open Movie.avs on line 67 which now says: "out_width ="
Thanks for the help so far buzzqw.
buzzqw
30th March 2007, 14:16
this problem is due to compatibility.
open the movie.avs
change fixed_aspect = -1.#IND00 to fixed_aspect = 1.42222
and change out_width = to out_width = 720
save movie.avs and launch movie_wmv.bat!
BHH
Shark_jlc
30th March 2007, 14:33
this problem is due to compatibility.
open the movie.avs
change fixed_aspect = -1.#IND00 to fixed_aspect = 1.42222
and change out_width = to out_width = 720
save movie.avs and launch movie_wmv.bat!
BHH
This was my output from running movie_wmv.bat
D:\MyTry-Output\temp>cscript.exe "C:\Program Files\AutoMKV080\exe\encoder\WMCmd.vbs" -input "D:\MyTry-Output\temp\movie.avs" -outp
ut "D:\MyTry-Output\temp\movie.wmv" -v_codec WMV9 -v_mode 2 -v_quality 90 -s_config "D:\MyTry-Output\temp\wmv_crb" -v_bframedist
1 -v_dquantoption 2 -v_lookahead 0 -v_mbmodecost 0 -v_mmatch 0 -v_mslevel 1 -v_msrange 0 -v_mvcost 0 -v_bdeltaqp 1 -a_codec WMASTD
-a_mode 0 -title "VeggieTales - Sheerluck Holmes and the Golden Ruler" -year 2007 -copyright "Done with AutoMKV! 0.80" -a_settin
g 128_48_2
Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
Microsoft (R) Windows Media Encoder Command Line Script Utility
Copyright (C) Microsoft Corporation. All rights reserved.
Title: VeggieTales - Sheerluck Holmes and the Golden Ruler
Year: 2007
Copyright: Done with AutoMKV! 0.80
Warning: Encoder failed to retrieve duration attribute from source plug-in.
Trying alternate method now................................
Warning: Encoder failed to retrieve source duration again.
Encode process might not continue or progress report may be inaccurate.
...
======== Encoding Completed ========
Video :
Codec: Windows Media Video 9
Average bit rate: 8228 bps
Expected fps: 24
Dropped frame count: 0
Total coded frames: 240
Average sample rate: 24.001
Dropped bytes: 0 bytes
Total bytes: 68584 bytes
Overall:
Encoding time: 56 seconds
Average bit rate: 8228 bps
File size: 80405 bytes
File duration: 9.991 seconds
Obviously, 56 seconds of encode is still too short :/
buzzqw
30th March 2007, 14:39
Total coded frames: 240
open the avs in virtualdub , must be present another error
post here! :)
we will hunt down it!
BHH
glynor
30th March 2007, 15:04
DV files are so huge! When are they needed?
DV files are fairly large. The DV-NTSC codec data rate is 3.6MB/s, which results in file sizes for raw DV streams of roughly 12.9GB/hour. Still, this is a far cry from the data rates of other formats used natively by "pro" Non-Linear Editor applications (Avid, FCP, etc). DVCPRO 50 runs 7.2MB/s for example, commonly used 2:1 M-JPEG runs 12MB/s, and uncompressed SD (8-bit) runs 24MB/s.
I, personally, use DV because Final Cut Pro supports editing DV video natively (I don't have to render the files before use when I bring them into a FCP Project), and because it is the native format of just about every SD camcorder there is (and when importing footage from my cameras I can work with the exact same bit-perfect copy of the data that the camera "recorded"). Like I said when I originally mentioned it could be useful... I won't use it TOO much, but since x264 is such a nice quality codec, it would be nice to be able to compress some of my less-quality-sensitive source footage to x264 for long-term storage, and then have AutoMKV "reinflate" the files to DV so that I can use them in FCP. It'd save me tons of storage space for archival and stock footage. :)
When editing, DV has a number of benefits over some other formats that you may be thinking of (such as MPEG-2), mostly speed and quality related. MPEG-2 can be a very high-quality codec, but compressing to it in high qualities takes time and CPU power. DV is much "easier" on the system, and allows it to render a lot more things in real time. When you're editing raw footage together and adding effects and transitions and overlaying multiple different video tracks, performance can certainly be an issue (just try to edit a sequence in MPEG-2 with 15 video streams playing back at once)! In that kind of situation, dropping even 1 frame isn't really acceptable...
@glynor
thanks for your test!
seems that soundout could have some problem... on some audio source. I think that those audio track have some problem...
about junk.wav... yes is junk.. could you mail me the crash report ? just to point to Sh0dan
thanks again!
Thanks for looking into it for me. As I said, since the file encoded successfully I'm really not too concerned, as long as it doesn't happen with a bunch of other encodes. If it happened just this one time... Well then, that's just bad luck I guess!
I'm happy to mail the crash report (and did), but I'm not sure what you mean by "point to Sh0dan" (I think that's the person who developed SoundOut, but I'm not sure what you were getting at)... Can I have a clue?
Shark_jlc
30th March 2007, 16:01
in dvd mode (main film only), without checking use this pcg and process this ifo is used only for determine the pgc of subtitle extraction
Process this ifo: is to check before selectin the ifo (on already ripped dvd).
Normaly automkv even if you point to a specific ifo will select the BIGGEST ifo, and so the vobs belonging to this ifo will be processed.
BUT if you check (before manual selecting the ifo) Use this IFO automkv will process only the vobs belonging to this SPECIFIC IFO. (example you select Video_TS.ifo... then only Video_TS_0X.vob will be processed)
The Use this PCG is to use with dvd that contain only one pgc (one set of vobs) BUT this vobs contain multiple episodes.
So you select the ifo (before have checked use this ifo), AND then CHECK USE THIS PGC, go in main tab and select from combo list the PGC (episode) to process.
After the FULL film is ripped (if needed) autoMKV will SCAN all this vobs and will create a NEW VOB that contain ONLY this PGC and then will work on this vob
I hope to be clear! (someone will copy this to the wiki... ?)
BHH
Copied to the wiki, I may make this into its own page.
buzzqw
30th March 2007, 16:16
@glynor
got dv working, thanks to dlflannery!
(fixed in next update)
thanks for crash report, I will send to Sh0dan! :)
@Shark_jlc
thanks for the WIKI update!!
also remember to open the movie.avs in virtualdub and tell the error
BHH
Shark_jlc
30th March 2007, 16:27
...
@Shark_jlc
thanks for the WIKI update!!
also remember to open the movie.avs in virtualdub and tell the error
BHH
No problem. I'll have to open the file tonight (in about 8 hours) when I get home from work, and I wont forget :)
Ronin-7
30th March 2007, 17:36
It is already possible!
in advanced setting, check "Last line AVS script" and write ChangeFPS(20.000) or ChangeFPS(12.500) :)
BHH
That's great thanks for the tip buzzqw.
suppperj
30th March 2007, 18:06
Let me just say that after reading 80 pages of this post I'm both completely impressed and intimidated. I understand why the forum makes neebies wait 5 days...I found most of my solutions reading through this post.
My question is a bit more basic than what I've seen on here so far. When selecting my resize option I've found that I like "autocrop" the best.
I understand that the other filters are best used for either upsizing or downsizing but my question is, why upsize or downsize at all? I understand if you're converting a video for an IPod or Zune but I'm playing my videos on a big screen TV.
Is there an advantage to resizing that I don't know about?
Would changing my CRF give me the quality I'm looking for in a 700mb file?
Sorry for being long winded. I appreciate everything you guys are doing...even if I don't understand 3/4 of it. Thanks.
Bigmango
30th March 2007, 18:22
It is already possible!
in advanced setting, check "Last line AVS script" and write ChangeFPS(20.000) or ChangeFPS(12.500) :)
BHH
:eek: thx for the tip !
Hope you'll add that small FPS gui option in the next version, for the common folks like me.
:thanks:
salman1
30th March 2007, 18:40
how to add more than just one filter using this program
i want to use removegrain and removedirt
buzzqw
30th March 2007, 19:22
@suppperj
first of all Welcome to the FORUM!
but I'm playing my videos on a big screen TV.
yep.. not all have big lcd/plasma tv and in smaller tv even the 576*xxx is ok to view
also you want quality (using the crf profile) but quality is a personal taste , opinion and for me 700mb could not be enough for many films...
Also... someone use SAP (stand alone player, divx player) and rarely sap support big resolution...
and one last hint: Would changing my CRF give me the quality I'm looking for in a 700mb file?
If you want quality IN 700 MB don't use CRF, use Encoding-MainProfile. A 2 pass profile is often the best option to get quality in determinated media size.
@salman1
i want to use removegrain and removedirt
more then simple on filter box write removegrain(mode=2).RemoveDirt()
or use whatever filter but remember to concatenate with .
BHH
salman1
30th March 2007, 20:58
also what filter can i use to get rid of video noise?
Barleyman
30th March 2007, 21:53
Ha, looks like AutoMKV has been "discovered".
Not quite as bad as being featured in /., but something like that by the new blood.
So about splitting the AutoMKV thread.. :devil: Are we waiting for 100 pages?
I put in some stuff to the "profiles" section about xvid profiles that I know something about. Feel free to document the intimidating h.264 and WMV profile pull-down selections! http://automkv.wiki-site.com/index.php/Profiles
suppperj
30th March 2007, 22:27
I'm grateful I discovered MKV. For a newbie it seems to be the best of all worlds.
So if I am one of the lucky few that can display his video on a larger screen does that mean the "autocrop" selection is best? I've been using autocrop and limiting my size to 700mb with very satisfactory results.
I'm afraid I'm missing out on better quality because I'm not resizing.
I'd take these general questions to a more general forum but I've come to trust the answers here after having been able to fix other problems based on the advice in this thread.
Barleyman
30th March 2007, 22:53
Generally speaking resize during encoding is bad, m'kay? If you care about quality, that is. 700MB is fine for about 45-60min of DVD with AC3 audio using XVID.
If you try to fit movie into as small space as possible, it's better to resize it to a smaller size than have lovely lego-blocks all over the screen due to too much compression. So quality-wise it goes:
original size + bigger file > resized + smaller file > original size + smaller file.
Cropping is usually for only the letterbox movies that have black bars on top/bottom. Typical for stuff you get from TV. Letterbox movies with subtitles need special care..
Autocrop checks little bit of the beginning of the movie (still in 0.8?) to see if it has black bars. If the movie is 16:9 (fills wide-screen tv), autocrop shouldn't do anything at all.
dlflannery
31st March 2007, 00:43
@glynor
Thanks for the tutorial on benefits of DV -- very interesting!
weaver4
31st March 2007, 01:33
I encoded a movie using XviD with MP3 last night. The audio on the movie was about 15 db lower in volume than the same movie done with AutoGK. I looked in the log and I did not see anywhere where the volume was normalized.
dlflannery
31st March 2007, 02:53
ADDED: Multi Encoder!. If a file named "flv" or "msmpeg4v2" or "mpeg2video" or "rv10" is present in automkv folder then automkv will be force to used ffmpeg.exe to these format.
How does this work? I've put files named flv and flv.flv in the folder containing automkv080.exe. But when I start to encode a .flv video (either to WMV or to AVI/XVID) I just get an error message: "No Video Sequence Header Found" :confused: DGIndex is left running and has to be shut down manually.
I've used ffmpeg (outside AutoMKV) to encode this video to WMV7 and WMV8 with no problem.
When I encode using AVS to source this file into autoMKV it encodes but there are some video and audio glitches near the end. The ffmpeg encodings do not have these problems, so it would be nice to be able force autoMKV to use ffmpeg for the encoding.
Shark_jlc
31st March 2007, 03:47
@Shark_jlc
thanks for the WIKI update!!
also remember to open the movie.avs in virtualdub and tell the error
BHH
Here is the errror. It's horrible screenshot, but here it is: http://picasaweb.google.com/shackmiscpics/Misc/photo#5047914159952217954
I'm going to try to find the duplicate dll file and retry all this.
Shark_jlc
31st March 2007, 04:24
Here is the errror. It's horrible screenshot, but here it is: http://picasaweb.google.com/shackmiscpics/Misc/photo#5047914159952217954
I'm going to try to find the duplicate dll file and retry all this.
I renamed \\AutoMKV080\exe\DGIndex\DGDecode.dll and DGIndex.exe, and then reran the dgindex you linked for me. Then ran AutoMKV and I have been encoding for 10 minutes.
So far so good!
buzzqw
31st March 2007, 08:34
@weaver4
open the mkvmaudio.avs
after the nicaudio you will see Normalize()
from my test the normalize fuction applyed before downmixing is faster but applyed after downmixing is slower and louder...
in next update i will put normalize after downmixing... even if -15db cannot be explained with normalize on
@dlflannery
STOP! i added the possibility to encode "file" and get as output flv/mpeg2... ffmpeg is used as encoder!
create the flv file (no extension)
open automkv feed your shour sample (set resize/width/disk settings. AS AUDIO CHOOSE LAME!!!, also deactivate deinterlace, set it to none) and click start
after few minuter you have a movie.flv!
BHH
after few
delacroixp
31st March 2007, 09:29
Hi,
I'm trying to shrink a movie for a mobile phone.
For this I'd like to set the FPS at 12.5 ; but there seems to be no way to set the fps in automkv ?
Could you please add this option ?
:thanks:
I second this if it is at all possible buzzqw.
I picked up a Meizu M6 (http://en.meizu.com/product_m6.asp) which plays XviD in AVI but only at 20fps & would be great if I could use AutoMKV with it as most of the other conversion software is pretty poor.
It is already possible!
in advanced setting, check "Last line AVS script" and write ChangeFPS(20.000) or ChangeFPS(12.500) :)
I'm trying to encode clips or even movies for my nephew's Nokia 6233 (http://www.3g.co.uk/3GForum/archive/index.php/t-44839.html) but can it play less-than 15fps ???
I went to the Nokia Forum (http://forums.whirlpool.net.au/forum-replies-archive.cfm/586585.html) but they don't mention about "less is more" ... most of my movies are @ 25 FPS so that a 12.5 FPS conversion should make for better playback...
:thanks:
:):D:eek:
Pascal
BTW
For all those looking for a shortcut to the "last page" of the AutoMKV Forum...
While on 'last page' (or any page except start-page) save to favourites... then
=> favourites...
=> right-click on "AuotoMKV - last page"
=> properties
=> change the URL page number (last 2 characters) to 999...
and you have a "dynamically changing link" to the last page...
buzzqw
31st March 2007, 10:19
@ALL WMV Encoder Around
i have update the WMV profile section of wiki (thanks again to Shark_jlc, The Master of Wiki!). There are some notions about audio (in wmv) that can be very useful to understand the encoding in AutoMKV
BHH
delacroixp
31st March 2007, 13:08
Does mp4 support 1 channel audio ?
I've looked through all your audio options for stereo and mono and you only support 2, 6 or Auto... even for mono.
:):D:eek:
Pascal
buzzqw
31st March 2007, 13:21
:confused:
mono is selectable regardless of audio codec and audio container. Where is the problem ?
BHH
delacroixp
31st March 2007, 13:44
Sorry... double post...
:):D:eek:
Pascal
delacroixp
31st March 2007, 13:47
:confused:
Does mp4 support 1 channel audio ?
I've looked through all your audio options for stereo and mono and you only support 2, 6 or Auto... even for mono.
mono is selectable regardless of audio codec and audio container. Where is the problem ?
There's no problem getting MONO audio... but it's using up 2 channels and double the necessary space of 1 channel mono.
Mpeg 1 (http://sound.media.mit.edu/mpeg4/audio/) does support single-channel ('mono') and two-channel ('stereo' or 'dual mono') ...
I'm encoding movies for my nephew's Nokia 6233 and audio can easily use up 30 - 40% of the filesize... which is crazy...
:):D:eek:
Pascal
Shark_jlc
31st March 2007, 15:34
@ALL WMV Encoder Around
i have update the WMV profile section of wiki (thanks again to Shark_jlc, The Master of Wiki!). There are some notions about audio (in wmv) that can be very useful to understand the encoding in AutoMKV
BHH
That profiles page just grew over night with good information!! Just to let you know NX6 is responsible for a good portion of the Changelog and Barleyman is almost entirely responsible for the profiles page, except, of course, for what you just did :)
Also, and more importantly :), my encode finally finished successfully, by using the version of DGIndex you gave me, and me renaming the old dgindex dll files.
so, what does this mean about the state of the current dgindex used with AutoMKV? :/
For all those looking for a shortcut to the "last page" of the AutoMKV Forum...
While on 'last page' (or any page except start-page) save to favourites... then
=> favourites...
=> right-click on "AuotoMKV - last page"
=> properties
=> change the URL page number (last 2 characters) to 999...
and you have a "dynamically changing link" to the last page...
This is the best thing you have posted to date, delacroixp.
dlflannery
31st March 2007, 16:18
.........@dlflannery
STOP! i added the possibility to encode "file" and get as output flv/mpeg2... ffmpeg is used as encoder!
create the flv file (no extension)
open automkv feed your shour sample (set resize/width/disk settings. AS AUDIO CHOOSE LAME!!!, also deactivate deinterlace, set it to none) and click start
after few minuter you have a movie.flv!
..........
I think I understand (not sure about "feed your shour sample" :confused: ). I will try this -- assuming the "shour" is just an extra typo.
A suggestion related to ffmpeg:
As far as I can tell AutoMKV cannot source .flv directly -- only via AVS. This would be fine except (as I described in a previous post (http://forum.doom9.org/showthread.php?p=977357#post977357)) you can get better results encoding from .flv sources directly into ffmpeg (instead of AVS into WMcmd.vbs as done in AutoMKV). Of course ffmpeg currently will only encode to WMV7 AND WMV8 for WMV.
Would it make sense to integrate this direct-into-ffmpeg encoding into AutoMKV as an option for source types that are now only supported via AVS but can be handled by ffmpeg (such as .flv ) ?
I have only tried one-pass ffmpeg encoding to WMV. I think there is a way to do two-pass (but it really isn't important for Zune encoding).
I realize this may require very complicated logic to properly incorporate into AutoMKV and maybe it just isn't worth the effort (??).
:thanks:
buzzqw
31st March 2007, 16:44
so, what does this mean about the state of the current dgindex used with AutoMKV? :/
the huge changelog... http://forum.doom9.org/showthread.php?t=116841
but... now... don't know..
@dlflannery
As far as I can tell AutoMKV cannot source .flv directly -- only via AVS
yes, and i don't want to expand support to this file type.
actually ffmpeg is used in 2 way
1) if xvid/x264/wmvcmd.vbs fails the encoding -> ffmpeg is invoked to encode to xvid/x264/wmv
2) if flv/rv10/mpeg2video file is present .. (and from next update dv/wmv7/wmv8) the input file is taken as is and passed to ffmpeg for generating flv/rv10....
i hope to be clear.. and yes "shour" (mean anything ?) is just an extra (one more) typo!
BHH
EDIT: as is is improper since i take the width selected, the crop (or manual crop), the audio bitrate...
BixMix
31st March 2007, 18:14
@BixMix
wmv encoding. this is the key!
advanced audio settings aren't applied to wmv encoding.
Audio will ne normalized in wmv from next version!
BHH
I've experimented with the AutoMKV 0.80. I don't hear an audio change--even at Amplifydb(25)--checked or unchecked it is still "normalizing". Is volume increase still in development?
Thanks for your help.
buzzqw
31st March 2007, 19:15
@BixMix
as i already said the advanced audio setting aren't applyed in wmv
Audio will ne normalized in wmv from next version!
open movie.avs and look at end script
BHH
dlflannery
31st March 2007, 19:25
STOP! i added the possibility to encode "file" and get as output flv/mpeg2... ffmpeg is used as encoder!
create the flv file (no extension)
open automkv feed your shour sample (set resize/width/disk settings. AS AUDIO CHOOSE LAME!!!, also deactivate deinterlace, set it to none) and click start
after few minuter you have a movie.flv!
BHH,
I tried this (source = mpeg2, encoding to flv, 500 kbps video specified). It didn't work but I have figured out why: In ffmpeg_flv.bat the ffmpeg options for video (-b) and audio (-ab) bitrates are way off.
-b was 25042000 (too high)
-ab was 6000 (too low)
I substituted "-b 500k" and "-ab 64k" and the two pass encoding worked very well (320x240 output, with auto crop).
Question: The encoded file was in the temp folder, named "movie.flv". If the ffmpeg batch had run OK would AutoMKV have copied this to the final folder and movie name?
It seems like a lot of processing goes on, and a lot of files are produced (20+) in the temp folder that are not needed, including audio.mp3. Only the ffmpeg_flv.bat file is actually needed to create movie.flv.
buzzqw
31st March 2007, 19:33
(set resize/width/disk settings. AS AUDIO CHOOSE LAME!!!,
the bitrate is computed based on disk settings, the audio bitrate is taken from the value displayed (so 112 = 112000)
500 kbps video specified this value isn't parsed... mmm.. i will introduce it.. thanks!
Question: The encoded file was in the temp folder, named "movie.flv". If the ffmpeg batch had run OK would AutoMKV have copied this to the final folder and movie name?
i haven't added the "move to right folder" now , is just all in temp directory
and about intermediate file.. yes... many and more isn't needed... but this is the first start... :)
BHH
buzzqw
31st March 2007, 19:43
update 0.80a !
http://www.64k.it/andres/data/a/AutoMKV080a.exe
ADDED: FFmpeg.exe support to DV (create a file named "dv" in AutoMKV folder) (suggestion by dlflannery)
ADDED: FFmpeg.exe support to WMV7 (create a file named "wmv7" in AutoMKV folder) (suggestion by dlflannery)
ADDED: FFmpeg.exe support to WMV8 (create a file named "wmv8" in AutoMKV folder) (suggestion by dlflannery)
ADDED: FFmpeg.exe will control the manual specifyed bitrate (just write 500 for 500000 bitrate!) set in Advanced Settings (thanks to dlflannery)
ADDED: File created by FFmpeg.exe are moved to right folder at end of encoding (thanks to dlflannery)
FIXED: VirtualDub is now the default invoker of SoundOut in all code
FIXED: Moved Normalize() to last part of mkvmaudio.avs.It will be slower (15 minutes for analyzing the Matrix movie, against 10 before) but audio is louder
FIXED: Some improvment to ffmpeg encoding
a big thanks to dlflannery for this release !
BHH
dlflannery
31st March 2007, 20:01
the bitrate is computed based on disk settings, the audio bitrate is taken from the value displayed (so 112 = 112000)
this value isn't parsed... mmm.. i will introduce it.. thanks!
i haven't added the "move to right folder" now , is just all in temp directory
and about intermediate file.. yes... many and more isn't needed... but this is the first start... :)
BHH
BHH,
Before you released 0.80a, I did more experiments and found that if you put 64 in the audio rate (which would not be normal # for Lame -- that's why I had not tried it before) and enter a reasonable target files size in MB, it worked, i.e., I discovered what you said above. Anyway it looks like 0.80a will take care of all of this. :thanks:
dlflannery
31st March 2007, 20:35
BHH,
It works as advertised! :thanks:
I assume you still have to:
1. select Lame audio encoding
2. set interlacer to None
One tip (at least for ffmpeg encoding from mpeg2 to flv):
Do not select the AVI container -- if you do the muxer runs after the ffmpeg batch file and crashes saying "file already in use", then the "send report to Microsoft ?" message. This problem does not occur if you select MP4 container, X264 codec. (In either case the correct .flv output file was created.) I did not try with the MKV container selected.
Also: the constant bit rate you enter (Advanced Tab) is the total (audio + video) rate for this type encoding. (Different from WMV encoding.)
salman1
31st March 2007, 21:05
HI
i have LimitedSharpen.avsi but i don't no how to use with this program can some one tell me plz thx a lot
Barleyman
31st March 2007, 21:26
Added a chapter on removegrain filter.. http://automkv.wiki-site.com/index.php/Filters
delacroixp
31st March 2007, 22:53
Are there MKV muxing options that can boost colour saturation ?
I know from DivX encoding that colours are the first to go when compression is increased but they have a lovelly player that can beautifully increase 'saturation' during playback.
While encoding Band of Brothers in H264 I was so stunned with the huge decrease in filesize and even the crispy clarity that I neglected to compare to the original. Even encoding with Q22 instead of Q24 increases the colour quality substantially.
The series was totally digitally mastered and enhanced to the point that 'nothing' is natural... all the colouration has been modified.
So I did a Q18 Encode http://souls-online.net/delacroixp/AutoMKV/BoB01_Q18_MKV_Thumb2.jpg (http://souls-online.net/delacroixp/AutoMKV/BoB01_Q18_MKV.jpg) ... comparing it to the Original http://souls-online.net/delacroixp/AutoMKV/BoB01_Org_VOB_Thumb.jpg (http://souls-online.net/delacroixp/AutoMKV/BoB01_Org_VOB.jpg) ... and the difference is quite startling...
Perhaps there's a filter I could use that pays particular attention to colour correction ?
:):D:eek:
Pascal
BTW
For all those looking for a shortcut to the "last page" of the AutoMKV Forum...
While on 'last page' (or any page except start-page) save to favourites... then
=> favourites...
=> right-click on "AuotoMKV - last page"
=> properties
=> change the URL page number (last 2 characters) to 999...
and you have a "dynamically changing link" to the last page...
Or you could just bookmark this:
http://forum.doom9.org/showthread.php?t=113811&goto=newpost
Which is the link I get in my email when new posts are on this thread. That way you don't miss posts if more than one page worth has been added in your absence.
delacroixp
1st April 2007, 00:25
Or you could just bookmark this:
http://forum.doom9.org/showthread.php?t=113811&goto=newpost
Which is the link I get in my email when new posts are on this thread. That way you don't miss posts if more than one page worth has been added in your absence.
Looks good to me... especially if you just want to see the latest post... my link only goes to the latest page... I'm sure there's some command like goto=newpage...
When I was at varsity we only learned 'structured programming', for software that is easily maintained and modified by 'other programmers'... and the goto statement was off-limits... and so too spagetti code.
I think you've just introduced me to the real potential of the 'goto' statement...
:thanks:
:):D:eek:
Pascal
salman1
1st April 2007, 02:20
i think this program need show preview like megui
Added a chapter on removegrain filter.. http://automkv.wiki-site.com/index.php/Filters
I've been wondering where I can get more info about what the filters do. Maybe I should try reading the wiki I've been working on more. :D
I hope we eventually get all the filters listed here.
So I did a Q18 Encode (http://souls-online.net/delacroixp/AutoMKV/BoB01_Q18_MKV.jpg) comparing it to the Original (http://souls-online.net/delacroixp/AutoMKV/BoB01_Org_VOB.jpg)... and the difference is quite startling... see for yourself.
Perhaps there's a filter I could use that pays particular attention to colour correction ?
That's quite interesting. The difference is like night and day (pun totally intended here) :D. But that looks more like a gamma or contrast issue than a color problem. Is there a way to adjust those attributes from AutoMKV. One way to confirm is to use the adjustment filters in ffdshow on playback (the "Picture Properties" in this case) and see what you have to adjust the most to get something closer to the source material.
@buzzqw:
The option for adding a custom title to a muxxed file is located in a Muxing Options section in the Advanced Audio Settings, which makes little sense. How about moving it to the Advanced Settings tab. The Muxing Options section there has space under the "Force Muxing AR" setting (http://automkv.wiki-site.com/images/1/17/Advsetting.png).
Or, it might be better space-wise to swap the location of Muxing Options with Project Options. So it would look like this (forgive this rather crude quality mockup):
http://automkv.wiki-site.com/images/thumb/b/bd/NewAdvsetting.jpg/800px-NewAdvsetting.jpg
Barleyman
1st April 2007, 09:47
I've been wondering where I can get more info about what the filters do. Maybe I should try reading the wiki I've been working on more. :D
I hope we eventually get all the filters listed here.
I wouldn't hold my breath on that score. On the other hand, if you browse the thread you can find Buzz explaining how the idct and couple other filters work.
Earlier versions of AutoMKV actually had docs for all the filters, but they mostly go into program algorithm-style treatise and do not actually tell you where this filter would be useful.
In any case, my opinion is that if there is no reason to filter such as synthetic noise in the source, you shouldn't.
Other use of filtering is to reduce the resulting filesize while keeping "apparent" image quality but in my experience you need many iterations with short video clips to find image quality you can live with and the compressibility result isn't that dramatic. I quess filtering is most useful when you have fixed target filesize such as 350MB or something :rolleyes: With filtering the movie/episode can be shoehorned into smaller filesize without getting lovely macroblocks..
If you use CQ encoding like me to archive DVB recordings, filtering is pretty useless since I don't care if the encode is 450MB or 550MB for one tv series episode. Except for video with noise. SHIELD or Oz will produce 1.5-2x filesize and compress much slower than series without noise added.
buzzqw
1st April 2007, 09:52
@dlflannery
Also: the constant bit rate you enter (Advanced Tab) is the total (audio + video) rate for this type encoding. (Different from WMV encoding.)
Fixed in next update!
in next update the specified bitrate is used only for video!
@salman1
put limitedsharpen.avsi in \exe\filter folder
start automkv, in filter list you can write limitedsharpen()
@delacroixp
strange... try updating haali media splitter and ffdshow
also open the movie.avs, is present colormatrix at end script ?
@salman1
is in todo list (but far away..)
@nx6
i had made some adjustmen...
look here
http://img393.imageshack.us/img393/2133/advancednx6fv6.th.png (http://img393.imageshack.us/my.php?image=advancednx6fv6.png)
is it ok ?
BHH
@nx6
i had made some adjustmen...
look here
http://img393.imageshack.us/img393/2133/advancednx6fv6.th.png (http://img393.imageshack.us/my.php?image=advancednx6fv6.png)
is it ok ?
Yes, that is better.
Although I do notice how crowded the Project Options section is now compared to the Demuxing and Indexing Options section. ;)
That's a nice big empty space you've cleared out there on the right. Some secret feature going in there later? :D
Prospero424
1st April 2007, 10:26
A quick question:
I've noticed a remarkable speed increase when going from version .79 to .80.
I tried encoding the same exact movie using the same exact same settings (a 2-hour long 1920x1080 MPEG2 transport stream converting to a 1280-width x264 mkv using the HighQuality-Insane profile and a DVD-5 file size) and the x264 encoding time went from about 30 hours per pass to 15 hours.
I was just curious to see if anyone else had noticed this and what the reason might be.
Needless to say, I'm not complaining :)
(Athlon X2 3800+, 2x2.0Ghz)
vgiozo
1st April 2007, 10:55
I use the High-Quality Profile myself, the "Slow" one, but you must really have nerves of steel to encode using the "Insane" profile...
I've also witnessed an increase in speed...maybe the X264 encoder has been updated as well?
I use the High-Quality Profile myself, the "Slow" one, but you must really have nerves of steel to encode using the "Insane" profile...
I've also witnessed an increase in speed...maybe the X264 encoder has been updated as well?
It's in the changelog.
v0.80: Released 29/03/2007
Added MediaInfo. AutoMKV will use it as a last resort to analyze the input file.
Added new WMCmd.vbs, which should be more stable and robust.
Added in Log file the AR reported by DGIndex will now be listed.
Added WMV WVC1 presets. These presets are 2-pass encoding (Preset_Fast_WVC1.xml, Preset_Good_WVC1.xml, Preset_Better_WVC1.xml, Preset_Best_WVC1.xml, Prest_Insane_WVC1.xml)
Added Normalize() to audio avs file.
Added FFmpeg.exe to be used as encoder, if xvid_encraw/x264/wmcmd isn't able to process input file (not on dvd input) FFmpeg will try to encode to desired codec/container/width (not autocrop sorry...). Manual crop will be parsed and applied.
Added Multi Encoder support. If a file named "flv" or "msmpeg4v2" or "mpeg2video" or "rv10" is present in AutoMKV folder then AutoMKV will be force ffmpeg.exe to use these format. This does not work on dvd or avs input.
Added VirtualDub (1.7.1) as launcher of SoundOut plug-in, which should help deal with imperfect avs audio files.
Fixed bug where MP4 was recognized as AUDIO, now is recognized as video.
Changed XviD_CQ profile so it is now a true CQ. BQuantRatio is set to 1.
Fixed bug where in X264 the -ref was applied two times.
Added new Audio setting for WMV for better compatibility with the new WMCmd.vbs.
Fixed bug preventing AACgain from working for installation paths with space (like c:\program files\automkv\... ).
Added some tuning to audio downmixing when using WMV.
Changed location of Force Mux AR control to Muxing Options, and moved Anamorphic Encoding to Aspect Ratio Options.
Changed layout of log file some.
Changed RemoveGrain.dll to RemoveGrainS.dll, for better compatability with Athlon processors. Note: If you have a more powerfull CPU delete this file and from http://home.arcor.de/kassandro/RemoveGrain.rar take the DLL version your CPU supports (RemoveGrainSSE2.dll or RemoveGrainSSE3.dll). Do the same thing with job with RepairSSE2.dll or RepairSSE3.dll.
Added some tuning to WMV bitrate calculator
Changed width option so it now sets to "Original" if profile is CRF or CQ, and user selects "Go Unlimited" for final file size.
Updated NicAudio to 2.0.0.2, DgIndex to 1.4.7 beta 17, X264 v635, and ffmpeg.exe to v8435.
Espio
1st April 2007, 19:07
Great program, but I have a few requests:
-When I go into the Advanced Audio Settings just to change one thing everything is reset which is annoying if I forget something.
-When the selected profile is changed, everything is reset, also annoying.
-After you send a job to the queue it cannot be edited.
-Also, maybe consider adding some advanced settings for Vorbis? (Mostly allowing the bitrate to be selectable instead of just a quality setting)
Otherwise this program is great, much better than AutoGK ever was.
Edit: just got a memory violation in virtual dub saying something about out-of-bounds and audio, the setting I was using was Nero AAC, CBR 128kbps, from 5.1 AC3 to 5.1 AAC (Original).
buzzqw
1st April 2007, 19:52
-When I go into the Advanced Audio Settings just to change one thing everything is reset which is annoying if I forget something.
i prefer as is, those options are for advanced users and basically shouldn't opened.
I don't think to change the behavior.
-When the selected profile is changed, everything is reset, also annoying.
several profile need special options to be triggered. while i concord that is annoying i prefer to reset all
-After you send a job to the queue it cannot be edited.
yes, queue is a bad argument, i dislike it and queue dislike me :angry:
-Also, maybe consider adding some advanced settings for Vorbis? (Mostly allowing the bitrate to be selectable instead of just a quality setting)
most option on vorbis regards bitrate management and freq. Quality is the normal and preferred way of encoding.
Edit: just got a memory violation in virtual dub saying something about out-of-bounds and audio, the setting I was using was Nero AAC, CBR 128kbps, from 5.1 AC3 to 5.1 AAC (Original).
another user reported a memory error, AT END of ENCODING, when audio was already (and well ) compressed.
Must be presen some glitch in SoundOut...
BHH
delacroixp
2nd April 2007, 12:10
I use the High-Quality Profile myself, the "Slow" one, but you must really have nerves of steel to encode using the "Insane" profile...
I guess that's why they call it "Insane"... only recommended for the seriously crazy... or well informed.
:):D:eek:
Pascal
Prospero424
2nd April 2007, 16:27
One more quick question:
What, technically, does the "HQ Deint" option do? Is this something one should always have checked when quality is the first priority (and the source requires deinterlacing) or are there specific circumstances it should be reserved for?
TIA
delacroixp
2nd April 2007, 16:31
@dlflannery
@salman1
@delacroixp
strange... try updating haali media splitter and ffdshow
also open the movie.avs, is present colormatrix at end script ?
@salman1
@nx6
Haali media splitter and ffdshow are updated daily... (courtesy of Zoom Player)
movie.avs
...
RemoveGrain(mode=2)
ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
:):D:eek:
Pascal
buzzqw
2nd April 2007, 16:56
@prospero
http://forum.doom9.org/showthread.php?p=937978#post937978
@delacroixp
a little bit is needed...
BHH
gonwk
2nd April 2007, 18:28
Hi Buzzqw,
THANK YOU, THANK YOU, THANK YOU.
I am an AMATUER ... and don't know beans about programming or other heavy duty stuff. I am just point and click user ... For your Info ... version AutoMKV 0.80 was the first time that I actually could do conversion from DVD to AVI with success.
I have few questions/suggestions:
Q1: Under you AVI and XviD choices ... you have different .xmls ... is there a way that it can tell someone like me what is the Quality Rate on those ... like 2000kbps, or 4000kbps ... you something simple and no-brainer.
Q2: Seems the conversion engine is slower than before? Or is it my imagination?
BTW, I LOVE YOUR PROGRAM ... everything contained in one "Neat" little folder instead of being spread all over like some other program(s).
Thanks again,
G!
glynor
2nd April 2007, 18:40
Sorry again to bring up the Queue, but...
I'm still attempting to rip an episodic DVD using AutoMKV, and (in addition to losing the second audio settings for queued jobs) ripping from within AutoMKV doesn't seem to work at all when you queue the jobs. I've had a number of jobs all fail to work, while using identical settings but not queueing them works fine. I'm not sure if any of my settings are required for this issue to occur, so here's what I'm doing:
Input File: x:\VIDEO_TS\VTS_01_0.IFO (selected drive and hit Check DVD Drive button)
Container: MKV
Codec: x264
Profile: Encoding-Highprofile.xml
Audio Track 1: English (AC3 2ch), NeroAAC (Stereo, Q=0.5)
Subtitle Track 1: RIP ALL SUBS
Resize Filters: Lanczos Resize
Set Width: AutoCrop Only
Filters: RemoveGrain(mode=2)
Output File: 250MB
Advanced:
Process this PGC & Process this IFO both checked.
What happens is, for queued jobs, DVD Fab Decrypter never actually launches and rips the DVD. It immediately loads DGINDEX then just stalls and sits there. DGINDEX of course has nothing to process, and so just sits there running.
For me, of course, the big advantage to using the Queue is for episodic DVDs. Ripping these manually is annoying, because you have to start one, let it finish, then remember to come back to the computer and start the next one. Over and over again, just for one disc! For a one-off movie, this isn't a huge deal, but for 7 episodes on a disc, it's really a pain...
Another little annoyance I've encountered is that when ripping from DVD, AutoMKV seems to ignore both the "saved" output folder location (it resets to AutoMKV's installed folder as soon as you hit "Check DVD Drive"), and ignores what you have typed in Movie Name for the purposes of naming the Logfile. The actual output file gets properly named, but the log file seems to always end up called "Click on INPUT for choosing FILE to ENCODE.log".
buzzqw
2nd April 2007, 19:56
@gonwk
the profiles are based on quality/speed of encoding. There profile are not based on bitrate but the tradeoff between quality and speed
so the XviD_Fastest.xml/XviD_Fast.xml is the fastet and lower quallity
the normal are the good equilibrium for quality and speed
the slow and extra slow if for better quality AND low bitrate
the sap is tuned for Stand Alone Player (divx player)
@glynor
thanks for your test, i must admit that i haven't time now for much testing and debugging (a part little features)... i hope to have more time in next days/weeks :o
BHH
glynor
2nd April 2007, 20:16
@glynor
thanks for your test, i must admit that i haven't time now for much testing and debugging (a part little features)... i hope to have more time in next days/weeks :o
Hey... I'm just pleased you have time to do this at all! Thanks for all your hard work and help!
delacroixp
2nd April 2007, 22:43
I was encoding a few BoB clips for a Nokia 6233 (still wont work) and one clip had no sound... the temp folder had 2 audio tracks (eventhough the clip only had 1)... audio1.mp4 was only 6kbs... so I remuxed using 'muxing.bat' by swopping audio1.mp4 and audio2.mp4... all fine
Then I tried muxing only audio2 with MkvMerge and discovered a nice 'muxing display option' that might be handy in AutoMKV though 'Force Muxing Ratio' probably works just fine...
http://souls-online.net/delacroixp/AutoMKV/MkvMergeMuxingDisplayThumb.jpg (http://souls-online.net/delacroixp/AutoMKV/MkvMergeMuxingDisplay.jpg)
Click... to see full image:
:):D:eek:
Pascal
glynor
3rd April 2007, 16:31
@buzzqw
I ran into another AC3 source file that crashed VirtualDub (again the SoundOut module) at the very end of the encoding process. Unfortunately, for some weird reason I haven't been able to upload the files successfully to RapidShare or any of the similar services. I'm going to try to upload from my home computer tonight and see what happens...
Either way... Again, once I closed the VirtualDub error message, the encoding process continued and completed without issue. Again, the file plays fine.
buzzqw
3rd April 2007, 17:33
thanks glynor!
i need your ac3 crashing file.. if i am able to repeat the error Sh0dan could fix it... or i hope
btw i "should" have fixed the second audio missing, added the edit job queue... and surely added more and lots bugs in queue :p
@all
i will downgrade dgindex to latest stable 1.4.8
this will fix several bugs on ivtc
any comment ?
stay tuned for next update!
BHH
glynor
3rd April 2007, 18:09
thanks glynor!
i need your ac3 crashing file.. if i am able to repeat the error Sh0dan could fix it... or i hope
btw i "should" have fixed the second audio missing, added the edit job queue... and surely added more and lots bugs in queue :p
Thanks for the work on the queue. It was quiet in here today and I suspected you might be lighting your hair on fire from all my queue-related requests!! :eek:
I think there's something weird about uploading to those services from my office's network. I've been trying since last Friday and had no luck (with like 5 different RapidShare-esque sites). I just transfered the problem AC3 file to my USB flash drive and I'm gonna tote it home and try from there tonight. It'll take longer (the office is on an 20mbps Internet connection) but hopefully it'll work!
Shark_jlc
3rd April 2007, 19:08
@all
i will downgrade dgindex to latest stable 1.4.8
this will fix several bugs on ivtc
any comment ?
stay tuned for next update!
BHH
That works for me. I've started using 1.4.8 manually before going to AutoMKV just because I don't have time to hassle with 1.4.9 if it fails.
But if I'm a lone exception, don't change on my behalf :)
TheRyuu
3rd April 2007, 21:16
Would a script like this work:
ColorMatrix(Mode="Rec.601->Rec.709",scaling=2,threads=2).a=last.b=FluxSmoothT(8).SeeSaw(NRlimit=0, NRlimit2=5, Sstr=1.70, Szp=1, Slimit=50, Sdamplo=29, Spower=1, sootheT=0, SdampHi=35)
Just curious because the a= b= is all part of Seesaw and I wasn't really sure how to do that with nothing but a one line thing.
dalihrp
4th April 2007, 02:16
whenever I encode DVD to WMV (use wmv9 profile) , AutoMKV always ;
1; complain it failed to find video length, an then
2; the alternative method also always failed and then
3; it using something ffmepg?, it encode but then
4; the result is not good, file size not small (I compare with result i got with movie maker) and quality also not good.
any idea to improve my experience encoding dvd->wmv with autoMKV?
thanx.
dlflannery
4th April 2007, 03:38
whenever I encode DVD to WMV (use wmv9 profile) , AutoMKV always ;
1; complain it failed to find video length, an then
2; the alternative method also always failed and then
3; it using something ffmepg?, it encode but then
4; the result is not good, file size not small (I compare with result i got with movie maker) and quality also not good.
any idea to improve my experience encoding dvd->wmv with autoMKV?
thanx.
What settings have you tried for Deinterlacer (Advanced Setting Tab)? Try Film and None.
ffmpeg cannot encode to wmv9 so don't know what you are actually getting. (It can encode to wmv7 and wmv8).
Save the log file and post it here. (Clear the log file before running -- only save one case.)
Shark_jlc
4th April 2007, 04:23
whenever I encode DVD to WMV (use wmv9 profile) , AutoMKV always ;
1; complain it failed to find video length, an then
2; the alternative method also always failed and then
3; it using something ffmepg?, it encode but then
4; the result is not good, file size not small (I compare with result i got with movie maker) and quality also not good.
any idea to improve my experience encoding dvd->wmv with autoMKV?
thanx.
1 & 2 happened about version .78 somewhere. It's more annoying then anything, as it does not affect the output, only our ability to guess when it will be done.
buzzqw
4th April 2007, 07:28
update 0.80b! http://www.64k.it/andres/data/a/AutoMKV080b.exe
ADDED: On start AutoMKV will warning if found files named dv or msmpeg4v2 or mpeg2video or rv10 or flv or wmv8 or wmv7 are present.
ADDED: Is now possible to edit job and resave job. For re-save job don't use Add Job but Resave Job on Queue Panel
ADDED: Some bugs in queue mode
ADDED: Possibility to specify the Width&Height in Matroska muxing. In that case the AR is ignored (suggestion by delacroixp)
FIXED: The Specify bitrate on Advanced Options , in ffmpeg.exe encoding, is now used only as video bitrate (suggestion by dlflannery)
FIXED: An ugly bug that will not trigger normalize() if Advanced Audio Options were opened
FIXED: The double "Processing completed. Type is determined to be partly film" reported in log
FIXED: Autoresize on WMV will now consider audio size
FIXED: On WMV is now possible to feed normal audio file and avs audio file, no more need to include audio source in movie avs files
FIXED: More sanity check on WMV encoding
FIXED: Missing Second Audio track in queue mode (thanks to Glynor)
note about wmv, the complain it failed to find video length, an then
2; the alternative method also always failed and then
is often due to directshowsource not providing enough information.
I suggest to install lastes ffdshow tryout and haali media splitter
@wizboy11
open the movie.avs , edit the script and try opening in virtualdub...
BHH
delacroixp
4th April 2007, 12:29
The Force Mux W*H is very neat... and being able to download only the AutoMKV080b.exe file is also usefull... since many people are on "limited bandwith"...
I haven't been able to test any colour-changes on Band of Brothers (see Post (http://forum.doom9.org/showpost.php?p=977686&postcount=1684))... nx6 suggested a gamma correction or even a change in contrast (see Post (http://forum.doom9.org/showpost.php?p=977741&postcount=1688)) but my understanding is that Gamma effects => brightness and Contrast effects => the 'range' of brightness...
Are there in fact any Advanced colour muxing options, especially saturation, available to MKV... rather than let the user adjust their player ???
This could be usefull, not only to BoB but Q24 or lower quality encodes where the colour may have been bleached out...
A boost in colour saturation is to video... what a boost in volume is to audio...
:):D:eek:
Pascal
DarkZell666
4th April 2007, 12:34
@buzzqw:ADDED: Some bugs in queue modeI hope not :D
buzzqw
4th April 2007, 13:10
@delacroixp
the color change is very strange...
watching on other monitor/pc is the same ?
@DarkZell666
I hope not
coding the queue is mayor pita... even worst since i don't use it (i doing only main movie backup) i haven't test well...
but i hope it will be better now :fingercrossed:
BHH
glynor
4th April 2007, 14:46
ADDED: Some bugs in queue mode
Ha ha ha ha ha!! :D
That made my morning. Hysterical, buzzqw!
Thanks for the fixes and work. I do appreciate it. I'll check it out and (I'm sure) ruin some future day of yours with some obscure bug.
delacroixp
4th April 2007, 15:49
@delacroixp
the color change is very strange...
watching on other monitor/pc is the same ?
I thought so myself... though they are both from the same monitor... one looks gr8 they other a bit 'grey'... I've tried 3 monitors (1 CRT & 2 LCD)... the colour from the CRT is probably the most real...
Funny thing happened... I can't get another 'video printscreen'... the video comes out black... I downloaded a few printscreen apps... which didn't work either... I even disabled the 'hardware acceleration'... and the printscreen to clipboard function works fine... but the video looks like c#@&...
The first time must have been 'beginners luck' or 'devine intervention'...
I'm still interested in the colour-thingy anyhow... filters, muxing, players... etc. (It makes all the difference)
:):D:eek:
Pascal
I haven't been able to test any colour-changes on Band of Brothers (see Post (http://forum.doom9.org/showpost.php?p=977686&postcount=1684))... nx6 suggested a gamma correction or even a change in contrast (see Post (http://forum.doom9.org/showpost.php?p=977741&postcount=1688)) but my understanding is that Gamma effects => brightness and Contrast effects => the 'range' of brightness...
When I looked at the two screenshots you showed me, what I noticed is one looked much brighter than the other (like the encoded movie made it appear to be evening verses midday in the original VOB), which is why I suggested a gamma or contrast issue.
Remember that when you are displaying video you are working with light, which is additive color (as opposed to pigment, which is subtractive color). A scene being too dark will result in colors being less bright and looking somewhat washed out as well. Which is why I suggest playing with the Picture Properties filters on playback and see if fixing the difference in lightness in the scene also helps the color saturation, there might be a saturation problem as well I will admit.
glynor
4th April 2007, 22:30
I realize that this might seem a bit odd, but I'm gonna ask anyway. On another forum I've been involved in a discussion on how to get DVDs extracted from disc and into a MKV file without recompressing the audio or video at all. Essentially a "copy original" for both Audio and Video, but with all the other benefits of a MKV file and with support for subtitles and multiple audio tracks and whatnot.
You've been adding all this super cool ffmpeg encoder stuff lately.... Is there any way we could get a lossless "copy original video" option for converting from DVD --> MKV somehow?
I've been trying to accomplish this seemingly simple task almost all day with one DVD using MKVtoolnix and DVD Fab Decrypter/DVD Decrypter+RipItForMe/IFOEdit/DVD Shrink/etc/etc/etc and I'm about ready to pull my hair out and set it on fire. I can get the VOBs into the MKV file, but sometimes it's a nightmare to get them to all get recognized and in the right order and everything. Half the time MKVtoolnix seems to just arbitrarily cut off my MKV file at around the 500MB mark, even though my source VOB is 5GB or so in size...
Everyone on the other thread has said essentially "AutoMKV looks like exactly what I want, except I don't want to recompress the video. I want a 5GB+ MKV file with AC3 audio and MPEG-2 video with the absolute best quality possible."
Any ideas or love?
@delacroixp
Check out this picture (http://automkv.wiki-site.com/index.php/Image:BoB01_Org_VOBedit.jpg).
I took your original images and combined them. The right half is your VOB, the left is the encoded file. On the upper 40% of so of the encoded file side I have done Brightness/Contrast adjustment to it (you can see the border running just above the truck's headlights). This is why the sky is similar in brightness to the VOB side. But there is a saturation problem as you diagnosed.
In the middle of the entire frame I have applied a saturation adjustment which overlaps all three areas (enclosed in white frame). You can see the upper left quadrant of it is the closest to the VOB sample area outside the white frame. Just so you have the figure: this is a 60% increase in saturation. So you would need to adjust brightness, contrast, and saturation to get an encoding closer to the original material.
buzzqw
5th April 2007, 07:41
tonight i had encode Matrix with Preset_Good_WVC1
perfect encode... but i cannot ear audio... even if is present :confused:
this is the "interesting sections" of movie.avs
audio = NicAC3Source("D:\DVDMAGIC\temp\fixed1.ac3",2)
...#trim video section#...
audio=ConvertAudioToFloat(audio)
audio=Normalize(audio)
audio=getchannel(audio,1,2)
audiodub(audio,last)
and here the wcmd.vbs
cscript.exe "C:\Programmi\PureBasic4\AutoMKV\exe\encoder\WMCmd.vbs" -input "D:\DVDMAGIC\temp\movie.avs" -output "D:\DVDMAGIC\temp\movie.wmv" -v_codec WVC1 -v_mode 3 -v_bitrate 564000 -s_config "D:\DVDMAGIC\temp\wmv_crb" -v_preset good -v_bframedist 1 -v_dquantoption 3 -v_bdeltaqp 1 -a_codec wmapro -a_mode 0 -title "VTS_02_0" -year 2007 -copyright "Done with AutoMKV! 0.80b" -a_setting 128_48_2_24
even if the encode is come out near perfet (705mb, aimed 700mb) and mediainfo report is ok
General #0
Complete name : D:\DVDMAGIC\VTS_02_0.wmv
Format : Windows Media
File size : 705 MiB
PlayTime : 2h 21mn
Bit rate : 699 Kbps
Movie name : VTS_02_0
Recorded date : 2007
Copyright : Done with AutoMKV! 0.80b
Buffer Average : 200
Video #0
Codec : VC-1
Codec/Info : Microsoft
Bit rate : 556 Kbps
Width : 704 pixels
Height : 304 pixels
Aspect ratio : 2.35
Audio #0
Codec : WMA3
Codec/Info : Windows Media Audio 3
Bit rate : 128 Kbps
Channel(s) : 2 channels
Sampling rate : 48 KHz
but i cannot ear audio...
i changed this "audio=Normalize(audio)" to "audio=amplifydb(audio,15)" and the encode come out perfect as before BUT i can ear audio!
I suppose that the normalize process (since is a two time process) make the encoder... crazy ???
i will post a link to this post to Zambelli thread
BHH
P.S. Encode on Win2003 Server, playing with Windows Media Player 10
delacroixp
5th April 2007, 07:58
Remember that when you are displaying video you are working with light, which is additive color (as opposed to pigment, which is subtractive color). A scene being too dark will result in colors being less bright and looking somewhat washed out...
All good.
Quite frankly I'm more interested in how it's going with your greyscale encode... I think there must be a huge application with all the historical black and white movies around...
Even in terms of archiving purposes it would be of great documumentary value to humanity before they all disintegrate and are lost forever... I still havn't found a solution to 'single channel mono' ... and your small video encodes may be offset by relatively large audio encodes...
:):D:eek:
Pascal
All good.
Quite frankly I'm more interested in how it's going with your greyscale encode... I think there must be a huge application with all the historical black and white movies around...
It didn't work out as far as I can tell for the purpose I meant it to.
Test film was 720x480, 1h 28m 09s, 4:3 aspect ratio
Encoded as H264, @ CQ-CRF: 18
AAC .25 audio, 2 audio tracks and one subtitle track.
"Color" Film: 1,793,394,045 bytes (1.66 GB)
Greyscale Film: 1,801,501,190 bytes (1.67 GB)
Yes, the greyscale film was actually slightly larger.
It did work on an anime episode (but that was color to start with and I wouldn't want it in greyscale).
Test episode was 720x480, 24m 42s 4:3 aspect ratio
Encoded as H264, @ CQ-CRF: 22
AAC .20 audio, 2 audio tracks and one subtitle track.
Color encode: 206,565,028 bytes (196MB)
Greyscale encode: 181,273,632 bytes (172MB)
I have a theory that studios master the original DVDs as greyscale to start with with these old movies. You ever notice how when you watch an old film that has been re-released 50 years later the studio's new 21st century logo is shown before the old studio's logo, yet BOTH are in greyscale? Why isn't the new one in color since it was just added and the second one in greyscale since it was part of the original print of the film? Because the studios mastered the entire movie as greyscale! They can't show the logo in color then since those colors are not available. By doing this, the mpeg stream the DVD player reads can have greater quality for the same bandwidth as a normal color film. Or they can use a lower stream and save disc space (cheaper single-layer DVD manufacturing now).
So the reason my trick doesn't work is my movie is already been reduced to greyscale so there's no extra information to throw out. Another possibility is the encoding algorithms can tell they are so many fewer colors in the film when compressing and iron out the bulky data stream without me telling them to reduce colors manually.
For most uses, adding greyscale() would be of no value, but there are still a few uses it might be good for. Like PVR recordings off a TV tuner card. Since the capture card is a color tuner there might be extra color information in the original recorded files that can be removed by re-encoding. If it was off a poor analog cable or broadcast reception there might be picture interference that is in color on the greyscale film, like I mentioned before, converting this fuzz to B&W would make it less noticeable. This could have value if you were encoding instructional films or something where color wasn't important but file size was.
Do you know the official bit depth of Apple's QuickTime used to be 16 bit (32 thousand colors)? The reason was, at the time, many computers did not have the processing power to handle playback of a full color movie at a reasonable resolution (this was back when 320x240 was considered average size), and the difference in perception between 16 and 24 bit is not that much (just try switching your monitor to "thousands of colors" and use it for a while). So movies done this way were watchable on far more computers and took up much less space on disk.
If this is a case of the original DVD being in greyscale to start, it might be possible this would change on a disc-by-disc basis. I didn't check the times of the encoding jobs, but I imagine they didn't vary much, so it's a feature I might use "just for the hell of it" when I'm ripping B&W films just in case it helps.
If this is a case of just good algorithms, then you wouldn't get any benefit on your BoB episodes as the encoder is already doing as good a job of compressing on those B&W scenes as they are.
I will probably do some more experimenting, though.
... and your small video encodes may be offset by relatively large audio encodes...
When I redo some of this stuff, I'll remember to set the mono downmix option like I meant to the first time, which will prevent that issue.
I'm actually interested in solving your problem with the color and brightness difference you were having as it was quite a striking difference when viewing the two screenshots side-by-side. It would be nice to know I could solve a similar issue in my own encodings using the methodology I employed in that image I posted to you if I had the same problem.
encode once
check differences
use image editor to change a single frame to match source material, noting changes & values altered
rerun encode with the same changes applied by the encoder to the entire film
I can imagine a processing like this being applied to the entire film might make the AutoMKV job much longer though.
tonight i had encode Matrix with Preset_Good_WVC1
perfect encode... but i cannot ear audio... even if is present :confused:
What a coincidence, I watched the Matrix tonight on my computer! But I was watching my DVD, not a file on my hard drive.
probably a dumb question but:
Audio #0
Codec : WMA3
Codec/Info : Windows Media Audio 3
Bit rate : 128 Kbps
Channel(s) : 2 channels
Sampling rate : 48 KHz
What would an audio card do if asked to play back a file of a sampling rate too high for it?
Also, another silly point, sometimes I activate the mute on WMP accidentally as the shortcut key is I think the pause key on another player I use or something like that. I usually have trouble figuring out that's what it is and start restarting my machine because I think Windows's audio processing is messed up.
buzzqw
5th April 2007, 10:45
@nx6
What would an audio card do if asked to play back a file of a sampling rate too high for it?
same avs script but without normalize() is perfectly audible... so isn't a decoder/hw problem
also... eve if i am a perctly :helpful: i know how to use wmp ... :p
BHH
delacroixp
5th April 2007, 19:29
... and your small video encodes may be offset by relatively large audio encodes...
When I redo some of this stuff, I'll remember to set the mono downmix option like I meant to the first time, which will prevent that issue.
I hate to break this to you... but my mono seams headed the same way as your greyscale... one of my (downmix) MONO encodes was larger than the stereo version... possibly because stereo works as a 2-man team while MONO is carrying the complete signal in 1 channel (x2).
Mpeg-1 supports 'single channel MONO' but Mpeg-4 still uses 2 channels even if you choose Mono...
:):D:eek:
Pascal
glynor
5th April 2007, 21:24
So.... Regarding my request for muxing "passed through" video. I finally figured out a reliable method for getting non-recompressed video from a DVD into a MKV file, but it certainly isn't simple. It's probably not the perfect way to do it, but I posted step-by-step instructions over here: http://yabb.jriver.com/interact/index.php?topic=39604.msg271816#msg271816
While investigating this, I became more and more convinced that this would be a superb addition to AutoMKV. I think that, at least for DVD based source files, it would probably be fairly simple to add the feature, since AutoMKV already has to go through all the steps to extract the video anyway (so it has all the pieces you need right there). Of course, simple's probably a relative term.
Either way, I think it'd be great to have this option in such an easy to use application. Lots of people really prefer to keep the video in the most pristine format possible, but would like the convenience of using a single file format like MKV. As it is, it's quite a hassle to accomplish...
This, plus AutoMKV's other capabilities of encoding the Audio (if desired) and extracting subtitles and all that, would be ideal IMHO!
I hate to break this to you... but my mono seams headed the same way as your greyscale... one of my (downmix) MONO encodes was larger than the stereo version... possibly because stereo works as a 2-man team while MONO is carrying the complete signal in 1 channel (x2).
Well, what codec were you using? Since the AAC is set with a "quality" slider perhaps it felt that to get that quality level in one channel out of a two channel input file it would need to encode the mono at twice the bitrate (this is why I prefer to use set CBR's to encode, no guessing as to what the actual filesize will be, I can figure it out mathematically if I want to).
My source audio is 1ch to begin with, so I'm sure using the "stereo" downmix option did make my audio files twice as big for no reason.
Anyway, reducing to one channel should cut the audio file in half if they are full stereo.
@buzzqw: Does the LAME encoder use full stereo or joint stereo?
I suppose that the normalize process (since is a two time process) make the encoder... crazy ???
Perhaps the normalize filter has trouble reading the levels of the audio after its been used once and as a result considers everything over 0db as over level, so it now drops everything below 0db. :D Hence, no audio.
buzzqw
5th April 2007, 21:40
@glynor
i will look!
@nx6
lame default is j-stereo, but since i use preset abr it change on bitrate change, but will simply switch from joint to simple stereo
BHH
delacroixp
6th April 2007, 01:47
Well, what codec were you using? Since the AAC is set with a "quality" slider perhaps it felt that to get that quality level in one channel out of a two channel input file it would need to encode the mono at twice the bitrate (this is why I prefer to use set CBR's to encode, no guessing as to what the actual filesize will be, I can figure it out mathematically if I want to).
My source audio is 1ch to begin with, so I'm sure using the "stereo" downmix option did make my audio files twice as big for no reason.
Anyway, reducing to one channel should cut the audio file in half if they are full stereo.
I fell in love with VBR mp3 way back when it rarely even worked with DivX... so I just love VBR mp4.
I use BeSweet (BeLight GUI)... and even though I don't know the actual bitrate... I know I'm getting the best possible quality, given the 'Normal', 'Streaming', 'Audiophile', etc quality levels... and I can compare filesize afterwards... I work on the audio track separately and it's all pretty quick... it's a bit like the CQ-CRF profile for video... the ultimate in dynamic variability...
Well perhaps not... we're still missing 'variable frame rate'... and a quality based 'automatic resize', so that an animation would tend to resize at a lower resolution and a detailed movie would tend towards a higher resolution for the same quality level... perhaps that's the ultimate CQ encode...
Quite frankly, I'ld prefer to use the AutoMKV audio encoding facility... IF I knew I was getting the maximum possible 'volume boost' without clipping and I often do so after testing the track with BeSweet and then use the Amplifydb(xx) option...
I had an Aiwa 'feather touch' cassette deck in high school in 1980 and recorded LP's from a record library... but you could never be sure if your tape recording was too loud or too soft... even if it had good volume there could always be one spot that became distorted (clipped)... it was all pretty random...
Can you actually compare your 1 channel audio source to the mp4 encode filesize... I can't see how it will even allow a single channel file after encode.
:):D:eek:
Pascal
delacroixp
6th April 2007, 02:03
Lots of people really prefer to keep the video in the most pristine format possible, but would like the convenience of using a single file format like MKV.
I certainly do... especially if you're encoding from Mpeg-4 (P10) source material and you have no need to resize...
I'm no Einstein on encoding and video formats but what exactly is the real advantage of MKV over MP4... the actual encode is MP4 and the MKV container even increases the filesize... SAP's don't play either so you're left with PC-playback... sure different formats WMV, et al, have specific target hardware but what's the specific power of one format over another... menu's, filesize, quality, features ???
:):D:eek:
Pascal
Bigmango
6th April 2007, 02:10
but what exactly is the real advantage of MKV over MP4... the actual encode is MP4 and the MKV container even increases the filesize... SAP's don't play either so you're left with PC-playback... sure different formats WMV, et al, have specific target hardware but what's the specific power of one format over another... menu's, filesize, quality, features ???
:):D:eek:
Pascal
More flexibility. In an mkv you can keep all the subtitles and audio tracks when you do a dvd backup.
The killer feature for me is that with MKV you can have several AC3/DTS audio tracks. You can't use AC3/DTS with MP4.
I don't want low quality audio and I watch my movies on my home theater with a high end 6.1 receiver, so I need the AC3/DTS pass through.
One more reason for keeping the AC3/DTS with the h.264 files is that you should later be able to demux the mkv and author the sources directly to a blue ray / hd-dvd.
zambelli
6th April 2007, 05:09
tonight i had encode Matrix with Preset_Good_WVC1
perfect encode... but i cannot ear audio... even if is present :confused:
This might be a dumb question, but have you tried playing back the .avs to see if it's outputting any audio at all? Have you tried replacing NicAC3Source with just WAVSource to see if it works?
buzzqw
6th April 2007, 07:04
@zambelli
opening the avs in virtualdub and afte waiting 10 minutes... yes
the normalize() fuction first analyze all audio stream then apply the gain thru all encode...
i can suppose that normalize isn't best with wmcmd.vbs but the audio gain is very important when encoding from ac3/dts to wma audio.
very good solution could be letwme encoder/wmcmd.vbs to normalize the audio... but this fuction is missing...
Have you tried replacing NicAC3Source with just WAVSource to see if it works?
since i have the ac3 file i tryed with nicac3... because the directshowsource is a pita with wmcmd.vbs...
if isn't too much try downloading automkv80.rar and the update (all in first post in this thread) then try encoding a full film
a big thanks for your interest!
BHH
buzzqw
6th April 2007, 10:01
i open a pool on general discussion about resizer to include / exclude in next version
please vote!
BHH
zambelli
6th April 2007, 10:05
opening the avs in virtualdub and afte waiting 10 minutes... yes
the normalize() fuction first analyze all audio stream then apply the gain thru all encode...
Does any other encoder work with Normalize()? I'd be surprised. Most encoders expect a frame sample at a time - I doubt any encoder would wait 10 minutes for a sample without timing out or just moving on.
since i have the ac3 file i tryed with nicac3... because the directshowsource is a pita with wmcmd.vbs...
You could always use BeSweet to decode to WAV and then just use WAVSource. That's far more reliable anyway.
buzzqw
6th April 2007, 10:49
with other encoder i don't feed the audio directly ... because i mux video AND audio after encoding... but with i haven't found audio+video wmv muxer around (and comman line able...)
BHH
buzzqw
6th April 2007, 11:13
one more test
LoadPlugin("c:\nicaudio.dll")
NicAC3Source("c:\matrix.ac3",2)
normalize()
with this command line
cscript.exe "c:\WMCmd.vbs" -input "c:\audio_wma.avs" -output "C:\audio.wma" -audioonly -a_codec wmapro -a_mode 0 -a_setting 192_48_2_24
will generate a 2 hour and more silent audio file
the same script processed with bepipe (feeding nero aac or oggenc2.exe....) or soundout is perfectly audible.
substituting the normalize() with amplifydb(15) will solve the problem BUT can introduce clipping in audio track
Zambelli i don't want to bother you, seriusly, i will only ask if will be a better solution. And pre-encode ac3 to wav to wmv isn't my clear idea of good workflow...
thanks!
BHH
delacroixp
6th April 2007, 12:01
i open a pool on general discussion about resizer to include / exclude in next version
please vote!
BHH
where ???
I'm always a sucker for this kind of voting thing... under communism, apartheid (http://en.wikipedia.org/wiki/Apartheid), Hitler and pre-democratic history... most people (the average person) never got a chance to vote and declare their pleasure/displeasure...
Here at AutoMKV you can vote for progress and development, assured of the certainty that 'you are doing the right thing'... where it's one small step for AutoMKV but one giant leap for mankind...
:):D:eek:
Pascal
buzzqw
6th April 2007, 13:15
here http://forum.doom9.org/showthread.php?t=124389
BHH
delacroixp
6th April 2007, 13:27
It still disturbs me that I (as an MKV container user) can't use the AutoCrop-Only option... the sheer power and elegant simplicity of MKV is negated by the forced-resizing implementation of AutoMKV... which by it's very name... purports to champion MKV...
Only yesterday I encoded The Deer Hunter (http://en.wikipedia.org/wiki/The_Deer_Hunter) (Dec 1978) only to discover that it not only has 'huge' amounts of black space top and bottom (T=>70 B=>71) but also left and right (L=>9 R=>8)... this after more than 12hrs of encoding...
Unfortunately I then had to rely on an old friend, Dr DivX 2.0.0 OSS (http://souls-online.net/delacroixp/AutoMKV/DrDivX.jpg), to shed some light and show me the way (see pic)...
I then restarted the encode with manual cropping, adjusted upwards the left crop from 9 to 10, the bottom crop from 71 to 72 and manually set the muxing options to anamorphic and automatic...
This encode was complicated by the now modified resolution which was originally 720x576 (PAL)/16:9 but is now 702x434 ([720-18x576-142]anamorphic) which on playback becomes ???x434.
If that wasn't enough... my encode is right now getting funny on me too... see pic
http://souls-online.net/delacroixp/AutoMKV/DeerHunterThumb.jpg (http://souls-online.net/delacroixp/AutoMKV/DeerHunter.jpg)
click for full view...
:):D:eek:
Pascal
buzzqw
6th April 2007, 13:40
you cannot crop by odd numbers
open the movie.avs in virtualdub and spot the error
BHH
Barleyman
6th April 2007, 13:58
15:52:39 Framerate: 25.000000
15:52:39 Movie length in Seconds: 2690
15:52:39 Movie Width/Height: 704/576
15:52:39 DgIndex AR: 4:3
15:53:11 Processing completed. Type is determined to be progressive.
15:53:11 Order: unk
15:53:11 CQ encoding XviD: C:\Program Files\AutoMKV\exe\encoder\xvid_encraw.exe -cq 3 -progress -threads 0 -max_bframes 2 -imax 31 -quality 6 -vhqmode 1 -qtype 0 -pmax 31 -bmax 31 -framerate 25.000 -bquant_ratio
Does that mean I get no de-interlacing or I get some super-duper-slow de-interlacer?
Would it be possible to get xvid "cartoon" option support? south park encodes are oversized.. And I would imagine family guy/simpsons/futurama would be too.
I get ugly deinterlacing flicker with south park btw. Is there some straightforward way to deal with that?
Especially in the horisontal lines..
delacroixp
6th April 2007, 13:59
you cannot crop by odd numbers
You mentioned so once before but I thought I had correctly accounted for odd-cropping by adjusting upwards by +1 where necessary.
See "The Deer Hunter.ini"
DVD Drive = NONE
Input File = F:\Movies\To be Encoded\Deer Hunter\The Deer Hunter.VOB
Input Folder = F:\Movies\To be Encoded\Deer Hunter\
Output Folder = H:\Movies\Encodes\
Container = MKV
Movie Name = The Deer Hunter
Size = 1 CD
Slice = 1
Resizer = 12
Width = Original
Set encoding mode = X264
Audio Track 1 = NONE
Audio Codec 1 = Nero AAC
Audio Bit 1 = 7
Audio Bitrate 1 = 0.35
Audio Channel 1 = Stereo
Audio Track 2 = NONE
Audio Codec 2 = Nero AAC
Audio Bit 2 = 7
Audio Bitrate 2 = 0.35
Audio Channel 2 = Stereo
Sub Track 1 = NONE
Sub Track 2 = NONE
Encoding Profiles = ConstantQuality-CRF.xml
Hit Media/Go Unlimited = Selected Unlimited media size
Use CRF/CQ for AutoResize = 0
CRF/CQ Value = 18
Bitrate Encoding = 0
Bitrate Value = 700
Quality Encoding = 0
Quality Value = 75
Delete temporary files = 0
Encrust/Burn Subtitles = 0
Enable Shutdown = 0
Process this IFO = 0
Process this PGC = 0
PGC to Process = -1
Force ITU Resizing = 0
Anamorphic Encoding = 1
Filter = RemoveGrain(mode=5)
Enable Last Line AVS Script = 0
Last Line AVS Script = ChangeFPS(12.5)
Deinterlacer = AUTO
Field Order = AUTO
Language = eng
Use ProjectX for TS files = 0
Use custom X.ini = 0
Use DelayCut = 1
HQ Deinterlacer = 0
Matrix = NONE
Force PAR in XviD = NONE
Use DirectShowSource for Video = 0
Use DirectShowSource for Audio = 0
Enable Manual Crop And Resize = 1
Crop Top = 70
Crop Left = 10
Crop Bottom = 72
Crop Right = 8
Manual Width = 702
Manual Height = 434
Audio Track Name 1 =
Movie Title Name =
Audio Track Desc 1 =
Nero Profiles 1 = AUTO
Nero Encoding Mode 1 = Quality
CCT Profiles 1 = AUTO
Channel Options 1 = AUTO
MP3 Settings 1 = ABR
Windows Media Audio = AUTO
Windows Media Channel = AUTO
Normalize Audio 1 = 1
Frequency 1 = AUTO
Tempo 1 = NONE
Pitch 1 = NONE
OtherADD 1 =
Audio Track Name 2 =
Audio Track Desc 2 =
Nero Profiles 2 = AUTO
Nero Encoding Mode 2 = Quality
CCT Profiles 2 = AUTO
Channel Options 2 = AUTO
MP3 Settings 2 = ABR
Normalize Audio 2 = 1
Frequency 2 = AUTO
Tempo 2 = NONE
Pitch 2 = NONE
OtherADD 2 =
I've obviously made a mistake in my ignorance but I don't think odd cropping is to blame...
:):D:eek:
Pascal
glynor
6th April 2007, 14:28
The killer feature for me is that with MKV you can have several AC3/DTS audio tracks. You can't use AC3/DTS with MP4.
That's why I switched to using MKV over MP4. Plus, in my testing, the vast majority of Set Top Players couldn't even handle MP4 (and certainly couldn't handle x264). Since I decided XviD's quality wasn't going to cut it...
I do still use MP4 for some files (mostly purposed for streaming via my Quicktime Streaming Server), but for basically everything else I just use MKV. You just don't really have to worry about what format the stream is in... MKV can probably handle it.
buzzqw
6th April 2007, 15:27
@delacroixp
open the movie.avs in virtualdub and spot the error
@Barleyman
simply autodeint isn't unable to determine the frame / interlacer type.
if you know how to proper deinterlace, select the right frame type
for carton options you must use the zones option of xvid_encraw
C:\>xvid_encraw.exe -help zones
xvid_encraw - raw mpeg4 bitstream encoder written by Christoph Lampert 2002-2003
xvid_encraw built at 20:07:02 on Feb 3 2007
Zones options:
You can define up to 64 zones using the -zones option as described below.
-zones start,mode,value[,options][/start,mode,value[,options]]...
Parameters of a zones use the comma (,) as a delimiter. Multiple zones are separated by a slash (/). The end of each zone is defined by either the start of the following zone or the last frame of the input file.
start : Start frame of the zone
mode : weight zone = w, quanttizer zone = q
value : Depending on mode either the zone's weight or quantizer.
options : Enables certain encoder features for the zone. Each feature is represented by a single letter. An integer number stands for b-frame sensitivity. To enable multiple features at the same time combine the appropriate symbols without any delimiting characters.
K = being with keyframe
O = Enable chroma optimizer
G = Greyscale encoding
C = Cartoon mode
integer = B-Frame sensitivity
Example:
To create a first zone starting at frame 0 with weight 1.0, all options enabled and b-frame sensitivity -5, and a second zone starting at frame 1000 with constant quant 4 and no options enabled you would use the -zones option like this:
-zones 0,w,1.0,-5KOGC/1000,q,4
BHH
Barleyman
6th April 2007, 16:14
@Barleyman
simply autodeint isn't unable to determine the frame / interlacer type.
if you know how to proper deinterlace, select the right frame type
Hm. No no, you got mixed up.
I have de-interlace artifacts with south park, where I force TFF + deint. I get nice flickery horizontal lines, yuck. I get those even if I use the slooooooooow hq deint. No combing, thought, so TFF is correct.
With this other show (deadwood, actually) it says it's "progressive", but the field order says "unk" .. In any case, since I got ~25fps encode for that, I didn't get hit with the HQ encoder. OK pic quality, too.
Didn't know you can use progressive in PAL DVB.. On the other hand, I suppose it's progressive @ 25fps.
for carton options you must use the zones option of xvid_encraw
How about I just tick "XVID cartoon mode" checkbox? :p
buzzqw
6th April 2007, 16:29
I get nice flickery horizontal lines
could not be a FILM type ?
have you tryed all deint options with hq enabled ?
it says it's "progressive", but the field order says "unk"
when movie type is determine to be progressive the field test isn't done... so in UNKnow ...
How about I just tick "XVID cartoon mode" checkbox?
ok... let me work on this :)
BHH
Has anyone here any pointers on editing IFO files? I have a series I'm trying to encode and there are not individual IFO's for the individual episodes, so I would need to edit the single "play all" IFO to get single episodes, to add to the confusion the VOB's are mixed around. The first has Ep. 1 (both parts) and the show opening at the end, while another appears to begin with the second part of the third episode and another undoubtedly has the end credits on it somewhere.
Or is there a way I can choose by index & chapter from the DVD navigation to get what I want to encode in the right order?
Barleyman
6th April 2007, 16:50
could not be a FILM type ?
have you tryed all deint options with hq enabled ?
Possibly.
I do not know, I just tried "interlaced" and "TFF", which seems to be the right field order (no comb artifacts). I should DL latest SP episode from my PVR and experiment a bit with the alternative ops.
On Auto I get 66% TFF, 33% BFF and HQ deint, nice flickery artifacts and sloooooooow encoding. On deint and TFF I still get artifacts but 2x faster encodes.
..
By the way.. about matrixes..
What's the deal with sharktooth's matrixes?
I LR means "low rate" and HR means "high rate", but how high is "high" and how low is "low"? Bitrate/quantizer-wise?
What about ULR and UHR? What about v1 and v2?
buzzqw
6th April 2007, 17:05
@nx6
may i suggest the process this pgc ?
(yes, will be probably not fuction and format your pc... but give it a try!)
@Barleyman
On Auto I get 66% TFF, 33% BFF
i am not a avisynth guru... ask help on avisynth usage... :(
I LR means "low rate" and HR means "high rate", but how high is "high" and how low is "low"? Bitrate/quantizer-wise?
LR is mean for low bitrate (less the 700), ULR for less then 400 AND even using 10000 bitrate it will produce high quantization
UHR is mean for very low quantization when even the infime last b frames need a quant of 1 or 2... (used mainly for HD encoding... with bitrate over 8000)
BHH
P.S. added check box for greyscale and cartoon type...
Barleyman
6th April 2007, 17:18
LR is mean for low bitrate (less the 700), ULR for less then 400 AND even using 10000 bitrate it will produce high quantization
UHR is mean for very low quantization when even the infime last b frames need a quant of 1 or 2... (used mainly for HD encoding... with bitrate over 8000)
That still leaves HR and the v1 and v2 matrixes?
What to do with the run-of-the-mill anamorphic 576i ~2200kbps encode?
buzzqw
6th April 2007, 17:31
That still leaves HR and the v1 and v2 matrixes?
the best answer is TEST yourself...
but... since i have the flu and i am at home.... the difference betweeen v1 and v2 is unknow to me... i suppose is just an upgrade
What to do with the run-of-the-mill anamorphic 576i ~2200kbps encode?
Didee 6of9 could be a good matrix, but test it
BHH
@nx6
may i suggest the process this pgc ?
(yes, will be probably not fuction and format your pc... but give it a try!)
How do I use that feature? I tried to follow along with your mention of it here (http://forum.doom9.org/showthread.php?p=976867#post976867), but I still wasn't clear how I select individual episodes, or does it separate them out after the encoding?
P.S. added check box for greyscale and cartoon type...:thanks:
Barleyman
6th April 2007, 17:36
the best answer is TEST yourself...
but... since i have the flu and i am at home.... the difference betweeen v1 and v2 is unknow to me... i suppose is just an upgrade
Ha. I'm just curious. I'd be happy to leave it at "auto", but I'm fishing for something to put to the wiki so I can look smart!
glynor
6th April 2007, 17:41
the best answer is TEST yourself...
but... since i have the flu and i am at home....
Sorry about the flu. That stinks! :mad:
buzzqw
6th April 2007, 17:56
How do I use that feature? I tried to follow along with your mention of it here, but I still wasn't clear how I select individual episodes, or does it separate them out after the encoding?
how many ifo you have ? 1 i suppose (and hope)
start automkv
check process this ifo
check process this pgc
as input dile select the main ifo
on pgc selection you (must) see the episodes (pgc)
select one
tune the encoding (audio/video)
click start
BHH
zambelli
6th April 2007, 18:11
the same script processed with bepipe (feeding nero aac or oggenc2.exe....) or soundout is perfectly audible.
substituting the normalize() with amplifydb(15) will solve the problem BUT can introduce clipping in audio track
Zambelli i don't want to bother you, seriusly, i will only ask if will be a better solution. And pre-encode ac3 to wav to wmv isn't my clear idea of good workflow...
Do you get the same problem when you encode the .avs with WME9 GUI? If you do, then there's not much I can do to fix it. Unfortunately, I only have control over the encoder script - but no control over the WME9 SDK.
Personally, I think decoding to WAV - particularly when dealing with just stereo AC3 - is far more reliable then decoding AC3 in realtime. I've never had any A/V sync issues when using the decode to WAV method, and in an automated environment it's very easy to clean up any temp WAV files after the encode.
glynor
6th April 2007, 19:14
how many ifo you have ? 1 i suppose (and hope)
start automkv
check process this ifo
check process this pgc
as input dile select the main ifo
One little "niggle"...
Until you choose an Input file on the main tab, the Process this IFO/PGC checkboxes are greyed out. This actually irritates me somewhat regularly...
buzzqw
6th April 2007, 19:28
while the avs script will correct generate a MUTE wmv (with wmcms.vbs), the same script on wme 9sdk give a generic "interface not supported"...
btw i launched today my WMESE (from Windows Media Encoder Studio Edition beta program) and the program prompt that "This copy of Windows Media Encoder Studio Edition has expired. Please install a new version..."
but on Microsoft site i can't found a single link to download the "stable" wmese...
on download page http://www.microsoft.com/windows/windowsmedia/forpros/encoder/utilities.aspx what is the update to wmese ?
if i will not found i solution i will take the longer path... ac3->wav->wmv
thanks
BHH
EDIT
@glynor
ops... fixed in next update...
delacroixp
6th April 2007, 20:07
if i will not found i solution i will take the longer path... ac3->wav->wmv
All considered... that is probably the best path anyway...
BeSweet uses the AC3 + (audio boost) => WAV => MP4 transcode route for best results...
:):D:eek:
Pascal
delacroixp
6th April 2007, 20:21
After seeing the colour-changing avatar of (the great) zambelli it struck me that we really needed a spruced-up logo for AutoMKV...
Preferably, it should have something to do with 'automation, automatic, simplicity' and MKV...
Any suggestions... contact nx6
:):D:eek:
Pascal
on pgc selection you (must) see the episodes (pgc)
select one
tune the encoding (audio/video)
BHH
This is where I was getting stuck. Is this "Select PGC" under the "Check DVD Drive" button on the main front settings? Or is it on Advanced settings somewhere. I'm at work right now so I'll have to try it again when I get home, but when I had "process this PGC", and "process this IFO" selected, I didn't see any change in the selections on that menu. I had two choices: one of an hour and a half or so, and one that was 30 seconds.
One little "niggle"...
Until you choose an Input file on the main tab, the Process this IFO/PGC checkboxes are greyed out. This actually irritates me somewhat regularly...
Yeah, I noticed that, too. So do I have to select the IFO twice? Once to enable the check boxes and again to have it processed so I can select individual PGCs?
zambelli
6th April 2007, 23:58
while the avs script will correct generate a MUTE wmv (with wmcms.vbs), the same script on wme 9sdk give a generic "interface not supported"...
I don't think Normalize() is just going to work with wmcmd.vbs. Sorry.
btw i launched today my WMESE (from Windows Media Encoder Studio Edition beta program) and the program prompt that "This copy of Windows Media Encoder Studio Edition has expired. Please install a new version..."
but on Microsoft site i can't found a single link to download the "stable" wmese...
The WMESE project has been canceled. There will not be a final release of the product, unfortunately.
buzzqw
7th April 2007, 07:16
eah, I noticed that, too. So do I have to select the IFO twice?
till fixed in next release... yes, for specific ifo selection you must select 2 time the specific ifo
I had two choices: one of an hour and a half or so, and one that was 30 seconds
... so the 1h 30minnutes is the sum of all episodes ?... well , sorry, nothing to do with automkv
i can suggest to use the trim fuction of dgindex and create several projects (d2v) , one for episodes, the process these d2v
@zambelli
Thanks, anyway.
What about a wma+wmv(video only)=wmv(audio+video) command line muxer ???
BHH
delacroixp
7th April 2007, 10:00
Yeah, I noticed that, too. So do I have to select the IFO twice? Once to enable the check boxes and again to have it processed so I can select individual PGCs?
You may consider using DVD Decrypter (http://souls-online.net/delacroixp/AutoMKV/DVD_Decrypter.jpg) to rip your episodes from DVD or Image.
You can also enable Stream Processing (http://souls-online.net/delacroixp/AutoMKV/DVD_Decrypter_2.jpg) to include/exclude audio and subtitle tracks... pertinent information will be displayed and 'Direct Stream Copy' of audio tracks for further enhancement with BeSweet/BeLight is not out of the question. Of course, you'll also need MkvMerge (which you have) to manually mux everything when you're done.
If you Download (http://souls-online.net/delacroixp/AutoMKV/DVDDecrypter_3.5.4.0.exe) DVD Decrypter, don't forget to set... goto => Tools => Settings => IFO Mode => File Splitting => None
This will ensure that each PGC or even each chapter... is ripped into a 'single' VOB file and IFO file... you can rename them accordingly...
It's easier to work with one file than many bits and pieces... it'll create 1 file even if your chapter is 20 GB...
Good Luck and may The Force be with you.
:):D:eek:
Pascal
You may consider using DVD Decrypter (http://souls-online.net/delacroixp/AutoMKV/DVD_Decrypter.jpg) to rip your episodes from DVD or Image.
Ironically I had DVDDecrypter and uninstalled it a couple weeks ago when I realized that there was little reason to keep it around as AutoMKV used DVDFabDecrypter and MKVMagic never really worked for me.
You can also enable Stream Processing (http://souls-online.net/delacroixp/AutoMKV/DVD_Decrypter_2.jpg) to include/exclude audio and subtitle tracks... pertinent information will be displayed and 'Direct Stream Copy' of audio tracks for further enhancement with BeSweet/BeLight is not out of the question. Of course, you'll also need MkvMerge (which you have) to manually mux everything when you're done.
Thanks but I think you are suggesting a solution that is more complicated than it needs to be. I'm going to start reading through the manual for DGIndex now that I've finished watching Ran (Great film by the way. Long - but I highly recommend it). It's funny all the useful software you get as part of AutoMKV that I haven't really investigated. I think buzzqw's idea of editing down d2v files with DGIndex or editing IFO's would be an easier solution.
TheRyuu
7th April 2007, 17:37
Why does it keep putting this at the end of my movie.avs file. I really don't want it there:
ColorMatrix("Rec.709->Rec.601",hints=false,threads=3)
In my avisynth code box I have this:
ColorMatrix(Mode="Rec.601->Rec.709",scaling=2,threads=2)
Isn't the color matrix script it keeps putting at the end (top one) kind of taking away the point of using my own color matrix script (bottom one)??
gonwk
7th April 2007, 19:21
Hi folks,
I am using a Test clip in DVD format (you know VIDEO_TS) ... I have made it short so I can see my results fast.
This test clip has "Soft" subtitles ... I used AutoMKV 0.80a and when I choose subtitle one from drop-down menu ... and say encode it gives me error! I would have posted my .JPEG ... but I don't knwo how to do it with "URL" feature!!!
Q1: Has anyone been able to back up such a clip or dvd? And How to keep subtitles?
I use AVI option with XviD ... simply because my DVD player is only Xvid/DivX AVI capable. My Philips will not play x264 encoded AVI's.
Q2: Can my player play an .MKV file?
Thanks,
G!:)
Q2: Can my player play an .MKV file?
Probably not. Maybe MP4 container, though.
@buzzqw:
I tried a test using an edited d2v file last night, almost perfect.:) I got an error about parsing the d2v file when AutoMKV started the job, and I had to tell it where the audio tracks were (which I wasn't expecting), but the job did finish, only problem is I didn't get the subtitles. I guess I'll need to rip these manually first and then add them as a separate file for the AutoMKV job, right?
gonwk
7th April 2007, 21:50
Hi nx6,
Thanks for your answer!
G!:)
FrieWiled
8th April 2007, 01:14
@buzzqw
Thanks for the great program, tried out other day and it worked perfectly!
The previous version had problems with the audio conversion, but the new one works fine.
Even though the encoding takes awhile for high quality it's worth it.
I wanted to try it on my spare machine in vista, but had trouble getting AVI Mux GUI to start properly, do you know if anyone else had this prob?
Thanks,
Frie
I managed to manually rip the subs with VSRip (taking only the cells for the specific episode I was encoding), but I'm not sure if AutoMKV is accepting them.
The .idx and .sub files are in the same folder as the other files being used for the job, but the subtitle menu doesn't change after I have input the idx file on AutoMKV. I tried the RIP ALL SUBS option, but that didn't work. This encode actually didn't finish at all, and I still got the error at the start of the job. Besides trying to attach separate subs the only change I made from last time (where the encode completed in all aspects except subs is I used the default X264 profile, instaed of changing the quality quotient to 20 from 18. I was so happy with the small file size of the first test I decided I would bring up the video quality setting.
I'm going to try rerunning this and see what happens this time. One thing I changed this time is the .idx has the same name as the .sub file, which wasn't the case last time.
I got the error at the beginning (which says "Bad Perimeter Error" this time) already...
buzzqw
8th April 2007, 09:31
@wizboy11
there isn't option to not insert colormatrix... but i can work on it...
in next update if you have a file nocolormatrix (without extension) in automkv folder, then the colormatrix will be not applyed
@nx6
I got an error about parsing the d2v file when AutoMKV started the job, and I had to tell it where the audio tracks were (which I wasn't expecting),
queue ?
only problem is I didn't get the subtitles
use the external loader !!! (...) near subtitle selection
@FrieWiled
I wanted to try it on my spare machine in vista, but had trouble getting AVI Mux GUI to start properly, do you know if anyone else had this prob?
since i have now ffmpeg... i can mux with it... or least a can try!
stay tuned for next update!
BHH
queue ?
No, I'm not using Queue mode.
use the external loader !!! (...) near subtitle selection
I did try that (see my last post, we were writing at the same time).
Here's the log from that try:
00:26:51 0.80b - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
00:26:51 Selected Input file: S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01.d2v
00:26:51 Selected Output dir: S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\
00:26:51 Selected Final Name: Episode 001
00:26:51 Selected Container type: MKV
00:26:51 Selected Encoder: X264
00:26:51 Selected Size: 1 CD
00:26:51 Selected Slice: 1
00:26:51 Selected Profile: ConstantQuality-CRF.xml
00:26:51 Selected Width: Original
00:26:51 Selected Resizer: NONE
00:26:51 Selected Filters: NONE
00:26:51 Selected Deinterlacer: AUTO
00:26:51 Selected Field Order: AUTO
00:26:51 Enabled CRF/CQ AutoRes at 18 value
00:26:51 Track Language 1: S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01 T01 2_0ch 224Kbps DELAY 0ms.ac3
00:26:51 Audio Codec 1: Nero AAC
00:26:51 Audio Quality 1: 0.25
00:26:51 Audio Channel 1: Stereo
00:26:51 Track Language 2: S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01 T02 2_0ch 224Kbps DELAY 0ms.ac3
00:26:51 Audio Codec 2: Nero AAC
00:26:51 Audio Quality 2: 0.25
00:26:51 Audio Chennel 2: Stereo
00:26:51 Load external subtitle file: S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01subs.idx
00:26:51 Advanced Audio Settings DUMP Track 1
00:26:51 Movie title Name: Bleach 001: The Day I Became a Shinigami
00:26:51 Audio Track Language: eng
00:26:51 Audio Track Name: English
00:26:51 Nero Option Profiles: AUTO --- Encoding Mode: Quality
00:26:51 CCT Option Profiles: AUTO --- Channel Options: AUTO
00:26:51 Lame Settings: ABR
00:26:51 Audio Normalization: 1
00:26:51 Frequency: AUTO --- Tempo : NONE
00:26:51 Pitch: NONE --- Other Add :
00:26:51 Advanced Audio Settings DUMP Track 2
00:26:51 Audio Track Language: jpn
00:26:51 Audio Track Name: Japanese
00:26:51 Nero Option Profiles: AUTO --- Encoding Mode: Quality
00:26:51 CCT Option Profiles: AUTO --- Channel Options: AUTO
00:26:51 Lame Settings: ABR
00:26:51 Audio Normalization: 1
00:26:51 Frequency: AUTO --- Tempo : NONE
00:26:51 Pitch: NONE --- Other Add :
00:26:51 Selected 1' Sub tracks: RIP ALL SUBS
00:26:51 Selected Unlimited media size
00:26:51 Starting SubRipping
00:26:53 Subtitle Size: -1 bytes
00:26:53 Finished SubRipping
00:26:54 DelayCut CMD: S:\AutoMKV080b\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\fixed1.ac3" "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01 T01 2_0ch 224Kbps DELAY 0ms.ac3"
00:27:33 DelayCut CMD: S:\AutoMKV080b\exe\dgindex\Delaycut.exe -auto -out "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\fixed2.ac3" "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01 T02 2_0ch 224Kbps DELAY 0ms.ac3"
00:28:14 Encoding S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\fixed1.ac3 to NeroAAC with 0.25 quality
00:31:18 Encoded 1' Audio Track: 9302842 bytes
00:31:18 Encoding S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\fixed2.ac3 to NeroAAC with 0.25 quality
00:34:43 Encoded 2' Audio Track: 9478314 bytes
00:35:00 Number of Frames: 41339
00:35:00 Framerate: 29.970030
00:35:00 Movie length in Seconds: 1380
00:35:00 Movie Width/Height: 720/480
00:35:00 DgIndex AR: 4:3
00:39:34 Processing completed. Type is determined to be film.
00:39:34 BFF: 43
00:39:34 TFF: 147
00:39:34 Order: var
00:39:35 Starting X264
00:39:35 CRF encoding X264: S:\AutoMKV080b\exe\encoder\x264.exe --pass 1 --crf 18 --stats "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\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:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\movie.mp4" "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\movie.avs"
02:35:00 Accepted values are between 697303040 and 741343232 bytes (movie+audio)
02:35:00 Got a file of size: 199820871 bytes + audio size 18781158 bytes (218602032)
02:35:00 Only Movie Size: 199820871 bytes
02:35:00 "S:\AutoMKV080b\exe\matroska\mkvmerge.exe" -o "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\Episode 001.mkv" --track-name -1:"Episode 001" --aspect-ratio 1:1.333333 "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\movie.mp4" --track-name -1:"English" --language -1:eng "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\audio.mp4" --track-name -1:"Japanese" --language -1:jpn "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\audio2.mp4" "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01subs.idx" --title "Bleach 001: The Day I Became a Shinigami"
02:35:08 Final Muxed size: -1 bytes
02:35:08 Encoding finished: 02:08:17 elapsed time
02:35:08 -----------------------------------------------------------------------
02:35:08 Script AutoCrop.log
02:35:08
02:35:08 Crop(4,0,712,480)
02:35:08 -----------------------------------------------------------------------
02:35:08 Script Resmovie.avs
02:35:08 -----------------------------------------------------------------------
02:35:08 Script movie.avs
02:35:08
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\autocrop.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\BicublinResize.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\blockbuster.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\cnr2.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\ColorMatrix.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\Convolution3D.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\corrector.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\DctFilter.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\Decomb.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\Deen.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\degrainmedian.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\DGDecode.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\EEDI2.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\fft3dfilter.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\FluxSmooth.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\frfun7.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\hqdn3d.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\LeakKernelDeint.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\MaskTools.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\medianblur.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\MipSmooth.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\mt_masktools.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\mvtools.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\NicAudio.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\RemoveGrainSSE2.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\RepairSSE2.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\SangNom.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\SimpleResize.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\SoundOut.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\TBilateral.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\TDeint.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\TIVTC.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\TomsMoComp.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\TTempSmooth.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\UnDot.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\UnFilter.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\VSFilter.dll")
02:35:08 #loadpluginstart
02:35:08
02:35:08 #test1
02:35:08
02:35:08 Import("S:\AutoMKV080b\exe\filter\MCBob_v03c.avsi")
02:35:08 Import("S:\AutoMKV080b\exe\filter\mvbob.avsi")
02:35:08 Import("S:\AutoMKV080b\exe\filter\seesaw.avsi")
02:35:08 Import("S:\AutoMKV080b\exe\filter\spresso.avsi")
02:35:08 #importstart
02:35:08
02:35:08 #test2
02:35:08
02:35:08 movie = mpeg2source("S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01.d2v")
02:35:08 function getOrder(clip c) {
02:35:08 order = GetParity(c) ? 1 : 0
02:35:08 Return order }
02:35:08 #filter1start
02:35:08
02:35:08 #test3
02:35:08
02:35:08 #cropstart
02:35:08
02:35:08 cropclip = autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=0,threshold=34,samplestartframe=0)
02:35:08 fixed_aspect = 0.888889
02:35:08 c_width = width(cropclip)
02:35:08 c_height = Round(height(cropclip) / fixed_aspect)
02:35:08 input_par = float(float(c_width)/float(c_height))
02:35:08 input_par = input_par > 1.4 ? input_par : (4.0/3.0)
02:35:08 out_width = 720
02:35:08 out_height = Round(float(out_width) / input_par)
02:35:08 hmod = out_height - (floor(out_height / 16 ) * 16)
02:35:08 out_height = (hmod > 4) ? (out_height + (16 - hmod)) : (out_height - hmod)
02:35:08 new_aspect = (float(out_width) / float(out_height)) / fixed_aspect
02:35:08 autocrop(movie,mode=0,wmultof=4,hmultof=4,samples=40,aspect=new_aspect,threshold=34,samplestartframe=0)
02:35:08
02:35:08 last = movie
02:35:08 tfm(d2v="S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01.d2v").tdecimate()
02:35:08 #resizestart
02:35:08
02:35:08 #test4
02:35:08
02:35:08 #filter2start
02:35:08
02:35:08 #test5
02:35:08
02:35:08 -----------------------------------------------------------------------
02:35:08 Script mkvmaudio.avs
02:35:08
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\NicAudio.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\SoundOut.dll")
02:35:08 NicAC3Source("S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\fixed1.ac3")
02:35:08 #Applying STEREO downmixing routines
02:35:08 function stereo(clip a)
02:35:08 {
02:35:08 flr = GetChannel(a, 1, 2)
02:35:08 fcc = GetChannel(a, 3)
02:35:08 lfe = GetChannel(a, 4)
02:35:08 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
02:35:08 mix = MergeChannels(lfc, lfc)
02:35:08 lrc = MixAudio(flr, mix, 0.2929, 1.0)
02:35:08 blr = GetChannel(a, 5, 6)
02:35:08 Return MixAudio(lrc, blr, 1.0, 0.2929)
02:35:08 }
02:35:08 #
02:35:08 6==Audiochannels() ? stereo() : last
02:35:08 Normalize()
02:35:08 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV080b\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.25 -if - -of audio.mp4",postfilename="",nofilename=true,showoutput=false)
02:35:08 -----------------------------------------------------------------------
02:35:08 Script mkvmaudio.bat
02:35:08
02:35:08 "S:\AutoMKV080b\exe\BeSweet\vdub.exe" /x "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\mkvmaudio.avs"
02:35:08 -----------------------------------------------------------------------
02:35:08 Script mkvmaudio2.avs
02:35:08
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\NicAudio.dll")
02:35:08 LoadPlugin("S:\AutoMKV080b\exe\filter\SoundOut.dll")
02:35:08 NicAC3Source("S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\fixed2.ac3")
02:35:08 #Applying STEREO downmixing routines
02:35:08 function stereo(clip a)
02:35:08 {
02:35:08 flr = GetChannel(a, 1, 2)
02:35:08 fcc = GetChannel(a, 3)
02:35:08 lfe = GetChannel(a, 4)
02:35:08 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
02:35:08 mix = MergeChannels(lfc, lfc)
02:35:08 lrc = MixAudio(flr, mix, 0.2929, 1.0)
02:35:08 blr = GetChannel(a, 5, 6)
02:35:08 Return MixAudio(lrc, blr, 1.0, 0.2929)
02:35:08 }
02:35:08 #
02:35:08 6==Audiochannels() ? stereo() : last
02:35:08 Normalize()
02:35:08 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV080b\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.25 -if - -of audio2.mp4",postfilename="",nofilename=true,showoutput=false)
02:35:08 -----------------------------------------------------------------------
02:35:08 Script mkvmaudio2.bat
02:35:08
02:35:08 "S:\AutoMKV080b\exe\BeSweet\vdub.exe" /x "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\temp\mkvmaudio2.avs"
02:35:08
02:35:08 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
buzzqw
8th April 2007, 09:53
well... for d2v input it is normal that when loading as video input a d2v file, automkv will ask for till 2 audio tracks, click cancel for no audio tracks.
about muxing error...
go in dos box and launch muxing.bat, what is the error ?
thanks!
BHH
FrieWiled
8th April 2007, 12:56
@buzzqw:
since i have now ffmpeg... i can mux with it... or least a can try!
stay tuned for next update!
Thanks!
Legend!
fogbav
8th April 2007, 13:53
Just wanted to post that if someone has a problem that automkv is crashing permanently when starting - deinstalling Net Framework 3.0 helps a lot ..8)
Jumped back to 2.0 ... everything works fine again ...
Happy Easter Eggs ...
FoGBaV
TheRyuu
8th April 2007, 14:11
@wizboy11
there isn't option to not insert colormatrix... but i can work on it...
in next update if you have a file nocolormatrix (without extension) in automkv folder, then the colormatrix will be not applyed
BHH
I want colormatrix applied, just that I want MY colormatrix script applied. :)
buzzqw
8th April 2007, 15:00
@FrieWiled
in next update i added an option to mux (avi) with ffmpeg (will be visible, in advanced settings, only when selecting avi container)
@fogbav
are you sure ?
automkv doesn't have any dipendences with .net framework...
@wizboy11
since colormatrix is inserted per default, using the nocolormatrix file will not insert it and you can use last avs script to insert your colormatrix
BHH
about muxing error...
go in dos box and launch muxing.bat, what is the error ?
Actually, my third test (the one I was starting when I posted my last message last night) finished successfully. With all audio and subtitle tracks, so it looks like my error was having .idx and .sub filenames mismatched. :) This also means launching muxing.bat now just reproduced that same file, so I can't recreate the error, sorry. :(
What is causing vsrip to say "Error parsing perimeter file" when the job first starts? :confused:
delacroixp
8th April 2007, 20:01
What is causing vsrip to say "Error parsing perimeter file" when the job first starts? :confused:
I got a similar error while encoding 'The Aristocats'... the first time that I've tried subtitles... regular and 'hearing impaired'...
:):D:eek:
Pascal
@buzzqw
a-Ha a-Ha! It failed on muxxing again. And I can rerun from DOS prompt as you asked.
"S:\AutoMKV080b\exe\matroska\mkvmerge.exe" -o "S
:\temp\Bleach Ep 001.mkv" --track-name -1:"Bleach Ep 001" --aspect-ratio 1:1.333
333 "S:\temp\movie.mp4" --language -1:eng "S:\temp\audio.mp4" --language -1:jpn
"S:\temp\audio2.mp4" " "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\V
TS_01_0.idx" " --title "Bleach 001: The Day I Became a Shinigami."
mkvmerge v2.0.2 ('You're My Flame') built on Feb 21 2007 23:40:43
Error: The source file ' S:\AutoMKV080b\temp\FullDisc\Bleach' could not be opene
d successfully, or retrieving its size by seeking to the end did not work.
The only changes between this and the last time was a filter set were used and a title was added. However, the first run I tried (where everything worked fine but I had no subtitles because I hadn't tried adding them manually) used removegrain and had a title added. But both tries where muxxing has failed - the title had a colon in it!
buzzqw
8th April 2007, 21:40
the title had a colon in it!
exaclty ! :helpful:
for dos colon has special proprierties and cannot be used in batch
BHH
exaclty!
for dos colon has special proprierties and cannot be used in batch
BHH
Aw, man! So I can't use a colon in my movie titles? I figured DOS had been told to ignore special characters in the title field since they are part of a text string.
Now I can't do "[series] [ep#]: [ep title]" for my movie titles. I guess I coud just substitute a hyphen in instead. I can't use pipe characters or slashes either then can I?
Isn't this rather unsafe? What if I title a movie "C:\ del *.*" or something, would I erase my hard drive?
Edit: Is the title embedded somewhere other than that batch file? I edited the batch file in notepad and changed the colon to a hyphen so I wouldn't have to wait for it to reencode everything to fix this, and the batch still wont run.
Tobytl
8th April 2007, 22:06
@buzzqw
a-Ha a-Ha! It failed on muxxing again. And I can rerun from DOS prompt as you asked.
"S:\AutoMKV080b\exe\matroska\mkvmerge.exe" -o "S
:\temp\Bleach Ep 001.mkv" --track-name -1:"Bleach Ep 001" --aspect-ratio 1:1.333
333 "S:\temp\movie.mp4" --language -1:eng "S:\temp\audio.mp4" --language -1:jpn
"S:\temp\audio2.mp4" " "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\V
TS_01_0.idx" " --title "Bleach 001: The Day I Became a Shinigami."
mkvmerge v2.0.2 ('You're My Flame') built on Feb 21 2007 23:40:43
Error: The source file ' S:\AutoMKV080b\temp\FullDisc\Bleach' could not be opene
d successfully, or retrieving its size by seeking to the end did not work.
The only changes between this and the last time was a filter set were used and a title was added. However, the first run I tried (where everything worked fine but I had no subtitles because I hadn't tried adding them manually) used removegrain and had a title added. But both tries where muxxing has failed - the title had a colon in it!
It also doesn't help that your double quoting the file name.
" "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\VTS_01_0.idx" "
the path has a space in it, thus needs to be quoted so dos doesn't auto parse it as separate parameters. But there are two quotes before and after the filepath, negating the effect. It's kind of like a double negative.
The error that mkvmerge throws also bears this out. It tries to load ' S:\AutoMKV080b\temp\FullDisc\Bleach' and can't, notice that it's cut off at the first space.
As far as the colon goes, in this instance it shouldn't matter. Dos doesn't really see it, it's quoted. All dos sees is a block of text to send to the executable as a single parameter, not caring about whats in it. File names cannot contain a colon, but the title is just a piece of metadata in the file.
It also doesn't help that your double quoting the file name.
I actually didn't write any of the batch file, AutoMKV builds it.
" "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\VTS_01_0.idx" "
the path has a space in it, thus needs to be quoted so dos doesn't auto parse it as separate parameters. But there are two quotes before and after the filepath, negating the effect. It's kind of like a double negative.
Thanks, that would explain why getting rid of the colon didn't fix this.
The error that mkvmerge throws also bears this out. It tries to load ' S:\AutoMKV080b\temp\FullDisc\Bleach' and can't, notice that it's cut off at the first space.
I actually noticed that, but I didn't have a muxxing error on the tries where I didn't have the colon in the moviename, but the path still had a space in it then. Too bad I don't still have a muxxing.bat file from one of the attempts that completed successfully without any editing. Then we could see if AutoMKV wrote the path differently those times.
I fixed the path and put back the colon in the title and the file muxxed. :)
Tobytl
9th April 2007, 00:04
@nx6
I'm sorry, I didn't mean to imply you specifically, I meant the general form of 'you' meaning the batch file/program. It wasn't a criticism, just me trying to point out where the error really was. I was in work mode there for a second, sorry again.
@buzzqw
I really think you should consider deinterlacing before cropping. After I last brought it up, I ran about 60 movies through to back up to my htpc. And the problem that we both thought was an isolated fluke, doesn't appear to be so isolated or flukish. A little over a third of them have the color bleeding problem from being improperly cropped before deinterlacing. It's harder to spot on live action titles than it is on anime/cartoons but once you see it, it's all you can see. It's not just my setup either, I pointed it out on a friends encodes that he thought were fine and now it's driving him nuts too. It'll look like the luma, or the 'structure' of the image changes, but the chroma (color) will appear to be from the frame before or after. It's especially noticeable on a scene change or camera switch. Film material won't do it every frame, but more like 1-2 frames every 3 or 4 will. If your AutoCrop.log file has a top of anything non divisible by 4 and your source is truly interlaced or telecined material, take a look at your movie.avs in virtualdub real close. ex: Crop(0,58,720,360).
YV12(mpeg4/mpeg2/dvd) interlaced should be cropped on mod4 offsets, autocrop was written to be used on material thats already progressive so doesn't enforce those offsets. If you crop YV12 interlaced on non mod4 offsets (vertically) then you split the UV chroma block and essentially swap the chroma information between the two fields of that image when they are split apart during the deinterlacing/IVTC process.
Since AutoMKV was still open, and I was mowing the lawn and doing some other things, in the interest of bug fixing I ran the complete job again from AutoMKV, this time taking the colon out of the movie name was the only change. The idea was to reproduce the earlier job where the encode completed successfully with subtitles without editing the batch, but it failed muxxing again. Here is the batch file when run from DOS:
"S:\AutoMKV080b\exe\matroska\mkvmerge.exe" -o "S
:\temp\Bleach Ep 001.mkv" --track-name -1:"Bleach Ep 001" --aspect-ratio 1:1.333
333 "S:\temp\movie.mp4" --language -1:eng "S:\temp\audio.mp4" --language -1:jpn
"S:\temp\audio2.mp4" " " "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS
\VTS_01_0.idx" " " --title "Bleach 001 test 5"
mkvmerge v2.0.2 ('You're My Flame') built on Feb 21 2007 23:40:43
Error: The source file ' S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\V
TS_01_0.idx' could not be opened successfully, or retrieving its size by seeking
to the end did not work.
Notice that there are now three sets of quotes on the subtitle file's path.
Closed AutoMKV, reopened and set up job again. This is the 6th test. File had a colon in it's movie name and audio/subs came out fine. Muxxing completed.
Here's the batch file:
"S:\AutoMKV080b\exe\matroska\mkvmerge.exe" -o "S:\temp\EP01_Test_6.mkv" --track-name -1:"EP01_Test_6" --aspect-ratio 1:1.333333 "S:\temp\movie.mp4" --language -1:eng "S:\temp\audio.mp4" --language -1:jpn "S:\temp\audio2.mp4" "S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\VTS_01_0.idx" --title "Bleach Ep01: Test 6."
There's only one set of quotes this time.
It seems each successive run of the job adds an additional set of quotes to the subtitle file path. The reason I had jobs completing before is they were the first time running the job after launching AutoMKV. I was doing a "test" run to check final muxxed size, video quality, filter effect, etc, and for these tests I wasn't doing the little things like writing the complete movie title (I would just put "test #") or labeling the audio tracks with their language designations.
But after one of these jobs completed and I had decided on any final settings/profile tweaking, I would run the "final job" which in this case meant changing the title to the final title I wanted (which had a colon in it), that is where I was getting confused as to the cause of the muxxing failure. It was just a coincidence it was happening on those jobs, the real reason is that I hadn't relaunched AutoMKV, so it was adding the extra sets of quotes to my subsequent jobs and causing the failure. Between the second and third test runs I had closed AutoMKV. That's why:
The third test completed.
But the fourth test failed.
Then I manually edited the batch to remove double quotes and manually launched muxxing again from DOS, which allowed it to complete.
After that I deleted the temp folder for bug testing, but left AutoMKV open while I was doing this.
Then I ran the fifth test which failed, with three sets of quotes on newly created batch file.
What a very interesting bug, I wonder what causes it to remember how many times it had been run.
I suppose the workaround is to remove all spaces from the subtitle path so the extra quotes does not effect the path being read correctly.
buzzqw
9th April 2007, 09:34
@nx6
that's error was very subtle...
it was only triggered by quequing / starting the same subtitles more then 1 times
every time the job starts quotes was added to subititle...
now is fixed! thanks nx6!!!
@Tobytl
please try downloading this build
http://www.64k.it/andres/data/a/AutoMKV0.80c-Tobytl.exe
and report back :)
(i have fixed other bugs but since it is a special build i will not public changelog)
BHH
@nx6
that's error was very subtle...
it was only triggered by quequing / starting the same subtitles more then 1 times
every time the job starts quotes was added to subititle...
now is fixed! thanks nx6!!!
Cool.:cool:
What about the "Error parsing perimeter file" that I get at the beginning and delacroixp has seen before? If I was running in queue mode would I get this on every job and hold up the queue from processing?
Question about separate subtitles...
Does the external subtitle file have to match just the content of the d2v file I'm using? Like if I ran three d2v files (one for each episode) would I need three separate sets of idx/sub files (one with each episode's isolated subs), or could I have one subtitle file that contained the subs of all three episodes and each d2v would use only the subs appropriate for its episode?
I'm also interested to know if you will implement deinterlacing before cropping as Tobytl suggested.
delacroixp
9th April 2007, 10:47
Cool.:cool:
What about the "Error parsing perimeter file" that I get at the beginning and delacroixp has seen before? If I was running in queue mode would I get this on every job and hold up the queue from processing?
Well, to be quite honest... I've only seen that error ("Error parsing parameter file") once... and that was yesterday while encoding "The Aristocats"... with subtitles (normal + hearing impaired)... which also gave me the opportunity to test the Anime (Convolution3D-HQ) Filter... since The Aristocats is a very 'old style' animation... unlike todays 3D and Computer Animated movies which are superRealistic and don't have, cartoon-like, pencil drawing lines...
As to the 'error'... isn't that the one you just discovered and sorted... I got the error but the encode happily carried on... allbeit without subtitles...
I'm giving Tobytl's AutoMKV 0.80c a go to redo the the subtitles... which hopefully... the Gods being pleasantly disposed... I can mux separately with MkvMerge.
cya...
:):D:eek:
Pascal
*** EDIT ***
5 mins later...
My apologies @nx6...
the error message from VSRip is still there...
delacroixp
9th April 2007, 11:36
I tried 0.80c and then 0.80b for the first time... the DOS box was different but working fine...
http://souls-online.net/delacroixp/AutoMKV/TheAristocats.jpg
:):D:eek:
Pascal
buzzqw
9th April 2007, 14:47
What about the "Error parsing perimeter file"
this message is from vsrip, most probably is trying to rip a subtitle that not exist in this pgc... please post the param.lst
usually when this error happen is better or to Rip all sub or rip single sub
EDIToes the external subtitle file have to match just the content of the d2v file I'm using? Like if I ran three d2v files (one for each episode) would I need three separate sets of idx/sub files (one with each episode's isolated subs), or could I have one subtitle file that contained the subs of all three episodes and each d2v would use only the subs appropriate for its episode?
you need 3 subtitles. how the d2v could contain info about correct subtitles timing ?
I'm also interested to know if you will implement deinterlacing before cropping as Tobytl suggested.
what do you thing about "special" build targeted to Tobytl? :rolleyes:
@delacroixp
as usually i don't understan your message... please try giving more information... (a little bit more is needed... remember ???)
try opening movie.avs in virtualdub and write down the error, then post the log
BHH
delacroixp
9th April 2007, 15:38
@delacroixp
as usually i don't understan your message... please try giving more information... (a little bit more is needed... remember ???)
try opening movie.avs in virtualdub and write down the error, then post the log
As usual... there is no real message... I merely mentioned @nx6 that I also got the VSRip "Error parsing parameter file"... and when I tried Tobytl's 0.80c and even back to 0.80b I got a wierd DOS box while encoding... funny enough it was actually encoding since movie.mp4 was steadily increasing in size... I killed the encode since there was no problem with the original encode (other than it left out the subtitles)... but nx6 seams to be onto that anyway... so I'll leave well alone... and try again later... np.
:):D:eek:
Pascal
delacroixp
9th April 2007, 15:45
Sorry... I forgot to mention about 'The Deer Hunter' encode...
As usual... you're always right... there was nothing wrong with my L=10 and R=8 crop except that 702x??? is unacceptable since 702 is NOT Mod 4... so Left crop became 8... width became 704 and all went amazingly well for a change...
Thanks much
:):D:eek:
Pascal
buzzqw
9th April 2007, 16:03
702 is NOT Mod 4
... i will try to check these manual values...
BHH
delacroixp
9th April 2007, 16:19
Well, while we're about it...
Will MKV allow subtitles directly from VOB... I've ripped out each subtitle with it's own IFO (DVD Decrypter)...
Also the extras and their individual soundtracks (including Spanish, Greek and Hebrew)... which were then converted (with vol boost) to WAV and back to MP4... so the folder's looking seriously messy at this point in time... not to mention, complicated for even my prodigeous mental capabilities... Tickle (http://web.tickle.com/) put my IQ up there with Bill Gates at 2543... how bad is that ???
Please help.
:thanks:
:):D:eek:
Pascal
btw
I still feel that if AutoCrop-Only was working correctly... I wouldn't have had those problems with 'The Deer Hunter'...
I'm not really a hands-on kinda person as much as I've loved encoding over here with AutoMKV... personally I'ld rather drive a new car that works flawlessly... or better still, take a Taxi with someone else at the wheel...
***EDIT***
OK... well encoding with AutoMKV is like the first trip to Mars... how bad is that ???
And it's like wayyy better than MeGUI... or what ??
DOS was gr8, GUI is better ?
delacroixp
9th April 2007, 16:57
DVD Fab Decrypter (http://forum.doom9.org/showthread.php?t=124149) was updated...
blutach's avatar (see post) is to die for... I think we need something like that for AutoMKV... a little animation to highlight the power of film and motion...
What's it take to get an avatar like that... become a Doom9 Team Member ?
:):D:eek:
Pascal
buzzqw
9th April 2007, 17:22
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)
Well, to be quite honest... I've only seen that error ("Error parsing parameter file") once... and that was yesterday while encoding "The Aristocats"... with subtitles (normal + hearing impaired)... which also gave me the opportunity to test the Anime (Convolution3D-HQ) Filter...
Ah, I was trying that filter, too. It seems to have a very positive effect on my final movie size. But the error was showing up on earlier tries without the filter.
5 mins later...
the error message from VSRip is still there...
I don't mind so much if the error message appears, as long as I don't have to dismiss it for the rip to continue.
this message is from vsrip, most probably is trying to rip a subtitle that not exist in this pgc... please post the param.lst
The closest I have is para.lst. There's not much in it.
S:\temp\VTS
0
1
ALL
CLOSE
usually when this error happen is better or to Rip all sub or rip single sub
Rip all subs is the only option I can choose in these tests.
you need 3 subtitles. how the d2v could contain info about correct subtitles timing ?
I didn't know if the idx file still contained the VOB/cell timing info.
buzzqw
9th April 2007, 19:05
S:\temp\VTS
0
1
ALL
CLOSE
that's mean rip all sub from first chain
try manually launching vsrip and load the ifo, what is the first chain ? is possible to rip ?
Rip all subs is the only option I can choose in these tests
that's mean that NO SUBTITLE is avaiable (detected) in your source file.
If your input is vob/ts/d2v/avs..., you don't have any source of subtitles. Only with ifo files you have a source for subtitles
Is AutoMKV that insert Rip All Subs, per default, indipendently of source files
Even if your vob contain several subtitles it is impossible to extract it without having the ifo...
And so this error is not error of automkv.
I didn't know if the idx file still contained the VOB/cell timing info.
use dvddecrypter and rip by chapter, then process every chapter by vsrip to extract proper subtitles
BHH
If your input is vob/ts/d2v/avs..., you don't have any source of subtitles. Only with ifo files you have a source for subtitles
Is AutoMKV that insert Rip All Subs, per default, indipendently of source files
Even if your vob contain several subtitles it is impossible to extract it without having the ifo...
And so this error is not error of automkv.
So what you're saying is I only select the subtitles with the menu if I am using an IFO for input. If I'm using a d2v, then I just load the external file and leave the drop-down menu on "None". Thank you, it looks like this is "operator error". :)
use dvddecrypter and rip by chapter, then process every chapter by VSRip to extract proper subtitles
I was taking VSRip and just deselecting the cells I didn't want subtitles for, leaving the cells that make the episode I was working on. Seemed to work well for this first episode I've been playing with.
Looking into DVDFabDecrypter's settings, looks like I could have just done the same thing with it. If I had seen that I wouldn't have add to mess with making d2v files to start with. Something to remember with the next disc.
delacroixp
9th April 2007, 20:58
use dvddecrypter and rip by chapter, then process every chapter by vsrip to extract proper subtitles
I was taking VSRip and just deselecting the cells I didn't want subtitles for, leaving the cells that make the episode I was working on. Seemed to work well for this first episode I've been playing with.
Looking into DVDFabDecrypter's settings, looks like I could have just done the same thing with it. If I had seen that I wouldn't have add to mess with making d2v files to start with. Something to remember with the next disc.
Certainly a solution for my subtitles from 'The Aristocats'.
:thanks: & :thanks:
:):D:eek:
Pascal
Tobytl
9th April 2007, 22:04
0.80c-Tobytl does indeed fix the color bleeding issue! I thank you, and Futurama thanks you.
@delacroixp
I think you may be running into a completely different problem. As long as the image is progressive (already deinterlaced/IVTCed) you can crop on mod2 offsets without issue, so with 0.80c this is perfectly reasonable.
I believe you mentioned that you aren't resizing, which is admirable, no quality loss from the resize and all. But you will also run into some more problems that way. MPEG video, regardless of the version (mpeg1/2/4/asp/avc) requires mod16 height/width because the macroblocks that are the largest 'unit' in mpeg encoding are 16x16, 704 is mod16, 574 is not (576 is). Some encoders will continue on anyway, warning you about compression loss and/or incompatibility with some decoders (like in your funny dos window). When you do resize, the autocrop bit in the movie.avs takes care of this for you, making out_height mod16. If you don't resize though, and you still crop, the width/height should be mod16 for compatibility sake.
This can be done with autocrop by itself fairly easily. A conditional like
if(width==autocrop only && resizer==none){
autocrop(movie,mode=0,wmultof=16,hmultof=16,samples=40,aspect=0,threshold=34,samplestartframe=0)
}else{
normal autocropping
}
delacroixp
10th April 2007, 10:04
@delacroixp
This can be done with autocrop by itself fairly easily. A conditional like
if(width==autocrop only && resizer==none){
autocrop(movie,mode=0,wmultof=16,hmultof=16,samples=40,aspect=0,threshold=34,samplestartframe=0)
}else{
normal autocropping
}
Very neat... I've never done any Avisynth script editing/creating... but this may well be a good start.
:thanks:
:):D:eek:
Pascal
delacroixp
10th April 2007, 10:17
I've been converting RAW AVI into mp4-mkv @ 18-CQ-CRF as source material for future projects... the resultant file is about 25% of the original... and so freeing-up terabytes of hdd space...
I've run into 3 files that refuse to co-operate...
The sound encodes fine and the video encodes @ 75fps (normally 11 fps) and the 'small' files are totally green...
*** AutoMKV log File ***
10:47:29 0.80b - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
10:47:29 Selected Input file: H:\Incomming\mok.avi
10:47:29 Selected Output dir: H:\Encodong\temp\
10:47:29 Selected Final Name: mok
10:47:29 Selected Container type: MKV
10:47:29 Selected Encoder: X264
10:47:29 Selected Size: 1 CD
10:47:29 Selected Slice: 1
10:47:29 Selected Profile: ConstantQuality-CRF.xml
10:47:29 Selected Width: Original
10:47:29 Selected Resizer: NONE
10:47:29 Selected Filters: RemoveGrain(mode=3)
10:47:29 Selected Deinterlacer: AUTO
10:47:29 Selected Field Order: AUTO
10:47:29 Manual Crop: Enabled
10:47:29 Left Crop: 0
10:47:29 Top Crop: 0
10:47:29 Right Crop: 0
10:47:29 Botton Crop: 0
10:47:29 Manual Width: 720
10:47:29 Manual Height: 576
10:47:29 Enabled CRF/CQ AutoRes at 18 value
10:47:29 Track Language 1: mok.avi
10:47:29 Audio Codec 1: Nero AAC
10:47:29 Audio Quality 1: 0.50
10:47:29 Audio Channel 1: Stereo
10:47:29 Advanced Audio Settings DUMP Track 1
10:47:29 Nero Option Profiles: AUTO --- Encoding Mode: Quality
10:47:29 CCT Option Profiles: AUTO --- Channel Options: AUTO
10:47:29 Lame Settings: ABR
10:47:29 Audio Normalization: 1
10:47:29 Frequency: AUTO --- Tempo : NONE
10:47:29 Pitch: NONE --- Other Add :
10:47:29 Advanced Audio Settings DUMP Track 2
10:47:29 Nero Option Profiles: AUTO --- Encoding Mode: Quality
10:47:29 CCT Option Profiles: AUTO --- Channel Options: AUTO
10:47:29 Lame Settings: ABR
10:47:29 Audio Normalization: 1
10:47:29 Frequency: AUTO --- Tempo : NONE
10:47:29 Pitch: NONE --- Other Add :
10:47:29
10:47:51 Number of Frames: 62398
10:47:51 Framerate: 25.000000
10:47:51 Movie length in Seconds: 2496
10:47:51 Movie Width/Height: 720/576
10:49:20 Order: unk
10:49:20 Encoding H:\Encodong\temp\ to NeroAAC with 0.50 quality
10:57:21 Encoded 1' Audio Track: 47051062 bytes
10:57:21 Starting X264
10:57:21 CRF encoding X264: E:\Encoding\_H 264 - Program Files\_AutoMKV\AutoMKV - Latest\exe\encoder\x264.exe --pass 1 --crf 18 --stats "H:\Encodong\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:\Encodong\temp\movie.mp4" "H:\Encodong\temp\movie.avs"
*** mok.ini ***
; AutoMKV parameters
[AutoMKV]
Source on DVD = 0
Input File = H:\Incomming\mok.avi
Input Folder = H:\Incomming\
Output Folder = H:\Encodong\
Container = MKV
Movie Name = mok
Size = 1 CD
Slice = 1
Resizer = 12
Width = Original
Set encoding mode = X264
Audio Track 1 = mok.avi
Audio Codec 1 = Nero AAC
Audio Bit 1 = 10
Audio Bitrate 1 = 0.50
Audio Channel 1 = Stereo
Audio Track 2 = NONE
Audio Codec 2 = Nero AAC
Audio Bit 2 = 7
Audio Bitrate 2 = 0.35
Audio Channel 2 = Stereo
Sub Track 1 = NONE
Sub Track 2 = NONE
Encoding Profiles = ConstantQuality-CRF.xml
Hit Media/Go Unlimited =
Use CRF/CQ for AutoResize = 0
CRF/CQ Value = 18
Bitrate Encoding = 0
Bitrate Value = 700
Quality Encoding = 0
Quality Value = 75
Delete temporary files = 0
Encrust/Burn Subtitles = 0
Enable Shutdown = 0
Process this IFO = 0
Process this PGC = 0
PGC to Process = -1
Force ITU Resizing = 0
Anamorphic Encoding = 0
Filter = RemoveGrain(mode=3)
Enable Last Line AVS Script = 0
Last Line AVS Script =
Deinterlacer = AUTO
Field Order = AUTO
Language = eng
Use ProjectX for TS files = 0
Use custom X.ini = 0
Use DelayCut = 1
HQ Deinterlacer = 0
Matrix = NONE
Force PAR in XviD = NONE
Use DirectShowSource for Video = 0
Use DirectShowSource for Audio = 0
Enable Manual Crop And Resize = 1
Crop Top = 0
Crop Left = 0
Crop Bottom = 0
Crop Right = 0
Manual Width = 720
Manual Height = 576
Audio Track Name 1 =
Movie Title Name =
Audio Track Desc 1 =
Nero Profiles 1 = AUTO
Nero Encoding Mode 1 = Quality
CCT Profiles 1 = AUTO
Channel Options 1 = AUTO
MP3 Settings 1 = ABR
Windows Media Audio = AUTO
Windows Media Channel = AUTO
Normalize Audio 1 = 1
Frequency 1 = AUTO
Tempo 1 = NONE
Pitch 1 = NONE
OtherADD 1 =
Audio Track Name 2 =
Audio Track Desc 2 =
Nero Profiles 2 = AUTO
Nero Encoding Mode 2 = Quality
CCT Profiles 2 = AUTO
Channel Options 2 = AUTO
MP3 Settings 2 = ABR
Normalize Audio 2 = 1
Frequency 2 = AUTO
Tempo 2 = NONE
Pitch 2 = NONE
OtherADD 2 =
movie.avs in Virtual Dub plays as totally green...
Any ideas...
:):D:eek:
Pascal
AMED
10th April 2007, 10:21
@buzzqw
i was wondering if there was any chance of getting AC3FIX (http://www.videohelp.com/tools?tool=91) (only 10kb's) integrated into AutoMKV. I've come across a few movies that i have that need AC3FIX run on them otherwise the audio encoding (mp4) will happen at 1x.
the usage seems pretty straight forward
ac3fix V0.3
Removes bad frames from .AC3 files
Usage: ac3fix <infile> <outfile>
Error level returned:
0: No bad frames found
1: One or more bad frames found and removed
2: Error in execution
The best place to use it is before the use of delaycut
there seems to be room for a checkbox to be added to the Demuxing and indexing options under the advanced tab.
buzzqw
10th April 2007, 12:16
@delacroixp
movie.avs in Virtual Dub plays as totally green...
missing directshowsource or avisource unable to open the file
open the "mok.avi" with gspot and check the decoder used
@AMED
delaycut already (iirc) do this, even more i don't know if delaycut, after passing the ac3 thru ac3fix, will be able to synch...
i will look deeper to dealycut decumentation
thanks!
BHH
nx6
10th April 2007, 21:23
I tried running Queue mode for the first time last night and things did not come out very well.
Three jobs.
All d2v input.
Two audio tracks on each.
A separate subtitles files for each.
The first job was the only one that muxxed, it has the correct audio tracks, but I marked what the language was on each those tracks and that was not added on the final movie. There is a subtitles track, but it appears to be the subtitles for another episode. I made three separate sets of idx/sub files (with different names) for each episode, and attached the corresponding episode's idx file to it when I set up its job.
I haven't had a chance to look at the log file for a clue what happened with the other two episodes not muxxing (might be the quotation mark issue still) but I do have it with me here at work so I have time.
Edit: Just read through the log. It was the quotes issue that stopped the muxxing from working, so next update will fix that. :) The language settings I put on the audio tracks simply aren't there from what I see. :confused: The last job's subtitle idx file was in fact fed to all three of the jobs. :mad:
delacroixp
10th April 2007, 21:56
@delacroixp
This can be done with autocrop by itself fairly easily. A conditional like
if(width==autocrop only && resizer==none){
autocrop(movie,mode=0,wmultof=16,hmultof=16,samples=40,aspect=0,threshold=34,samplestartframe=0)
}else{
normal autocropping
}
OK... so what exactly does this mean... It looks roughly like...
IF autocrop-only == MOD 16(width and height) THEN No resizer
ELSE autocrop-only (with resizer)
I've just taken out Once Upon a Time in America (http://en.wikipedia.org/wiki/Once_Upon_a_Time_in_America) by Serge Leone, from the public Library... hopefully I can produce an encode that they can use for patrons... I already have done so in DivX and most people have SAP's. The sound is veryyy soft... BeSweet recommends a Surround Gain of 5.9 dB and a Stereo Gain of 17.5 dB.
I ran it through Dr DivX... which shows L=2 blackspace... with your algorithm... 720 - 2 (L crop) = 718 => NOT mod 16 => autocrop with resizer.
I'm not really against resizing... the whole movie will be resized on playback... but I don't want to resize unnecessarily or like DivX => 1024x576 and then encode...
Your formula needs a little more refinement and a bit more tolerance... I also like MOD 16... assume 720x576 movie (any DAR)...
IF (width crop [L+R] < 8) THEN Don't crop
ELSE OverCrop 16
And multiples of 16... eg 17, 18 etc... ditto height... and so resizing could still be avoided
I chose to leave the 2 columns of black space in 'Once Upon a Time in America' though the algorithm could be modified to...
IF (crop <= 4) THEN Don't crop ELSE
IF (crop >= 12) THEN AutoCrop Only 16
ELSE crop and resize
:):D:eek:
Pascal
delacroixp
10th April 2007, 22:09
There is a subtitles track, but it appears to be the subtitles for another episode. I made three separate sets of idx/sub files (with different names) for each episode, and attached the corresponding episode's idx file to it when I set up its job.
The last job's subtitle idx file was in fact fed to all three of the jobs. :mad:
Do you place each job in a separate folder
Also, if I rip 3 movies in IFO mode into 1 folder (assume each movie is 1 file), including the IFO file and rename them all accordingly... movie1.VOB, movie1.IFO... movie2.VOB, movie2.IFO... etc
Will AutoMKV and/or DGIndex encode all 3 movies correctly ?
no, sorry. each full rip in one folder. OR put all in one folder, then create the d2v files for each movie and demux only the audio you want (named accordly to movie name).Then you can queue the d2v+audio works
I had a similar query way back when and Buzzqw stipulated that each job get it's own folder...
:):D:eek:
Pascal
nx6
10th April 2007, 23:11
Do you place each job in a separate folder
No, these are all in the same folder. I'm doing it the other way buzzqw mentioned (not that I read that post first, though).
...put all in one folder, then create the d2v files for each movie and demux only the audio you want (named accordly to movie name).Then you can queue the d2v+audio works
So in the folder I have
ep01.d2v
ep02.d2v, etc...
and I have audio tracks that match up namewise with these files as well:
Ep01 T01 2_0ch 224Kbps DELAY 0ms.ac3
Ep01 T02 2_0ch 224Kbps DELAY 0ms.ac3
Ep02 T01 2_0ch 224Kbps DELAY 0ms.ac3, etc...
as well as:
ep01sub.idx
ep01sub.sub
ep02sub.idx
ep02sub.sub, ect...
for the subtitles.
I don't think there's any issue with adding the audio, as the log shows the correct audio tracks for each episode where added for its corresponding job, but I had gone into advanced audio settings for each audio track and defined with language it was (since AutoMKV would not be adding those values itself like it does when you process an IFO). All three jobs show that they attempted to mux ep04sub.idx for the subtitle file (ep04.d2v was the last job set up in the queue).
Can anyone tell me what the .chunks file is for? Is it disc-specific or content specific? I didn't know if I needed to be keeping separate ones for each D2V file as they weren't getting named in accordance with the subtitle naming scheme by vsrip, it was always naming them after the IFO file. I renamed the first two that were generated after the subtitle set I was doing at the time, but I left the last one as the default name just in case it would be looking for the file under the name.
delacroixp
10th April 2007, 23:36
There's probably basically nothing wrong with your setup... but separate folders will even help your understanding of where everything's at... it's like 'modular programming'... you break everything down into byte-sized chunks (no pun intended)...
I've just started encoding "Once Upon a Time in America"... which has a very-high bitrate, almost akin to superBit releases... and since the movie is 229 minutes, it's divided into 2 parts... over 2 DVD's...
I've decided to have a separate folder for part 1, part 2 and the Serge Leone 'extra'... each with it's own audio tracks and subtitles...
hope it helps.
:):D:eek:
Pascal
nx6
11th April 2007, 00:53
hope it helps.
Pascal
Not really. I know where all the files are. The problem is advanced settings not getting saved as part of Queue jobs. Since every episode has track 1 as English and track 2 in Japanese, even if AutoMKV got stuck on the settings for the last job (similar to what's happening with the subtitles) everything would have been labeled correctly by coincidence on the other jobs. :D
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. Also, any recommendation of a filter to sharpen? I figured you might know since you were processing VHS tapes (made into AVIs) for a library I assume?
buzzqw
11th April 2007, 07:24
very quick answer:
actually queue don't save external subtitle
open the queue0.ini there is any sign of your external subs ?
(try to add in next version)
BHH
EDIT:
So in the folder I have
ep01.d2v
ep02.d2v, etc...
and I have audio tracks that match up namewise with these files as well:
Ep01 T01 2_0ch 224Kbps DELAY 0ms.ac3
Ep01 T02 2_0ch 224Kbps DELAY 0ms.ac3
Ep02 T01 2_0ch 224Kbps DELAY 0ms.ac3, etc...
as well as:
ep01sub.idx
ep01sub.sub
ep02sub.idx
ep02sub.sub, ect...
for the subtitles.
that's correct, automkv take care of what file to use. For external subtitles point to .idx (not .sub)
All three jobs show that they attempted to mux ep04sub.idx for the subtitle file (ep04.d2v was the last job set up in the queue).
that's correct... at least in this version, in next update every job has its subtitles
.chunks file is for trash it, not needed
thanks nx6 for your test... and sorry for subs...
BHH
jolson
11th April 2007, 10:52
ok, i had found the way to run all script minimized, without any (or very few) prompt that steal window... BUT... what is the lose ?
i cannot guarantee that "prepare only phase" will fuction again, also i will use vbs script (as an old suggestion of glynor) and some nasty and bad antivirus (namely Norton) can intercept those files as virus... :p
Again: wcscript SHOULD be present in all win2k and MUST be in winXP but i cannot bet on it...
please tell me your opinion
Tylo uses AutoIt for D2SRoBa (addon for DVD2SVCD) and it works very good, you can both script in it and build the GUI. Doesn't have to be pre-installed by the user.
I have used it for other things and it's safer than most scripting languages, you can have the script wait for a specific window to appear, press buttons in program dialogs by name of the button...
Apart from that, I have just started to read about this tool and will see if it can do what I want - must do more reading... ;)
delacroixp
11th April 2007, 11:51
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. Also, any recommendation of a filter to sharpen? I figured you might know since you were processing VHS tapes (made into AVIs) for a library I assume?
Well... I gather it starts @ Q1 (lossless) all the way beyond Q30 in ever decreasing increments of quality...
Unless you're working with RAW AVI or a very high bitrate, possibly Sony Superbit, production then Q18 is considered the lowest level... after this point filesize increases with little-to-no increase in quality...
I really am clueless, especially about filters... you'll have to refer to buzzqw...
You mention VHS tapes... actually our library has quite a large range of DVD's, from mainstream-entertainment, to culturally-orientated movies and documentary material from National Geographic and Discovery Channel etc...
The DVD's are so easily scratched and mal-treated that I considered a DivX or H264 version essential... which can be easily duplicated on 4.5 GB DVD's as necessary... unlike China... we don't have low-cost DVD-duplicating factories for this kind of thing...
:):D:eek:
Pascal
buzzqw
11th April 2007, 12:37
@jolson
i have adopted vbs option, the autoit features to hidden/minimize program is already inside automkv.
Now automkv will start a process and then minimize it or start it minimized (all by checking process id)
also, automkv can do a lot is correctly used (and with a bit of knowledge of internals...). I suggest reading the wiki and the changelog. When i introduce a new features a will explain it in changelog... often :)
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.
What's mean ?
you have a 15000 bitrate hd movie -> crf 18
the dark scenes will probably got a quant of 25
the high motion scenese got a quant of 10
the 18 isn't the median, but the average perceptual quality to achive, isn't like CQ encode of XviD where even at quant 1 some frames look bad, here we are speaking of perceived quality. So the original bitrate is marginal in computation: you could have a "ugly static black wall" at 15000 bitrate in dvd..., what is important is that wall must bu "ugly" (at rate 18) as before
you have a (normal) 4000 bit rate dvd -> crf 18
the dark scenes will got a quant of 25
the high motion got a quant of 10
isn't important the original bitrate but the quality of source and how much must be retained
BHH
jolson
11th April 2007, 14:12
also, automkv can do a lot is correctly used (and with a bit of knowledge of internals...). I suggest reading the wiki and the changelog. When i introduce a new features a will explain it in changelog... often :)
I've now looked through bits of wiki/changelog/this thread and also made a small test of the program.
A good test is often to run the program backwards from what it is intended ;) - so I DirectShowSource'd in a short .mkv (with AC3 audio) and set AutoMKV to create an .avi/XviD and keep source audio. I created a short test .srt (with just "START" and "STOP" in it) and added that as an external subtitle file.
I could select the srt file, but saw no indication that it would be used. I specified a lower resolution for the output file, but noticed that I could only give horisontal resolution - not vertical as well, as I would like to.
The input file was 60MB, the output 25MB. Seemed correct, with the lower resolution.
However, despite me selecting "Copy Original" with regards to audio, the input AC3 stream was reencoded to 128kbps mp3.
But the output .avi plays fine, with subtitles, so the external subtitles worked. Just the sound was a problem.
buzzqw
11th April 2007, 14:22
I could select the srt file, but saw no indication that it would be used.
that's true and wanted. sorry, no display of external subs selected... (maybe i will change my idea...)
specified a lower resolution for the output file, but noticed that I could only give horisontal resolution - not vertical as well, as I would like to.
true again, you can specify only width, then is autocrop/automkv that computed the height (taken in count ar)
You must use advanced setting for scecifying a width AND height
However, despite me selecting "Copy Original" with regards to audio, the input AC3 stream was reencoded to 128kbps mp3
this is impossible to achive with automkv, no original audio can be extracted and copyed by directshowsource or avi/mkv/ogm... only from mpeg container (vob/ts/mpeg...)
Thanks for your test! :)
BHH
delacroixp
11th April 2007, 14:36
@delacroixp
movie.avs in Virtual Dub plays as totally green...
missing directshowsource or avisource unable to open the file
open the "mok.avi" with gspot and check the decoder used
@AMED
I retried 2 of the movies with 0.80 and they worked out fine but mok.avi is still very green...
I tried GSpot though it doesn't mean much to me...
http://souls-online.net/delacroixp/AutoMKV/GSpot_mok.avi_Thum.bmp (http://souls-online.net/delacroixp/AutoMKV/GSpot_mok.avi.bmp)
click for full image...
:):D:eek:
Pascal
buzzqw
11th April 2007, 15:29
on gspot click on Ms A/V 1 and look at what decoder is used
then ask on dv forum (first try to use ffdshow to decode dv format)
BHH
nx6
11th April 2007, 22:00
that's correct... at least in this version, in next update every job has its subtitles
BHH
:thanks:
How about the advanced audio settings (langauge marking and custom label)? That would be nice.
The CRF profile is NOT A CONSTANT QUALITY PROFILE but a CONSTANT RATE FACTOR PROFILE.
What's mean ?
you have a 15000 bitrate hd movie -> crf 18
the dark scenes will probably got a quant of 25
the high motion scenese got a quant of 10
the 18 isn't the median, but the average perceptual quality to achive, isn't like CQ encode of XviD where even at quant 1 some frames look bad, here we are speaking of perceived quality. So the original bitrate is marginal in computation: you could have a "ugly static black wall" at 15000 bitrate in dvd..., what is important is that wall must bu "ugly" (at rate 18) as before
Since this is a perceptual setting, does that mean a movie that is almost all high action (I dunno, kung fu movie) at CRF 18 will be larger than a movie of "Brick walls of Paris" at CRF 18 that are the same length in time? Is that because more of the kung fu film is being encoded at high end range (quantity 10) or is the definition of "quantity 18" different for the more complex action flick verses architecture film.
What does the "ConstantQuality-QP" do?
buzzqw
12th April 2007, 07:14
or is the definition of "quantity 18" different for the more complex action flick verses architecture film.
that's right! more complexity more bitrate, lower quant (quant=quantitizer not quantity)
look here for another explanation
http://mewiki.project357.com/wiki/MeGUI_FAQ#What.27s_the_difference_between_Constant_Quantizer_and_Constant_Quality
BHH
buzzqw
12th April 2007, 07:35
How about the advanced audio settings (langauge marking and custom label)? That would be nice.
DONE! (in next update!)
BHH
nx6
12th April 2007, 07:58
Given all the fixes covered in the forums lately, this looks like it's going to be a big update.
nx6
12th April 2007, 08:33
Where is the file that defines what makes up the "Filters" preset list?
I've just downloaded a new AVISynth filter and want to add it to the list. I've already added the DLL to \exe\Filter.
buzzqw
12th April 2007, 09:13
Where is the file that defines what makes up the "Filters" preset list?
there isn't a configuration file, the list is hard coded BUT after you put the filter dll into \exe\filter you can WRITE in filter list your filter configuration (overwriting what is written), like
fooplugin(preset="Automkv",fast=true)
BHH
delacroixp
12th April 2007, 17:32
or is the definition of "quantity 18" different for the more complex action flick verses architecture film.
What does the "ConstantQuality-QP" do?
that's right! more complexity more bitrate, lower quant (quant=quantitizer not quantity)
look here for another explanation
http://mewiki.project357.com/wiki/MeGUI_FAQ#What.27s_the_difference_between_Constant_Quantizer_and_Constant_Quality
I just noticed that it's an MeGUI Wiki... it's like sleeping with the enemy... it reflects badly if we have to send our guys over to MeGUI for info... when in fact our product, is like, wayy better than their's even with all their financial and intellectual muscle behind them...
I'm sure nx6 could distill the essence and explain it much better in the AutoMKV Wiki... perhaps we can put together some usefull backround material... like 4:2:0 vs 4:2:2 & 8:4:4 Chroma subsampling... which really effects the colour we see...
In some cases a simple link to the main Wikipedia would really do the trick.
:):D:eek:
Pascal
BTW
In regards to "ConstantQuality-QP"... it's a kind of 'Constant Quality for Computers"... they don't perceive subjective differences while watching a movie... at Q18 a brick wall would have the same quality as an action sequence or anything else... the entire encode would be at Q18... with a correspondingly huge filesize... people also notice changes (contrast/luminance) in grayscale more than in colour... hence 4:2:0 chroma subsampling (http://en.wikipedia.org/wiki/Chroma_subsampling).
BleedingGums
12th April 2007, 19:24
i'm using .80c - tobytl version and it seems that AutoMKV insists on autocroping even if i have NONE as a resizer set. (0.80b does not suffer from this). Once autocropped, the resolution is not mod16 anymore. which causes encoding problems. I have not gotten around to test to see if this behavior with .80c stops if a resizer and resolution are set.
buzzqw
12th April 2007, 19:47
@BleedingGums
open the movie.avs in virtualdub... anche check... anyway in next update if autocrop isn't needed then isn't even included in avs... ;)
BHH
weaver4
12th April 2007, 20:56
BTW
In regards to "ConstantQuality-QP"... it's a kind of 'Constant Quality for Computers"... they don't perceive subjective differences while watching a movie... at Q18 a brick wall would have the same quality as an action sequence or anything else... the entire encode would be at Q18... with a correspondingly huge filesize... people also notice changes (contrast/luminance) in grayscale more than in colour... hence 4:2:0 chroma subsampling (http://en.wikipedia.org/wiki/Chroma_subsampling).
Actually if a movie was done in Q18 and the complete movie was a brick wall it be a very small filesize. In constant quality the movie only uses the bits it needs to maintain the same quality from frame to frame; no changes between frames means very few bits; heavy action requires more bits.
nx6
12th April 2007, 21:01
I just noticed that it's an MeGUI Wiki... it's like sleeping with the enemy... it reflects badly if we have to send our guys over to MeGUI for info... when in fact our product, is like, wayy better than their's even with all their financial and intellectual muscle behind them...
Well, I have no doubt that the MeGUI wiki has been around longer than the AutoMKV wiki, so it's going to have more content. I also don't see this as any stupid me>you contest between buzzqw's software (where's this "our" coming from) and MeGUI. They are two things that do roughly the same thing, people will use what they wish to.
I'm sure nx6 could distill the essence and explain it much better in the AutoMKV Wiki...
I haven't even finished rewriting the changelog entries yet. Here's an idea, how about someone else contribute to the Wiki and write this stuff, like someone who knows about it.
AMED
13th April 2007, 09:13
one quick question buzzqw
when using Nero aac in stereo mode, should normalization be automatically enabled?
i have found in v0.80b that you have to open the advanced audio options and then click OK to close the advanced options for it add the normalize() to the mkvaudio script
when you open the advanced audio options normalize already has a check in the box but it doesn't seem to apply unless you open the advanced audio options.
buzzqw
13th April 2007, 09:42
@AMED
FIXED: An ugly bug that will not trigger normalize() if Advanced Audio Options were opened
this problem was corrected with 0.80b ...
i am unable to replicate the problem... :(
BHH
nx6
13th April 2007, 10:02
I just started using the special 80c build you released, this being the first one with the "cartoon" and "greyscale" options. I notice these are both listed under "XviD overides". Does that mean they wont work under X264?
AMED
13th April 2007, 10:58
@AMED
this problem was corrected with 0.80b ...
i am unable to replicate the problem... :(
BHH i found the problem, i needed to delete the automkv.ini that i must have created with v0.80a, the recreated automkv.ini using 0.80b seems to fix the problem
sorry about the false alarm
DarkZell666
13th April 2007, 11:27
I just started using the special 80c build you released, this being the first one with the "cartoon" and "greyscale" options. I notice these are both listed under "XviD overides". Does that mean they wont work under X264?
XviD offers those options but x264 doesn't (I mean XviD's vfw interface and x264's cli interface). It isn't GUI specific, it's just a matter of supported features by each codec.
buzzqw
13th April 2007, 12:41
@AMED
no prob ! :) glad you have resolved!
@DarkZell666
well said!
usually for anime is used the "anime presets" and for greyscale is sufficent to write in "Last avs script" greyscale()
@ALL
i am ready for the new update (full package) but i have some problem (look here http://forum.doom9.org/showthread.php?p=988229#post988229 ) ... i don't want to put an update that not work well...
i will wait some days... or will rollback specifics change made for new wmcmd.vbs :(
BHH
Shark_jlc
13th April 2007, 15:00
@ALL
i am ready for the new update (full package) but i have some problem (look here http://forum.doom9.org/showthread.php?p=988229#post988229 ) ... i don't want to put an update that not work well...
i will wait some days... or will rollback specifics change made for new wmcmd.vbs :(
BHH
If you need me to test on Win2k3, or Vista, let me know what to do and what you want.
buzzqw
13th April 2007, 15:19
@Shark_jlc
Thanks !
http://www.64k.it/andres/data/a/AutoMKV081SPC.rar
inside there are:
AutoMKV081.exe , the new wmcmd.vbs to put into \exe\encoder, and the all new wmv profiles (delete old wmv-profile folder) and the partial_changelog.txt
main changes are on wmv encoding, but Tobytl change are important too.., do not use hybridfupp resizer since i haven't include the new filter/avs
thanks (to all)
BHH
Shark_jlc
13th April 2007, 16:00
I'll see what I can do tonight at home, and this weekend, in regards to testing this out for you.
buzzqw
13th April 2007, 16:20
thanks Shark_jlc!
i hope to release 0.81 next week (i am waiting even for Zambelli posts)
BHH
delacroixp
13th April 2007, 18:28
In regards to "ConstantQuality-QP"... it's a kind of 'Constant Quality for Computers"... they don't perceive subjective differences while watching a movie... at Q18 a brick wall would have the same quality as an action sequence or anything else... the entire encode would be at Q18... with a correspondingly huge filesize... people also notice changes (contrast/luminance) in grayscale more than in colour... hence 4:2:0 chroma subsampling (http://en.wikipedia.org/wiki/Chroma_subsampling).
Actually if a movie was done in Q18 and the complete movie was a brick wall it be a very small filesize. In constant quality the movie only uses the bits it needs to maintain the same quality from frame to frame; no changes between frames means very few bits; heavy action requires more bits.
Well, let's say that IF somebody did a 18-CQ-CRF encode of a brick wall... it might be encoded at Q10 WHILE an 18-CQ-QP would insist on Q18 throughout which would still be a small file but the CRF encode would be tiny...
Funny enough I encoded The Deer Hunter without cropping the black-space Top and Bottom and when I re-encoded with a 144 row crop (72 T&B incl 3 overcrop to keep mod 16)... the file was 10% smaller...
It just shows you that even black-space can contribute significantly to filesize.
:):D:eek:
Pascal
weaver4
13th April 2007, 19:00
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.
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
delacroixp
17th April 2007, 08:49
I'm been thinking of trying something higher in quality than 18. Also, any recommendation of a filter to sharpen? I figured you might know since you were processing VHS tapes (made into AVIs) for a library I assume?
Try 17-CQ-CRF... I certainly am, especially after seeing the kind of results that can be achieved with AutoMKV and H264.
I prefer '1 disc - 1 movie' and often a 10 or 20% reduction will do the trick... even including the original AC3 audio track(s)... actually, I've had a very real problem converting AC3-surround to MP4-surround... the BeSweet-to-WAV conversion is flawless but the WAV-to-MP4 crashes instantly... any thoughts...
After seeing Q18-DAR results... I'm iching to try Q17-Anamorphic, maybe even Q16... it's like a desease, an affliction, I'm hooked and addicted... please help...
Cya... compie's calling... got to go... again... (it's the Aliens)* : .
:):D:eek:
Pascal
nx6
17th April 2007, 08:51
Try 17-CQ-CRF... I certainly am, especially after seeing the kind of results that can be achieved with AutoMKV and H264.
I've already tried that. I didn't see much difference (but I was using anime as a test, and I imagine it would have a greater impact on a movie).
buzzqw
17th April 2007, 08:56
@nx6
got it, is due to no filters at all applyed (and no colormatrix... )
fixed in next update... now apply at least a filter or as last line avs write "return last"
BHH
nx6
17th April 2007, 09:07
@buzzqw
The encode is running right now, so you have found it. Thank you for your prompt response.
Is it okay to use the SSE2 version of NeroAACEnc? I just realized today one exists, and was going to use it and just rename it to match the original filename AutoMKV is looking for on startup.
Also, probably wont effect any normal projects, but I noticed DGIndex is set to rip the main audio track only by default right now, not rip all tracks like previously. It caught me off guard when I made my test over again and only got one audio track to use when it finished building the new d2v file.
buzzqw
17th April 2007, 09:11
Is it okay to use the SSE2 version of NeroAACEnc
no prob at all!
even more substitute the removegrain.dll with sse2/sse3 avaiable (and all dll that have more powerfull version)
not rip all tracks like previously
this behavior isn't changed... dgindex will switch to demux alla tracks only if request or if the requested track isn't found...
BHH
buzzqw
17th April 2007, 11:37
update 0.81a
http://www.64k.it/andres/data/a/AutoMKV081a.exe
0.81a 17/04/2007
ADDED: Varius way of changing fps in Advanced Avisynth. Note all but MVFlowFps and MVFlowFps2 want fps expressed as "Numerator,Denominator". Note MVFlowFps and MVFlowFps2 have a fixed denominator of 100, so simply write 2500 for 25 fps
FIXED: The avs will not return clip if no resizer, no colormatrix , no deinterlacer and no filter used (thanks to nx6)
BHH
TheRyuu
17th April 2007, 21:31
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
If your looking for a good sharpening filter I think that you really can't go wrong with SeeSaw.
Example of a Seesaw scipt:
SeeSaw(NRlimit=0, NRlimit2=5, Sstr=1.70, Szp=1, Slimit=50, Sdamplo=29, Spower=1, sootheT=0, SdampHi=35)
The Sstr value is for the amount of sharpening. 1.70 is really high though, especially with the standard seesaw script that comes with AutoMKV. Might want to try a value of 1.5 or lower.
Like use something like this:
FluxSmoothT(8).SeeSaw(NRlimit=0, NRlimit2=5, Sstr=1.50, Szp=1, Slimit=50, Sdamplo=29, Spower=1, sootheT=0, SdampHi=35)
SeeSaw can do wonders :)
Also check out some stuff here. (http://www.avsforum.com/avs-vb/showthread.php?t=719041&page=1&pp=30)
And the 8:13 guy on the above page customized the SeeSaw.avsi to produce less ringing and it's in the DVD Package on the page. With that you might be able to get away with 1.5 Sstr value but that sort of gave me ringing.
nx6
17th April 2007, 22:49
I have added a dedicated page on the Wiki that covers the installation of AutoMKV.
http://automkv.wiki-site.com/index.php/Installation
delacroixp
18th April 2007, 00:02
Try 17-CQ-CRF... I certainly am, especially after seeing the kind of results that can be achieved with AutoMKV and H264.
I've already tried that. I didn't see much difference (but I was using anime as a test, and I imagine it would have a greater impact on a movie).
I tried Q16-Anamorphic, I saw the difference and I conquered...
Funny thing is, though, it's no better than Q18-Anamorphic, the filesize is equal to Q18-DAR... It's as though Q18 is the quality limit, per pixel, but by encoding in DAR resolution you give it more pixels to work with and the quality goes up another notch... try and C 4 yourself...
Conclusion... Q18-DAR is better quality... Q18-Anamorphic is better filesize...
:):D:eek:
Pascal
delacroixp
18th April 2007, 00:34
Sorry... double post...
It's almost 2 in the morning and I'm losing the plot
delacroixp
18th April 2007, 00:35
I have added a dedicated page on the Wiki that covers the installation of AutoMKV.
http://automkv.wiki-site.com/index.php/Installation
Beautifully laid out... and nicely explained... which reminded me about the RemoveGrainSSE2.dll which I hadn't done...
I'm running Q16-Anamorphic again since I use RemoveGrainSSE2.dll and the encode didn't seam quite happy the first time...
Too many FPS...
:):D:eek:
Pascal
nx6
18th April 2007, 00:53
Yeah, I was thinking about these occasional performance tweaks that are mentioned in the forums and are quickly lost within the hundred or so pages that make up the thread. I realize the installation page is repeating information that already makes up the first section of the full manual, but covering it in the detail I did seems to be too much info to not warrant a separate article for it (kinda like when you get a new stereo component and they have a "quick start guide" that gives you the installation steps without having to thumb through the whole manual.
Plus it gives a place to additional links pointing to other info (like the multithread article).
dlflannery
18th April 2007, 04:40
I have added a dedicated page on the Wiki that covers the installation of AutoMKV.
http://automkv.wiki-site.com/index.php/Installation
Nice! :thanks: ---- but did you leave out the WMEncoder installation?
Quoting from the first post in this thread:
For WVC1 support is needed WMEncoder (9 serie's) + Windows Media Player 11
for trouble look at this thread http://forum.doom9.org/showthread.php?p=911873
nx6
18th April 2007, 06:09
Nice! :thanks: ---- but did you leave out the WMEncoder installation?
That's the great thing about a wiki, anyone can contribute so when I leave something out then someone else can pick up the ball. :D
I just read through the thread and I'm looking for a link to post to the wiki to get the required software and I'm not finding it.
They mention this site:
http://www.citizeninsomniac.com/WMV/#WMCmd
but there doesn't appear to be anything there. It's just a blank sky blue page for me. :confused:
I guess I'll go on Microsoft's site looking for the SDK download.
nx6
18th April 2007, 07:02
Okay, I've added the WVC1 stuff in, or made an good effort at least. It would be nice if someone who actually is using the Windows Media encoding could review/correct/add to it as I did not install any of the components myself, since I have no intention of ever using them.
buzzqw
18th April 2007, 07:41
update the wiki on wvc1 stuff... i will re-check later
BHH
nx6
18th April 2007, 10:00
@buzzqw
Have there been any changes made recently in the deinterlacing routines? I'm getting some interlacing issues that I wasn't with 0.80b.
buzzqw
18th April 2007, 12:04
0.81
FIXED: Movie deinterlacer before autocrop (suggestion by Tobytl)
this is for NOT having problem!
what issue have you ?
BHH
nx6
18th April 2007, 18:45
this is for NOT having problem!
what issue have you ?
BHH
I'm getting interlacing patterns in areas of action. Like here (person running).
http://img48.imageshack.us/img48/9586/vlcsnap15977rg2.th.jpg (http://img48.imageshack.us/my.php?image=vlcsnap15977rg2.jpg)
Or here where the view is panning...
http://img337.imageshack.us/img337/2255/vlcsnap19492sm9.th.jpg (http://img337.imageshack.us/my.php?image=vlcsnap19492sm9.jpg)
I reinstalled and ran tests with both 0.80 and 0.80b and had the same problem though, so it's not the version of AutoMKV.
Can the length of a D2V effect how well deinterlacing works? The earlier encodes without this problem were full episodes, but when I started using these 2-3 minute samples is when I started to see this.
buzzqw
18th April 2007, 19:00
open the log.. and search for autodeint finds..
search
Processing completed. Type is determined to ???
BFF: ???
TFF: ???
Order: ???
what is reported ?
EDIT: and yes more long is the sample/movie better is the deinterlacer routines... but i think some change... :) (like in megui the pre-analysis)
BHH
nx6
18th April 2007, 22:31
I ran the test encode again just now in 0.81a (those sample frames are from 080b).
open the log.. and search for autodeint finds..
search
Processing completed. Type is determined to ???
BFF: ???
TFF: ???
Order: ???
what is reported ?
You know, I don't see those at all. :confused:
16:15:41 0.81a - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
16:15:41 Selected Input file: S:\Bleach081d2vfiles\Bleach Test 3\VTS_01_1.d2v
16:15:41 Selected Output dir: S:\Bleach081d2vfiles\Bleach Test 3\temp\
16:15:41 Selected Final Name: deinttest1
16:15:41 Selected Container type: MKV
16:15:41 Selected Encoder: X264
16:15:41 Selected Size: Don't care about size
16:15:41 Selected Slice: 1
16:15:41 Selected Profile: ConstantQuality-CRF.xml
16:15:41 Selected Width: Original
16:15:41 Selected Resizer: NONE
16:15:41 Selected Filters: NONE
16:15:41 Selected Deinterlacer: AUTO
16:15:41 Selected Field Order: AUTO
16:15:41 Enabled CRF/CQ AutoRes at 18 value
16:15:41 Track Language 1: S:\Bleach081d2vfiles\Bleach Test 3\VTS_01_1 T01 2_0ch 224Kbps DELAY -185ms.ac3
16:15:41 Audio Codec 1: Nero AAC
16:15:41 Audio Quality 1: 0.30
16:15:41 Audio Channel 1: Stereo
16:15:41 Track Language 2: S:\Bleach081d2vfiles\Bleach Test 3\VTS_01_1 T02 2_0ch 224Kbps DELAY -185ms.ac3
16:15:41 Audio Codec 2: Nero AAC
16:15:41 Audio Quality 2: 0.30
16:15:41 Audio Chennel 2: Stereo
16:15:41 Advanced Audio Settings DUMP Track 1
16:15:41 Nero Option Profiles: AUTO --- Encoding Mode: Quality
16:15:41 CCT Option Profiles: AUTO --- Channel Options: AUTO
16:15:41 Lame Settings: ABR
16:15:41 Audio Normalization: 1
16:15:41 Frequency: AUTO --- Tempo : NONE
16:15:41 Pitch: NONE --- Other Add :
16:15:41 Advanced Audio Settings DUMP Track 2
16:15:41 Nero Option Profiles: AUTO --- Encoding Mode: Quality
16:15:41 CCT Option Profiles: AUTO --- Channel Options: AUTO
16:15:41 Lame Settings: ABR
16:15:41 Audio Normalization: 1
16:15:41 Frequency: AUTO --- Tempo : NONE
16:15:41 Pitch: NONE --- Other Add :
16:15:41
16:15:41 DelayCut CMD: S:\AutoMKV081a\exe\dgindex\Delaycut.exe -auto -out "S:\Bleach081d2vfiles\Bleach Test 3\temp\fixed1.ac3" "S:\Bleach081d2vfiles\Bleach Test 3\VTS_01_1 T01 2_0ch 224Kbps DELAY -185ms.ac3"
16:15:44 DelayCut CMD: S:\AutoMKV081a\exe\dgindex\Delaycut.exe -auto -out "S:\Bleach081d2vfiles\Bleach Test 3\temp\fixed2.ac3" "S:\Bleach081d2vfiles\Bleach Test 3\VTS_01_1 T02 2_0ch 224Kbps DELAY -185ms.ac3"
16:15:46 Encoding S:\Bleach081d2vfiles\Bleach Test 3\temp\fixed1.ac3 to NeroAAC with 0.30 quality
16:16:18 Encoded 1' Audio Track: 985947 bytes
16:16:18 Encoding S:\Bleach081d2vfiles\Bleach Test 3\temp\fixed2.ac3 to NeroAAC with 0.30 quality
16:16:41 Encoded 2' Audio Track: 993494 bytes
16:16:47 Number of Frames: 3406
16:16:47 Framerate: 29.970030
16:16:47 Movie length in Seconds: 114
16:16:47 Movie Width/Height: 720/480
16:16:47 DgIndex AR: 4:3
16:17:38 Order: unk
16:17:38 Starting X264
16:17:39 CRF encoding X264: S:\AutoMKV081a\exe\encoder\x264.exe --pass 1 --crf 18 --stats "S:\Bleach081d2vfiles\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:\Bleach081d2vfiles\Bleach Test 3\temp\movie.mp4" "S:\Bleach081d2vfiles\Bleach Test 3\temp\movie.avs"
16:28:16 Accepted values are between 31876710400 and 33889976320 bytes (movie+audio)
16:28:16 Got a file of size: 21890071 bytes + audio size 1979443 bytes (23869514)
16:28:16 Only Movie Size: 21890071 bytes
16:28:16 "S:\AutoMKV081a\exe\matroska\mkvmerge.exe" -o "S:\Bleach081d2vfiles\Bleach Test 3\temp\deinttest1.mkv" --track-name -1:"deinttest1" --aspect-ratio 1:1.333333 "S:\Bleach081d2vfiles\Bleach Test 3\temp\movie.mp4" --language -1:und "S:\Bleach081d2vfiles\Bleach Test 3\temp\audio.mp4" --language -1:und "S:\Bleach081d2vfiles\Bleach Test 3\temp\audio2.mp4" --title "Done with AutoMKV 0.81a http://forum.doom9.org/showthread.php?p=854221 "
16:28:29 Final Muxed size: 23862642 bytes
16:28:29 Encoding finished: 00:12:48 elapsed time
16:28:29 -----------------------------------------------------------------------
16:28:29 Script AutoCrop.log
16:28:29
16:28:29 Crop(4,0,712,480)
16:28:29 -----------------------------------------------------------------------
16:28:29 Script Resmovie.avs
16:28:29 -----------------------------------------------------------------------
16:28:29 Script movie.avs
16:28:29
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\AddGrain.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\autocrop.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\BicublinResize.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\blockbuster.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\cnr2.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\ColorMatrix.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\Convolution3D.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\corrector.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\DctFilter.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\Decomb.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\Deen.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\degrainmedian.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\DGDecode.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\EEDI2.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\fft3dfilter.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\FluxSmooth.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\frfun7.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\hqdn3d.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\LeakKernelDeint.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\MaskTools.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\medianblur.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\MipSmooth.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\MSharpen.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\mt_masktools.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\mvtools.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\NicAudio.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\RemoveGrainSSE2.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\RepairSSE2.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\RSharpenSSE2.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\SangNom.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\SimpleResize.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\SoundOut.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\TBilateral.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\TDeint.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\TIVTC.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\TomsMoComp.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\TTempSmooth.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\UnDot.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\UnFilter.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\VSFilter.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\warpsharp.dll")
16:28:29 #loadpluginstart
16:28:29
16:28:29 #test1
16:28:29
16:28:29 Import("S:\AutoMKV081a\exe\filter\HybridFuPP.avsi")
16:28:29 Import("S:\AutoMKV081a\exe\filter\LimitedSharpenFaster.avsi")
16:28:29 Import("S:\AutoMKV081a\exe\filter\MCBob_v03c.avsi")
16:28:29 Import("S:\AutoMKV081a\exe\filter\mvbob.avsi")
16:28:29 Import("S:\AutoMKV081a\exe\filter\seesaw.avsi")
16:28:29 Import("S:\AutoMKV081a\exe\filter\spresso.avsi")
16:28:29 #importstart
16:28:29
16:28:29 #test2
16:28:29
16:28:29 movie = mpeg2source("S:\Bleach081d2vfiles\Bleach Test 3\VTS_01_1.d2v")
16:28:29 function getOrder(clip c) {
16:28:29 order = GetParity(c) ? 1 : 0
16:28:29 Return order }
16:28:29 #filter1start
16:28:29
16:28:29 #test3
16:28:29
16:28:29 last = movie
16:28:29 #resizestart
16:28:29
16:28:29 #test4
16:28:29
16:28:29 #filter2start
16:28:29
16:28:29 #test5
16:28:29
16:28:29 return last
16:28:29 -----------------------------------------------------------------------
16:28:29 Script mkvmaudio.avs
16:28:29
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\NicAudio.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\SoundOut.dll")
16:28:29 NicAC3Source("S:\Bleach081d2vfiles\Bleach Test 3\temp\fixed1.ac3")
16:28:29 #Applying STEREO downmixing routines
16:28:29 function stereo(clip a)
16:28:29 {
16:28:29 flr = GetChannel(a, 1, 2)
16:28:29 fcc = GetChannel(a, 3)
16:28:29 lfe = GetChannel(a, 4)
16:28:29 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
16:28:29 mix = MergeChannels(lfc, lfc)
16:28:29 lrc = MixAudio(flr, mix, 0.2929, 1.0)
16:28:29 blr = GetChannel(a, 5, 6)
16:28:29 Return MixAudio(lrc, blr, 1.0, 0.2929)
16:28:29 }
16:28:29 #
16:28:29 6==Audiochannels() ? stereo() : last
16:28:29 Normalize()
16:28:29 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV081a\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.30 -if - -of audio.mp4",postfilename="",nofilename=true,showoutput=false)
16:28:29 -----------------------------------------------------------------------
16:28:29 Script mkvmaudio.bat
16:28:29
16:28:29 "S:\AutoMKV081a\exe\BeSweet\vdub.exe" /x "S:\Bleach081d2vfiles\Bleach Test 3\temp\mkvmaudio.avs"
16:28:29 -----------------------------------------------------------------------
16:28:29 Script mkvmaudio2.avs
16:28:29
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\NicAudio.dll")
16:28:29 LoadPlugin("S:\AutoMKV081a\exe\filter\SoundOut.dll")
16:28:29 NicAC3Source("S:\Bleach081d2vfiles\Bleach Test 3\temp\fixed2.ac3")
16:28:29 #Applying STEREO downmixing routines
16:28:29 function stereo(clip a)
16:28:29 {
16:28:29 flr = GetChannel(a, 1, 2)
16:28:29 fcc = GetChannel(a, 3)
16:28:29 lfe = GetChannel(a, 4)
16:28:29 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
16:28:29 mix = MergeChannels(lfc, lfc)
16:28:29 lrc = MixAudio(flr, mix, 0.2929, 1.0)
16:28:29 blr = GetChannel(a, 5, 6)
16:28:29 Return MixAudio(lrc, blr, 1.0, 0.2929)
16:28:29 }
16:28:29 #
16:28:29 6==Audiochannels() ? stereo() : last
16:28:29 Normalize()
16:28:29 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="S:\AutoMKV081a\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.30 -if - -of audio2.mp4",postfilename="",nofilename=true,showoutput=false)
16:28:29 -----------------------------------------------------------------------
16:28:29 Script mkvmaudio2.bat
16:28:29
16:28:29 "S:\AutoMKV081a\exe\BeSweet\vdub.exe" /x "S:\Bleach081d2vfiles\Bleach Test 3\temp\mkvmaudio2.avs"
16:28:29
16:28:29 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
gonwk
19th April 2007, 00:17
Hi folks,
I was wondering if somehow the "Profiles" can be associated with Quality Size ... for amatuers (beginners) like myself. It would probably be easier to see something like any one of the following options ...
Option 1: 100% or 75% ... or something like
Option 2: Best, Better, Good range ... or
Option 3: A very brief explaination of Profiles in the Wiki ... in a "Simple" lingo.
Thanks,
G!:)
dlflannery
19th April 2007, 00:46
I just read through the thread and I'm looking for a link to post to the wiki to get the required software and I'm not finding it.
They mention this site:
http://www.citizeninsomniac.com/WMV/#WMCmd
Good job on the WVC1 wiki addition. The correct link for the latest WMcmd.vbs is http://citizeninsomniac.com/WMV/WMCmd_20070414.zip
but as you say this is provided with AutoMKV so it doesn't have to be installed. This link is from the thread started by Zambelli on this script (http://forum.doom9.org/showthread.php?p=974126#post974126) (which AFAIK he authors, or at least maintains). The link you mentioned is dead for me too -- correction: just tried it and it's good now.
nx6
19th April 2007, 01:08
Good job on the WVC1 wiki addition.
No. Actually buzzqw rewrote it later on, his version was much less confusing. :)
The link you mentioned is dead for me too -- correction: just tried it and it's good now.
Yeah, it's working for me now, too.
TheRyuu
19th April 2007, 01:43
I'm getting interlacing patterns in areas of action. Like here (person running).
http://img48.imageshack.us/img48/9586/vlcsnap15977rg2.th.jpg (http://img48.imageshack.us/my.php?image=vlcsnap15977rg2.jpg)
Or here where the view is panning...
http://img337.imageshack.us/img337/2255/vlcsnap19492sm9.th.jpg (http://img337.imageshack.us/my.php?image=vlcsnap19492sm9.jpg)
I reinstalled and ran tests with both 0.80 and 0.80b and had the same problem though, so it's not the version of AutoMKV.
Can the length of a D2V effect how well deinterlacing works? The earlier encodes without this problem were full episodes, but when I started using these 2-3 minute samples is when I started to see this.
Open the original movie in MPC or some other movie player that you can use some sort of step by step frame in.
If you notice 3 progressive frames followed by 2 interlaced frames then AutoMKV probably is not detecting it correctly and it is also probably not detecting the field order right either.
Open the same file (if possible) in DGIndex and see the field order. If you can't open it in DGIndex then most of the time you can assume it is TFF.
If it is the case and you do have 3p/2i frames then you need to use the Decimating deinterlacer using (probably) TFF for the field order.
That might help but only if it is 3/2 like that. If it is pure interlaced then I'm not sure.
nx6
19th April 2007, 01:58
Open the original movie in MPC or some other movie player that you can use some sort of step by step frame in.
If you notice 3 progressive frames followed by 2 interlaced frames then AutoMKV probably is not detecting it correctly and it is also probably not detecting the field order right either.
This wasn't playing correctly on MPC. The video was running at about 1/8 correct speed while audio sounded fine. The interlacing pattern isn't constant. During the running segment it was staying at 4p-1i, but that changes to 3p-1i and then 2p-1i at some points.
buzzqw
19th April 2007, 12:15
update 0.81b
http://www.64k.it/andres/data/a/AutoMKV081b.exe
ADDED: More info about deinterlace in Log file
ADDED: On Advanced settings "Allow Hybrid Order/Pattern". If NOT allowed the "partly film", "partly interlaced", "Hybrid Order" will switch to "Film", "Interlaced" and majority order (bff/tff). This check is added because these kind of file aren't common but on short source the auto-detection could fail an so will set these value. If you know that your source belong to anime or bad NTSC tranfer check this value, otherwise DON'T CHECK
ADDED: On Advanced Setting "Test Deint" it will run the usual deinterlace test and will report the information. It will also set the deinterlace pattern
FIXED: Some issue on Deinterlace routines
FIXED: Some code optimization
BHH
TheRyuu
19th April 2007, 23:05
This wasn't playing correctly on MPC. The video was running at about 1/8 correct speed while audio sounded fine. The interlacing pattern isn't constant. During the running segment it was staying at 4p-1i, but that changes to 3p-1i and then 2p-1i at some points.
Eh, I'd try the decimating deinterlacer for the hell of it. See what it gets you :p
delacroixp
20th April 2007, 17:02
Hi folks,
I was wondering if somehow the "Profiles" can be associated with Quality Size ... for amatuers (beginners) like myself. It would probably be easier to see something like any one of the following options ...
Option 1: 100% or 75% ... or something like
Option 2: Best, Better, Good range ... or
I had the same thought with DivX awhile back.... perhaps we could have 3 settings for size based on a 2-pass strategy and 3 settings for quality based in CQ-CRF...
This would allow really clueless newbies to get started... and then pick up a bit more later on if they choose... possibly like buying an automatic vehicle because a manual is too complicated...
Some will develope further... while others wont but it'll increase the general awareness and popularity of AutoMKV in the same way that DVDFab (http://www.dvdfab.com/free.htm) has used elegant-simplicity to go from strength to strength...
:):D:eek:
Pascal
DDogg
20th April 2007, 23:30
Hmm, I am starting to wonder if it is time to pull out this old and worn out thread. It does not apply in some ways because the users of AutoMKV have always understood that Buzz works hard to honor requests ... Still, it might be worth a read for some of the newer members.
http://forum.doom9.org/showthread.php?s=&threadid=7770
buzzqw
21st April 2007, 08:55
Thanks DDogg!
your words are always welcome and i hope followed by users
i would like to write here some sarcastic comments or some sad words...
but... thanks, thanks for your support DDogg, you know, AutoMKV will be half of what is now, without you!
BHH
Henrikx
21st April 2007, 09:45
AutoMKV is a very good program!
Many fans in germany !
Thanks buzzqw, for this work !
I plan a German translation of your Wiki.
delacroixp
21st April 2007, 10:32
Hmm, I am starting to wonder if it is time to pull out this old and worn out thread. It does not apply in some ways because the users of AutoMKV have always understood that Buzz works hard to honor requests ... Still, it might be worth a read for some of the newer members.
(2001) I thought I would take a few minutes to put a few things into perspective, especially for the newer participants to this forum (and have a little fun doing it).
Let's go back to the early part of 2001. At that time only a few, very proficient people could backup a dvd to svcd. It was a mind-boggling concoction of different programs, many of which worked poorly. To be able to hand make a svcd backup was close to an art. It was extremely new, difficult, and more importantly, terribly time consuming. It was not unusual for a backup to take a week of evenings to finish.
Along comes DVD2SVCD the author. He did a fairly quick down and dirty hack to be able to automate some of the stuff we were doing manually so in the wee hours of the morning a process could be completed and another begun automatically. That was a terrific thing for those of us who could do all the steps and we were VERY appreciative of what he did.
Now comes the blessing or the curse depending on your perspective :)
Many more features were added and DVD2SVCD became a feature packed robust program a long way from its humble origin. Doing a backup became much easier and so began to attract less experienced users. These users not only had less computer experience, they also had much less "board" experience in an online community and some did not understand forum manners.
Why is that a curse to some? Well let me answer that question, with a question. If somebody stops by your house and brings a nice pie, do you say to that person, "You FOOL!!!, WHY did you bring me a cherry pie, I WANTED an APPLE PIE!!!!!!!!!!!!!!!!!!!!!! [edited for language - 2001 was a different time than now regarding language on this board]
Btw, to the newer folks, note how irritating the caps and exclamation marks are (besides the content). (See this post about that) (http://forum.doom9.org/showthread.php?s=&threadid=51632) So, from the perspective of many of the older members of this group, DVD2SVCD was nice enough to bring us a great pie (without being asked). That was a neighborly thing to do, yes? Even if I didn't like cherry pie, I would not offend my neighbor by suggesting I just was not satisfied with what he brought me. If I did, I could count on getting no more free pie :) Everybody with me? LOL
Now here is the problem, the pie is good, free and in demand. The chef is getting stressed out trying to keep all his old and new friends in great tasting pie. In short, it is becoming a pain in the ass for the pie maker. Adding to that, most will not even do him the courtesy of buying a little flour and eggs by way of making a small donation. They just want the free pie AND THEY WANT TO BITCH ABOUT IT. Amazing!
The moral of this story is: if you like free pie, but not this weeks flavor, keep your pie hole shut about it, or you may not get the chance to try next weeks flavor. Or you can go bake your own, of course. If you do, I strongly suggest you don't start baking for all your neighbors. It is way too stressful. :)
DD
I am certainly one of those newer participants on this forum... few are newer than I.
I guess 2001 was the time of Kubrick's 2001: A Space Odyssey (http://en.wikipedia.org/wiki/2001:_A_Space_Odyssey_(film)) and also when a few elite programmers and geeks were 'one-eyed kings in the land of the blind'... possibly like the early days of cars in the 20's when you could have any colour model-T... as long as it was black. Now everybody wants a custom paint job.
One of my first lessons on Economics 101 was that "there is no such thing as a free lunch'... everyone pays the price for getting 'fat on free food' and 'drunk on free drink'.
Making free pie for the neighbours, be it cherry or apple, is certainly a magnanamous gesture that few, like the good Samaritan, can sustain for the long-haul... We are all one-nighters looking for ever-increasing degrees of reward...
OSS projects like UNIX© are not inherently beter than CS projects like Windows© and MS's approach in general...
Either way it takes special people (like buzzqw or Bill Gates) to excel at one or the other...
:):D:eek:
Pascal
btw
The moral of the story is: If everyone is getting free pie, from competing home bakers... then it might well be the right time to diversify into organic health foods or cheese cake...
weaver4
21st April 2007, 18:36
I had the same thought with DivX awhile back.... perhaps we could have 3 settings for size based on a 2-pass strategy and 3 settings for quality based in CQ-CRF...
This would allow really clueless newbies to get started... and then pick up a bit more later on if they choose... possibly like buying an automatic vehicle because a manual is too complicated...
Some will develope further... while others wont but it'll increase the general awareness and popularity of AutoMKV in the same way that DVDFab (http://www.dvdfab.com/free.htm) has used elegant-simplicity to go from strength to strength...
:):D:eek:
Pascal
I had requested the same thing to the AutoGK group last year it was not accepted very well by that group, maybe it will be better received by this group.
I had said that how would anyone know that for XviD that 55% is poor, 67% is good, and 75% is excellent. And for Divx poor is 40%, good is 50% and 67% is excellent. What basis would people (newbies) know this? For that matter how would anyone know what the correlation is between codecs, quantizer and quality.
If someone hands me a video they might say "I need a good copy of this video, I need for it to play in XXXX and I need it to fit on a CD." Why isn't that the way encoding tools work.
Might be something you could do with profiles? Like:
> XviD -- Constant Quality - Fair
> XviD -- Constant Quality - Good
> XviD -- Constant Quality - Very Good
> XviD -- Constant Quality - Excellent
> AVC -- Constant Quality - Fair
> AVC -- Constant Quality - Good
> AVC -- Constant Quality - Very Good
> AVC -- Constant Quality - Excellent
> WMV -- Constant Quality - Fair
> WMV -- Constant Quality - Bad
> WMV -- Constant Quality - Worse
> WMV -- Constant Quality - Just Awful
weaver4
21st April 2007, 18:43
Buzz, I know you don't want to do this, but for the world that does not visit doom9 the most "known" coded is DivX. DivX certification is on at least 2 DVD players on every major retailers shelf. I don't think the common user understands they can use XviD encoding on a DivX player as long turn off GMC and QPEL.
Plus this link has put DivX in a whole new light, right or wrong.
http://www.compression.ru/video/codec_comparison/subjective_codecs_comparison_en.html
buzzqw
21st April 2007, 19:22
about quality preset... those are present !
look at advanced settings Specify Quality
yes, i undestand that some profile could be "easier" to spot and use... but if add those list the profile list go very long.. and i think that isn't good
about divx... i had say that divx stay out.
well, i usually change opinion quite easy.. but not now, or not early
and btw ... look at this (working on)
http://img402.imageshack.us/img402/5977/automkvcropny6.png (http://imageshack.us)
:)
BHH
nx6
21st April 2007, 23:05
Hey, that's pretty cool.
Your new build didn't help my interlacing problems (tried the new deinterlacing feature), but I will keep working on it here. I had a paper to write yesterday and was unable to focus on encoding video much.
It seems very weird that back on April 9th encoding did not result in these interlacing problems with the same series, but now it does, and even when I go back to the version of AutoMKV I was using back then, I still have issues. I also tried a different series of anime, and had the same problem. In this case I was using IFO input and had ripped by chapter in DVDFabDecryter to separate the individual episodes. I had an odd looping skip in the resulting file, even worse than the d2v input with the other series. It caused an audio skip and grey screen to flicker in output, it wasn't even watchable.
Does DGIndex have any system files it creates/installs when it runs? I'm wondering if even though you downgraded DGIndex back to the non-beta version, there are still some files the beta version created that are being used by the older version and creating problems.
Unrealbr
21st April 2007, 23:33
I'm having a bit of issues with 0.80b and 0.81b.
I set it to auto-encode in a res but its strangely swaping the height with the width.
What could be causing this problem and how to solve it?
T/Y for all your effort buzzqw
PS:
It looks like when its muxing it screws the res coz the temp files are alright. :(
buzzqw
22nd April 2007, 00:25
@nx6
you must look at log of "good" encoding and spoot what deinterlacer was used... then replicate in automkv
i don't know the source file... so i cannot help.
Feel free to ask support on avisynth usage forum
. It caused an audio skip and grey screen to flicker in output
manual crop ?
post the script, also open the script in virtualdub ... any errors or artifacts ?
What could be causing this problem and how to solve it?
since is a muxing issue is most probably your sorce is an avi or mpeg4 file... try forcing muxing aspect ratio! :)
BHH
Unrealbr
22nd April 2007, 00:32
since is a muxing issue is most probably your sorce is an avi or mpeg4 file... try forcing muxing aspect ratio! :)
BHH
Its an MKV x264 source.
I'll try forcing muxing aspect ratio.
T/Y Buzzqw
nx6
22nd April 2007, 00:33
@nx6
you must look at log of "good" encoding and spot what deinterlacer was used... then replicate in automkv
i don't know the source file... so i cannot help.
Feel free to ask support on avisynth usage forum
I don't have that log anymore :( Maybe I can recover it somehow.
manual crop ?
post the script, also open the script in virtualdub ... any errors or artifacts ?
We'll see... at right work now.
P.S.: On CQ-CRF profile, the width is back to going to '720' instead of 'Original' like you had fixed in 0.80.
gonwk
22nd April 2007, 02:20
Hi folks,
@ buzzqw ... just wanted to drop a line and say ...
THANK YOU VERY MUCH for all of your Hard Work!
And I LOVE AutoMKV for the simple fact is "PORTABLE" ...
G!:thanks:
nx6
22nd April 2007, 03:12
And I LOVE AutoMKV for the simple fact is "PORTABLE" ...
G!:thanks:
Almost.
Added ability for AutoMKV to ask to copy libsndfile-1.dll into c:\windows\system32 as needed for SoundOut to function.
AutoMKV will not run if SoundOut cannot function, and if you do not have administrative access to your PC, you cannot write to c:\windows\system32, and SoundOut cannot run. So it isn't truly portable, as a portable app would be self-contained and be capable of running from its folder, ragardless of whether it was on a boot drive or not.
I do believe AutoMKV could be a portable app with very little work by buzz and the other package maintainers, though.
branko
22nd April 2007, 07:20
I tried this program for the first time yesterday. I noticed that the 1-pass with x264 is a lot slower compared to other programs I use (Megui or Staxrip). I think it is because AutoMKV use different settings for 1 pass for the same profile. Is it really necessary to use such command parameters for 1. pass that make encoding slower?
nx6
22nd April 2007, 07:47
@nx6
you must look at log of "good" encoding and spoot what deinterlacer was used...
I found the log file for one of my earlier attempts that didn't have the interlacing artifacts, it was in the Recycling Bin still (thank god, the file recovery utility was taking forever to scan by HD clusters). I opened it and found...
05:40:42 tfm(d2v="S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01.d2v").tdecimate()
Which means:
Eh, I'd try the decimating deinterlacer for the hell of it. See what it gets you :p
Was actually the correct answer.
I made a new D2V test input, a real short one (under 1800 frames) that was mostly the "running scene", I tried the "Allow Hybrid Order/Pattern" option and ran and deint test (which gave unknown for type" and then manually chose decimating deinterlacing. The resulting movie does not have the interlacing artifacts the tests have had up to this point! :D
I'll need to try some full episodes but this is very encouraging.
weaver4
22nd April 2007, 14:07
What does "Specify Quality" do? Does it change the quantizer in single pass CQ-Mode? What percentage equals what quantizer value?
Love AutoMKV, when will you be at 1.0?
delacroixp
22nd April 2007, 15:44
@delacroixp
Check out this picture (http://automkv.wiki-site.com/index.php/Image:BoB01_Org_VOBedit.jpg).
I took your original images and combined them. The right half is your VOB, the left is the encoded file. On the upper 40% of so of the encoded file side I have done Brightness/Contrast adjustment to it (you can see the border running just above the truck's headlights). This is why the sky is similar in brightness to the VOB side. But there is a saturation problem as you diagnosed.
In the middle of the entire frame I have applied a saturation adjustment which overlaps all three areas (enclosed in white frame). You can see the upper left quadrant of it is the closest to the VOB sample area outside the white frame. Just so you have the figure: this is a 60% increase in saturation. So you would need to adjust brightness, contrast, and saturation to get an encoding closer to the original material.
I didn't get to see the pic... it did like Donald... and ducked...
This colour, saturation, hue, brightness, contrast thing is so complicated that I feel quite overwhelmed...
However, the DAR (http://forum.doom9.org/showpost.php?p=989749&postcount=1888) encode really worked for me... It only decreased the filesize by 24% but I got a near-perfect original...
Some say I should have just used DVDShrink since it really excels at 10% - 20% decrease in filesize and of course, you maintain the menu structure...
Perhaps it can work for you... Bleach is 4:3 so that the increase to DAR resolution (768x576) is quite small at 6%... a far cry from 'Lord of the Rings' which has a 2.35:1 aspect ratio and a DAR resolution of (1354x576).
Funny thing... I've just finished encoding Ferris Bueller's Day Off (http://en.wikipedia.org/wiki/Ferris_Bueller's_Day_Off) at DAR-Q18 along with 3 direct-copy audio tracks (main, commentary, french) and 6 subtitle tracks (english, french, hungarian) and the file is still 50% less than the original VOB.
As buzzqw often says... 'there's no 1 generic movie... they're all unique'.
:):D:eek:
Pascal
TheRyuu
22nd April 2007, 17:23
I found the log file for one of my earlier attempts that didn't have the interlacing artifacts, it was in the Recycling Bin still (thank god, the file recovery utility was taking forever to scan by HD clusters). I opened it and found...
05:40:42 tfm(d2v="S:\AutoMKV080b\temp\FullDisc\Bleach Volume 1\VIDEO_TS\Ep01.d2v").tdecimate()
Which means:
Was actually the correct answer.
I made a new D2V test input, a real short one (under 1800 frames) that was mostly the "running scene", I tried the "Allow Hybrid Order/Pattern" option and ran and deint test (which gave unknown for type" and then manually chose decimating deinterlacing. The resulting movie does not have the interlacing artifacts the tests have had up to this point! :D
I'll need to try some full episodes but this is very encouraging.
Told ya :)
And when you use the decimating feature, select a field order (normally TFF, but check it out in DGIndex). The Auto thing doesn't seem to work for me for field order.
A lot of Cartoons/Anime is 3/2 like that and requires decimating. I was also having problems with interlacing like that and I searched and searched and searched and I found a post about ivtc (I think) and how to see the 3/2 by stepping it in MPC frame by frame. Sure enough it was, ran the decimating and it worked.
The interlacer that you use is dependent on whether it is true interlaced material, or it's ivtc 3/2 (right?, not sure on the terminology here).
nx6
22nd April 2007, 20:54
I didn't get to see the pic... it did like Donald... and ducked...
Sorry, it's been removed now because I realized I couldn't delete it myself easily and figured I didn't need them anymore. If I stil have it I'll post it to the imageshack account I have now for this stuff,
This colour, saturation, hue, brightness, contrast thing is so complicated that I feel quite overwhelmed...
The good new is that you can fix all this with AVISynth filters, so you should be able to fix it with AutoMKV I assume.
Perhaps it can work for you... Bleach is 4:3 so that the increase to DAR resolution (768x576) is quite small at 6%... a far cry from 'Lord of the Rings' which has a 2.35:1 aspect ratio and a DAR resolution of (1354x576).
I'm not changing DAR, I'm leaving it as it is on the DVD. I don't have an issue with how it looks on my monitor at full screen, and I want to maintain a TV-happy DAR.
Told ya :)
And when you use the decimating feature, select a field order (normally TFF, but check it out in DGIndex). The Auto thing doesn't seem to work for me for field order.
I didn't see a difference with leaving it at Auto. But I'll probably change that for a full episode.
A lot of Cartoons/Anime is 3/2 like that and requires decimating. I was also having problems with interlacing like that and I searched and searched and searched and I found a post about ivtc (I think) and how to see the 3/2 by stepping it in MPC frame by frame. Sure enough it was, ran the decimating and it worked.
This still isn't playing right in MPC, but I think that may be a decoding components clashing or something. I was reading some guides about this stuff (http://www.animemusicvideos.org/guides/avtech/videogetb2a.html) yesterday while I was at work.
gonwk
22nd April 2007, 22:57
Hi NX6,
I am not AT ALL software saavy ...
The reason AutoMKV seemed "Portable" to me was because I am running it from my 2.5" external USB ... and it runs A-OK ... even though I work on my desktop as "Only" a limited "Power User" ... which I don't think that qualifies for Admin Right type person.
So, I guess as long as it acts as one for my use ... I am fat, dumb, and happy!
I wish more & more programs would be written as such ... or smart folks like you and others here figure out how to make Other programs portable also.
Thanks,
G!:)
buzzqw
23rd April 2007, 12:55
P.S.: On CQ-CRF profile, the width is back to going to '720' instead of 'Original' like you had fixed in 0.80.
... for me is fixed already... are you sure ?
. I noticed that the 1-pass with x264 is a lot slower compared to other programs
there are three 1 pass profile (fast, intermediate, good), maybe i changed a little but shouldn't be so lower in speed...
What does "Specify Quality" do? Does it change the quantizer in single pass CQ-Mode? What percentage equals what quantizer value?
x264 quant= (40-qualityvalue)/4
xvid quant= 12-Sqr(qualityvalue+12)
Love AutoMKV, when will you be at 1.0?
no date... depends on how much free time i have (more time -> more build)
The Auto thing doesn't seem to work for me for field order.
... on decimate/film isn't needed the field order
The interlacer that you use is dependent on whether it is true interlaced material, or it's ivtc 3/2
absolutely right. look on wikipedia per interlace and inverse telecine
i have some problem with visual-manual crop... the image of movie on another pc isn't displayed :confused:
on pc have a ati aiw9700pro, the other an intel integrated graphic card (865)... dunno what can be...
most probably the release will be delayed
BHH
weaver4
23rd April 2007, 16:35
Buzz,
I am a little confused on this:
x264 quant= (40-qualityvalue)/4
If the qualityvalue is zero the quantizer would be 10 and that is the highest value it could get to. If qualityvalue was 100 it would be -15. But normal X264 quantizer values are 15 to 25.
buzzqw
23rd April 2007, 17:07
ehmm.. parenthesis error... :o
x264 quant= 40-(qualityvalue/4)
so for qualityvalue=100 quant=15
for qual=80 quant=20
for qual=75 quant=21
for qual=70 quant=22.5
also i have fixed the not display... but monitor color depth bust be 32bit
now is missing the ar% error on resize
here the latest version
http://img170.imageshack.us/img170/3849/automkvcrop2gf6.png (http://imageshack.us)
BHH
branko
23rd April 2007, 17:37
I meant 1. pass in 2-pass encoding (profile HQ-slow). The 1. pass is much slower than the 1. pass in Megui or Staxrip, using the profile HQ-Slow. I tested several movies and everytime I get slower 1. pass in AutoMKV than in Staxrip. For example: Staxrip on 1. pass = 19 fps, AutoMKV on 1. pass= 13 fps.
nx6
23rd April 2007, 18:25
... for me is fixed already... are you sure ?
It looks like it only happens when you have "don't care about size" selected for the size and CQ-CRF for profile, even though AutoMKV is ignoring the size anyway.
Actually I seem unable to choose any profile BUT CQ when I have "don't care about size" selected for the size. If I choose AVI/XviD and have "don't care about size" as the selected size it only uses "XVid_CQ" profile and after the "Hit Media Size/Go Unlimited" dialog the resizer is still using 720px width. But if I have "1 CD" or "1/4 CD" or whatever in the movie size setting first, then after the "Hit Media Size/Go Unlimited" dialog, CQ profile gives Original/NONE for resizer.
buzzqw
23rd April 2007, 19:11
@branko
thanks... i will look (anyway could be also a filter issue..., remember that automkv will always insert colormatrix and removegrain...)
@nx6
It looks like it only happens when you have "don't care about size" selected for the size and CQ-CRF for profile, even though AutoMKV is ignoring the size anyway.
noted!
Actually I seem unable to choose any profile BUT CQ when I have "don't care about size"
Should i do a 2 pass encoding or 1 pass encoding with bitrate 1000000000 ?
Much better a crf/cq profile (for me..)
BHH
delacroixp
23rd April 2007, 19:24
P.S.: On CQ-CRF profile, the width is going back to '720' instead of 'Original' like you had fixed in 0.80.
... for me is fixed already... are you sure ?
720 sounds good... 'original' is ambiguous in the world of anamorphic vs square-pixel encoding...
I'm probably one of the few members of the entire Doom9 forums that believes 'bigger is better' and encodes at OriginalDisplayResolution-Q18-CRF.
I encoded The Deer Hunter again last night... at 1008x432 with direct-copy audio track... the mkv jetting in at 4.33 GB... just barely 50MB short of a DVD... close call...
I gather MkvToolnix has the option to span... so a movie like Once Upon a Time in America (http://en.wikipedia.org/wiki/Once_Upon_a_Time_in_America) which is 360 min and 12GB (vob)... could be spanned over 2 DVD's if necessary...
:):D:eek:
Pascal
delacroixp
23rd April 2007, 19:54
ehmm.. parenthesis error... :o
x264 quant= 40-(qualityvalue/4)
so for qualityvalue=100 quant=15
for qual=80 quant=20
for qual=75 quant=21
for qual=70 quant=22.5
also i have fixed the not display... but monitor color depth must be 32bit
now is missing the ar% error on resize
here the latest version
http://img170.imageshack.us/img170/3849/automkvcrop2gf6.png (http://imageshack.us)
Awesome... truly, a work of art and magic...
I hope you're going to change the spelling of Anamorph... to Anamorphic.
I'm really enjoying encoding from IFO's of late... directly from DVD... and in my case, from 'images'. I have an HTPC with tons of images backed up from my DVD library collection...
IFO encoding is intelligent (AI) software at it's best... I don't mind hard work but there's no need to be foolish and 'dig your own grave'...
Well actually, I used to rip the movies into a single VOB... (with DVD Decrypter from an image) and then rename the VOB and IFO alike, but I could never rip the subs... either with AutoMKV or VSRip... while now it works flawlessly...
AutoMKV is the best... wayyy better than MeGUI... I'm sure 1.0 will be just unbelievable... given time and due thought...
:):D:eek:
Pascal
buzzqw
23rd April 2007, 21:16
thanks delacroixp!
just a notd 1008/432=2.3333
is 2.3333 the correct dar ? shouldn't be 2.35 and so 1024 and not 1008 ?
also... in orginal AR i list only 16:9, 4:3 and 1:1
i don't think 2.35 should be allowed...
and what do you think about allow and editable list ?
BHH
delacroixp
23rd April 2007, 22:20
thanks delacroixp!
just a notd 1008/432=2.3333
is 2.3333 the correct dar ? shouldn't be 2.35 and so 1024 and not 1008 ?
also... in orginal AR i list only 16:9, 4:3 and 1:1
i don't think 2.35 should be allowed...
and what do you think about allow and editable list ?
Well, it was a rather funny encode... it had cropping L=R=8 and the true DAResolution should have been 1002x432... but 1002 is not MOD16... so encoded 1008 and remuxed with Mosu's MkvToolnix (http://forum.doom9.org/showthread.php?t=120648&page=15) set to 1002... I suppose doing an AutoMKV anamorphic encode of 1008 but signalled to 1002 should also have worked just fine.
Buzz.... 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
I like SeeMoreDigital's idea of a drop down list including 'custom SAR' since most movies have black-space and can wreak havoc with your DAR calculations...
However, I have never encoded an Xvid movie eventhough I support DivX and have encoded many, many divx movies... I still feel MKV and HTPC is where it's at.
Having said that... the MKV 'Force Muxing AR, DAR, SAR, PAR' does pretty well with 4:3 and 16:9... since even if you only vaguely know your stuff... inserting a 'custom resolution' is eminently superior to the serious AR maths...
The way I understand it is that... if you have a movie that is 2.35:1 it's probably got some serious black stuff top and bottom... and given even-cropping and MOD16/4/2 etc... you probably wont end up with a true 2.35 movie anyway.
In some cases an actual AR figure may be necessary with dodgey players... even Zoom player gets funny on me occasionally... but I'm sure MKV can sort it all out... mostly...
:):D:eek:
Pascal
delacroixp
23rd April 2007, 22:26
I'm encoding Lord of the Rings and expected something like 1354x576 (2.35x576) but it's just a regular 1024x432 movie with tons of black stuff all over the place...
:):D:eek:
Pascal
.
..
... I suppose not !
nx6
24th April 2007, 00:16
Well, it was a rather funny encode... it had cropping L=R=8 and the true DAResolution should have been 1002x432... but 1002 is not MOD16... so encoded 1008 and remuxed with Mosu's MkvToolnix (http://forum.doom9.org/showthread.php?t=120648&page=15) set to 1002... I suppose doing an AutoMKV anamorphic encode of 1008 but signalled to 1002 should also have worked just fine.
What if there was a checkbox that could be turned on and would restrict what values could be used, and it had a drop down menu for selecting MOD2/4/8/16?
delacroixp
24th April 2007, 10:45
What if there was a checkbox that could be turned on and would restrict what values could be used, and it had a drop down menu for selecting MOD2/4/8/16?
Beautifull... quite frankly, I think that totally inadmissable values (eg NON-, even-cropping, height-MOD2, width-MOD4) should be arrested well before the encode even starts... like implementing a numerical-field setting in a database for numbers-only... wayy tooo many encodes crash for no fault of the movie or AutoMKV encoding-workability...
A drop-down menu-choice for MOD16 and MOD8 would be great... even to see how this affects your number-crunching... I guess Default would be the MOD4/MOD2 standard arrangement...
I suppose each container has it's own specs...
A simple slider calc would probably best show the changing values... depending on your choice of cropping (see post (http://forum.doom9.org/showpost.php?p=969913&postcount=1276)).
A system of Automatic cropping (pre-encode movie-analysis) with recommended values would be nice...
:):D:eek:
Pascal
btw
I did LotR 1 last night... Dr DivX reported black-space T=75 and B=76... I chose to crop T=B=72 with H=432 to maintain MOD16...
I guess I could have cropped T=74, B=76... and still have H=432 (resized) but signalled DAResolution 1024x426 or AR = 1024/426 = 512:213 = 2.4:1
I would have had less black-stuff and more quality...
buzzqw
24th April 2007, 15:50
for the brave and the bold
http://www.64k.it/andres/data/a/AutoMKV082spc.rar
unrar into automkv folder, now you will have the new AutoMKV082alpha.exe and AVSredirect.dll
start automkv082alpha.exe load your source file , go in advanced settings and click on visualcrop :cool:
BHH
delacroixp
25th April 2007, 12:11
I managed to crop all the black space from 'Lord of the Rings 1'... leaving 1024 x 426 => 2.4:1 (720x576 PAL / 16:9)
So I up-sized to 1152 x 480 (all MOD16)... using Lanczos4 (I'm still using 0.80)... and the file is still way short of 1 DVD...
The quality is just indescribable and beyond words...
:):D:eek:
Pascal
buzzqw
25th April 2007, 14:49
with 0.80 the better resizer is lanczos4 in new installer there is also limitedsharpenfaster...
BHH
ryc0203
25th April 2007, 15:50
:thanks: for this great software
one cuestion what are the diference betwen filter qmlf1-3 motion and qmlf2-4 motion, qmlf3-5 motion..... etc
I know what's are a conditional filter, but not the especific use of the qmlf
PD: Sorry by my english but is not my natural language
buzzqw
25th April 2007, 17:42
look at \exe\script and at .avs file... these are the qmf
also i can suggest for this feature to wait the next update. I will introduce the qmtrim (http://www.digitalexpression.it/forum/index.php?showtopic=416&st=0 , sorry only italian)
it would be an vectorial analysis of frames using mvanalyze and will construct a avs much similar (and much better) to ArCalculator
BHH
ryc0203
25th April 2007, 20:13
thanks again .... very good work :)
malacai
26th April 2007, 09:38
10:35:13 WMV CMD: cscript.exe "R:\AutoMKV080\exe\encoder\WMCmd.vbs" -input "R:\temp\movie.avs" -output "R:\temp\movie.wmv" -v_codec WVC1 -v_mode 3 -v_bitrate 3824275456 -s_config "R:\temp\wmv_crb" -v_preset best -v_dquantoption 3 -v_bdeltaqp 1 -a_codec wmapro -a_mode 0 -title "swe6-1itp1its9-sample" -year 2007 -copyright "Done with AutoMKV! 0.82" -a_setting 192_48_2_16
10:35:17 BREAK ! FILE NOT SUPPORTED ! LAST TRY WITH FFMPEG!
i always get this when trying to encode WMV
buzzqw
26th April 2007, 10:32
i need more info
post the log file
it is ok when encoding to x264/xvid ?
BHH
woody_green
26th April 2007, 13:13
Hello, I encoded some anime, and there is a slight problem. The video is playing too fast. Audio is good, but the video is just too fast for the audio. What should I do?
19:25:59 0.81b - - - - - - - - - - - - - START JOBS - - - - - - - - - - - - - -
19:25:59 Selected Input file: C:\Documents and Settings\Cora\My Documents\skulfiles\nodame_cantabile\[Froth-Bite]Nodame_Cantabile_010.mp4
19:25:59 Selected Output dir: D:\temp\
19:25:59 Selected Final Name: [Froth-Bite]Nodame_Cantabile_010
19:25:59 Selected Container type: MKV
19:25:59 Selected Encoder: X264
19:25:59 Selected Size: 33
19:25:59 Selected Slice: 1
19:25:59 Selected Profile: 1Pass-Maxspeed.xml
19:25:59 Selected Width: 720
19:25:59 Selected Resizer: Spline36Resize (neutral sharp)
19:25:59 Selected Filters: Deen().Spresso().TTempSmooth()
19:25:59 Selected Deinterlacer: AUTO
19:25:59 Selected Field Order: AUTO
19:25:59 Manual Crop: Enabled
19:25:59 Left Crop: 0
19:25:59 Top Crop: 0
19:25:59 Right Crop: 0
19:25:59 Botton Crop: 0
19:25:59 Manual Width: 512
19:25:59 Manual Height: 288
19:25:59 Enabled CRF/CQ AutoRes at 18 value
19:26:00 Track Language 1: [Froth-Bite]Nodame_Cantabile_010.mp4
19:26:00 Audio Codec 1: Nero AAC
19:26:00 Audio Quality 1: 0.50
19:26:00 Audio Channel 1: Stereo
19:26:00 Advanced Audio Settings DUMP Track 1
19:26:00 Nero Option Profiles: AUTO --- Encoding Mode: Quality
19:26:00 CCT Option Profiles: AUTO --- Channel Options: AUTO
19:26:00 Lame Settings: ABR
19:26:00 Audio Normalization: 1
19:26:00 Frequency: AUTO --- Tempo : NONE
19:26:00 Pitch: NONE --- Other Add :
19:26:00 Advanced Audio Settings DUMP Track 2
19:26:00 Nero Option Profiles: AUTO --- Encoding Mode: Quality
19:26:00 CCT Option Profiles: AUTO --- Channel Options: AUTO
19:26:00 Lame Settings: ABR
19:26:00 Audio Normalization: 1
19:26:00 Frequency: AUTO --- Tempo : NONE
19:26:00 Pitch: NONE --- Other Add :
19:26:00 Activate Anamorphic Encoding
19:26:00 Activate use ProjectX
19:26:00
19:26:25 Number of Frames: 33870
19:26:25 Framerate: 25.000000
19:26:25 Movie length in Seconds: 1355
19:26:25 Movie Width/Height: 704/400
19:26:28 Encoding D:\temp\ to NeroAAC with 0.50 quality
19:28:56 Encoded 1' Audio Track: 25157989 bytes
19:28:56 Starting X264
19:28:57 ABR encoding X264: D:\AutoMKV081\exe\encoder\x264.exe --pass 1 --crf 32.50 --stats "D:\temp\.stats" --progress --keyint 250 --bframes 0 --qpmin 10 --qpmax 51 --no-psnr --ref 1 --filter 0,0 --subme 0 --direct none --vbv-maxrate 25000 --me dia --no-ssim --merange 8 --nf --no-cabac --no-b-adapt --no-chroma-me --threads 2 --sar 64:45 --output "D:\temp\movie.mp4" "D:\temp\movie.avs"
20:00:43
20:00:43 Only Movie Size: 47788592 bytes
20:00:43 "D:\AutoMKV081\exe\matroska\mkvmerge.exe" -o "D:\temp\[Froth-Bite]Nodame_Cantabile_010.mkv" --track-name -1:"[Froth-Bite]Nodame_Cantabile_010" --aspect-ratio 1:16:9 "D:\temp\movie.mp4" --language -1:und "D:\temp\audio.mp4" --title "Done with AutoMKV 0.81b http://forum.doom9.org/showthread.php?p=854221 "
20:00:49 Final Muxed size: 73158701 bytes
20:00:49 Encoding finished: 00:34:50 elapsed time
20:00:49 -----------------------------------------------------------------------
20:00:49 Script AutoCrop.log
20:00:49
20:00:49 Crop(6,0,692,400)
20:00:49 -----------------------------------------------------------------------
20:00:49 Script Resmovie.avs
20:00:49 -----------------------------------------------------------------------
20:00:50 Script movie.avs
20:00:50
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\AddGrain.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\autocrop.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\BicublinResize.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\blockbuster.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\cnr2.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\ColorMatrix.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\Convolution3D.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\corrector.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\DctFilter.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\Decomb.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\Deen.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\degrainmedian.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\DGDecode.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\EEDI2.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\fft3dfilter.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\FluxSmooth.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\frfun7.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\hqdn3d.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\LeakKernelDeint.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\MaskTools.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\medianblur.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\MipSmooth.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\MSharpen.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\mt_masktools.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\mvtools.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\NicAudio.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\RemoveGrainS.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\RepairS.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\SangNom.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\SimpleResize.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\SoundOut.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\TBilateral.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\TDeint.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\TIVTC.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\TomsMoComp.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\TTempSmooth.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\UnDot.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\UnFilter.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\VSFilter.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\warpsharp.dll")
20:00:50 #loadpluginstart
20:00:50
20:00:50 #test1
20:00:50
20:00:50 Import("D:\AutoMKV081\exe\filter\HybridFuPP.avsi")
20:00:50 Import("D:\AutoMKV081\exe\filter\LimitedSharpenFaster.avsi")
20:00:50 Import("D:\AutoMKV081\exe\filter\MCBob_v03c.avsi")
20:00:50 Import("D:\AutoMKV081\exe\filter\mvbob.avsi")
20:00:50 Import("D:\AutoMKV081\exe\filter\seesaw.avsi")
20:00:50 Import("D:\AutoMKV081\exe\filter\spresso.avsi")
20:00:50 #importstart
20:00:50
20:00:50 #test2
20:00:50
20:00:50 movie = directshowsource("C:\Documents and Settings\Cora\My Documents\skulfiles\nodame_cantabile\[Froth-Bite]Nodame_Cantabile_010.mp4",audio=false)
20:00:50 movie = isRGB(movie) ? ConvertToYV12(movie,interlaced=true) : movie
20:00:50 movie = isYUY2(movie) ? ConvertToYV12(movie,interlaced=true) : movie
20:00:50 function getOrder(clip c) {
20:00:50 order = GetParity(c) ? 1 : 0
20:00:50 Return order }
20:00:50 #filter1start
20:00:50
20:00:50 #test3
20:00:50
20:00:50 last = movie
20:00:50 crop(0,0,-0,-0)
20:00:50 #resizestart
20:00:50
20:00:50 #test4
20:00:50
20:00:50 Spline36Resize(512,288)
20:00:50 #filter2start
20:00:50
20:00:50 #test5
20:00:50
20:00:50 Deen().Spresso().TTempSmooth()
20:00:50 -----------------------------------------------------------------------
20:00:50 Script mkvmaudio.avs
20:00:50
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\NicAudio.dll")
20:00:50 LoadPlugin("D:\AutoMKV081\exe\filter\SoundOut.dll")
20:00:50 DirectShowSource("C:\Documents and Settings\Cora\My Documents\skulfiles\nodame_cantabile\[Froth-Bite]Nodame_Cantabile_010.mp4",video=false)
20:00:50 #Applying STEREO downmixing routines
20:00:50 function stereo(clip a)
20:00:50 {
20:00:50 flr = GetChannel(a, 1, 2)
20:00:50 fcc = GetChannel(a, 3)
20:00:50 lfe = GetChannel(a, 4)
20:00:50 lfc = MixAudio(fcc, lfe, 0.2071, 0.2071)
20:00:50 mix = MergeChannels(lfc, lfc)
20:00:50 lrc = MixAudio(flr, mix, 0.2929, 1.0)
20:00:50 blr = GetChannel(a, 5, 6)
20:00:50 Return MixAudio(lrc, blr, 1.0, 0.2929)
20:00:50 }
20:00:50 #
20:00:50 6==Audiochannels() ? stereo() : last
20:00:50 Normalize()
20:00:51 Soundout(output="cmd",type=1,format=3,autoclose=true,executable="D:\AutoMKV081\exe\besweet\neroaacenc.exe",prefilename=" -ignorelength -q 0.50 -if - -of audio.mp4",postfilename="",nofilename=true,showoutput=false)
20:00:51 -----------------------------------------------------------------------
20:00:51 Script mkvmaudio.bat
20:00:51
20:00:51 "D:\AutoMKV081\exe\BeSweet\vdub.exe" /x "D:\temp\mkvmaudio.avs"
20:00:51 -----------------------------------------------------------------------
20:00:51 Script mkvmaudio2.avs
20:00:51 -----------------------------------------------------------------------
20:00:51 Script mkvmaudio2.bat
20:00:51
20:00:51 - - - - - - - - - - - - FINISHED JOBS - - - - - - - - - - - - - - - - -
Thanks!
buzzqw
26th April 2007, 14:01
from log file i can see that your source is processed via directshowsource....
is the original file syncronized when played with mpc/wmp?
is correct 25 as framerate ?
you could try to edit your movie.avs and change the movie=directshow... to this
movie = directshowsource("C:\Documents and Settings\Cora\My Documents\skulfiles\nodame_cantabile\[Froth-Bite]Nodame_Cantabile_010.mp4",audio=false,fps=25,convertfps=true)
the reclick on encoding bat file (x264cmdq_ABR.bat)
i will look at this issue!
thanks
BHH
dlflannery
26th April 2007, 15:10
10:35:13 WMV CMD: cscript.exe "R:\AutoMKV080\exe\encoder\WMCmd.vbs" -input "R:\temp\movie.avs" -output "R:\temp\movie.wmv" -v_codec WVC1 -v_mode 3 -v_bitrate 3824275456 -s_config "R:\temp\wmv_crb" -v_preset best -v_dquantoption 3 -v_bdeltaqp 1 -a_codec wmapro -a_mode 0 -title "swe6-1itp1its9-sample" -year 2007 -copyright "Done with AutoMKV! 0.82" -a_setting 192_48_2_16
10:35:17 BREAK ! FILE NOT SUPPORTED ! LAST TRY WITH FFMPEG!
i always get this when trying to encode WMV
-v_bitrate 3824275456
Isn't this a rather astounding bitrate? :confused:
valan
27th April 2007, 01:27
I'm having some trouble with deinterlacing, I just set it to auto. In previous versions it worked great, but in .81+ it doesn't seem to be working.
I get this error in deint.log:
Error: Error calling AVIStreamGetFrameOpen
I attached the log file for an encode from a dvd source
payne_en_diaz
27th April 2007, 02:54
Hi,I just started using this to encode my dvds to stream to my xbox 360.
Why does my Norton Anti virus keep reporting a malicious script and how do I stop it?
Sometimes the audio doesn't get merged with the video,how can I fix that.Here is log.
nx6
27th April 2007, 06:42
Why does my Norton Anti virus keep reporting a malicious script and how do I stop it?
Norton is probably alarmed by the scripts that AutoMKV uses that are creating many files on their own, which are then used in other scripts to make even more files. The result being Norton thinks your machine has been inducted into a zombie net, or is building a virus from scratch in-house like a trojan to avoid Norton's protection that is monitoring your network connection.
I dumped Norton years ago otherwise I would check around in the settings to see what could be "toned down" to allow things to run more smoothly.
buzzqw
27th April 2007, 09:36
@valan
this error often is due to missing/corrupted yv12 decoder
try reinstalling xivd
for deinterlacer problems try enabling "allow hybrid order/pattern"
@payne_en_diaz
as well say by nx6, automkv will use vbs script to automatize audio encoding. i can suggest to disable on norton the vbs script checking... or better use a more modern av (like avira,kaspersky,nod32...)
@nx6
thanks!
BHH
nx6
27th April 2007, 17:22
@payne_en_diaz
Apparently this is a common problem that isn't (http://www.hardforum.com/showthread.php?t=1181676) that easy to find a solution for. I had to jump around in Google for almost 20 minutes to find these answers.
How to disable script blocking in NAV 2002/2003. (http://service1.symantec.com/SUPPORT/nav.nsf/docid/2001082912274906?Open&docid=2002011812413006&nsf=nav.nsf&view=aab56492973adccd8825694500552355)
How to allow the "authorize" option for scripts. (http://service1.symantec.com/SUPPORT/nav.nsf/b69c799adfa31ecc85256aa30052f4d0/6216e0fdef41999685256a2d005c8e6e?OpenDocument&src=bar_sch_nam)
Here's another post of how to disable script blocking, but no mention of which version of Norton this works on. (http://www.computing.net/windowsme/wwwboard/forum/41151.html)
It almost looks like there is no way to disable it in NAV 2006/2007. I don't know if you'll have to "authorize" the scripts to run every time you do a job or if Norton will allow them from then on by name. If they use the filepath you'll have probelms since the filepath could change depending on where the "temp" folder is being created (inside the DVD rip folder for example). If that is the case, perhaps if you set your output destination to someplace else you'll only have to authorize them once, since then the temp folder will overwrite itself everytime and the filepath for the VBS scripts wont change, keeping them on Norton's Whitelist (if it has a permanent whitelist, that is).
delacroixp
27th April 2007, 18:32
Does AutoMKV support .DAT input file format... or are there any plans to in the future...
I'm sure there is no great demand but I tried to encode a video.dat just for fun... obviously without any success.
I'm still using AutoMKV 0.80 but I found that setting the AR to 4:3 for an anamorphic video signalled 720xDDD while MkvMerge signalled 768x576 as it probably should be...
It probably no longer an issue...
:):D:eek:
Pascal
nx6
27th April 2007, 19:52
How about we add OGM container support just for fun while we're at it? (Yes, I am aware OGM is considered a "hack" container format and MKV would be the proper implementation.) :D
buzzqw
27th April 2007, 21:24
@delacroixp
Does AutoMKV support .DAT input file format
rename .dat in .mpg and is supported :D
btw .dat could be anything...
and btw(2) 768 is ok with new visual crop :D
@nx6
NO. Organism Genitic Modified are not allowed :D
mp4 and MKV is more then enough
BHH
TheRyuu
28th April 2007, 01:46
Hi,I just started using this to encode my dvds to stream to my xbox 360.
Why does my Norton Anti virus keep reporting a malicious script and how do I stop it?
Sometimes the audio doesn't get merged with the video,how can I fix that.Here is log.
Get a better Anti-Virus. :D
Best free anti virus is AOL Kaspersky (http://www.activevirusshield.com/antivirus/freeav/index.adp?). Yes, thats right. AOL did something GOOD. It has the same detection rate as the normal kaspersky (which according to tests has the best) and does not contain any maleware (as of yet).
You can read stuff about it here. (http://forums.anandtech.com/messageview.aspx?catid=33&threadid=1982241&enterthread=y)
nx6
28th April 2007, 02:38
I would add that if you're currently in school you might just check with your university's computing department. Many colleges give students subscriptions to major antivirus software to keep their networks free of viruses.
I'm using Sophos Anti-Virus 6 (provided by my college) right now.
delacroixp
28th April 2007, 13:07
Get a better Anti-Virus. :D
Best free anti virus is AOL Kaspersky (http://www.activevirusshield.com/antivirus/freeav/index.adp?). Yes, thats right. AOL did something GOOD. It has the same detection rate as the normal kaspersky (which according to tests has the best) and does not contain any maleware (as of yet).
You can read stuff about it here. (http://forums.anandtech.com/messageview.aspx?catid=33&threadid=1982241&enterthread=y)
Gr8... :thanks: for the heads-up...
:):D:eek:
Pascal
delacroixp
28th April 2007, 13:10
@delacroixp
rename .dat in .mpg and is supported :D
btw .dat could be anything...
and btw(2) 768 is ok with new visual crop :D
@nx6
:thanks: much... :stupid:
:):D:eek:
Pascal
payne_en_diaz
28th April 2007, 14:55
Norton is probably alarmed by the scripts that AutoMKV uses that are creating many files on their own, which are then used in other scripts to make even more files. The result being Norton thinks your machine has been inducted into a zombie net, or is building a virus from scratch in-house like a trojan to avoid Norton's protection that is monitoring your network connection.
I dumped Norton years ago otherwise I would check around in the settings to see what could be "toned down" to allow things to run more smoothly.
Thanks,so thats why the audio doesnt get merged because nortons is stopping it?
Also why is Norton not a good AV.Isn't it just doing its job by alerting me of a script?
In my version of Nortons(2002) there is an option to turn off script blocking i'll try that but won't that expose me to potential harmful scripts?
buzzqw
28th April 2007, 15:36
In my version of Nortons(2002)
that's quite old, i suggest to upgrade to 2007
Norton has made quite strong progress
but won't that expose me to potential harmful scripts?
that's a good point.
i suggest if norton has this option to esclude from on access scanner the directory of automkv and the teporary directory of encoding file
BHH
P.S http://www.av-comparatives.org/seiten/ergebnisse_2007_02.php for an update antivirus comparison
movmasty
29th April 2007, 18:24
Excuse me if i didnt read all the 2000 posts :o
But aac audio works in avi container ?? :helpful:
buzzqw
29th April 2007, 19:13
no, not work because isn't possible (in normal way)
in avi is allowed to mux only mp3 or ac3
aac is allowed in matroska (mkv) or mp4
BHH
Unrealbr
30th April 2007, 02:07
no, not work because isn't possible (in normal way)
in avi is allowed to mux only mp3 or ac3
aac is allowed in matroska (mkv) or mp4
BHH
maybe you could make ac3 5.1 work with mkv, i'd be happy :D
movmasty
30th April 2007, 04:55
no, not work because isn't possible (in normal way)
in avi is allowed to mux only mp3 or ac3
aac is allowed in matroska (mkv) or mp4
BHH:thanks:
Thanks :(
But possible that no one finds some hack for AAC audio in avis??
movmasty
30th April 2007, 05:13
Since "mkvmagic is a ended project." i reply my post here
"Hi, in the wide resize section of Mkv i dont see the Bell filter,
i'm using it with good results for pics, so would be nice to have for movies too,
or maybe some filter that i dont know gives same results of Bell?(removing noise but sharper than bilinear)"
http://automkv.wiki-site.com/images/2/26/Resizer.png
buzzqw
30th April 2007, 07:38
about bell filter
http://forum.doom9.org/showthread.php?t=118282
and btw, if you know how to tweak gauss... post your info :)
BHH
Unrealbr
30th April 2007, 12:16
Hey Buzzqw.
I've got my hands on an anime dvd9 and it has 5 chapters on it bu automkv wont see them, it will recognize it as 1 2h movie.
What could be done here so that i can split it in episodes?
buzzqw
30th April 2007, 13:50
on PGC list what you see ?
BHH
Unrealbr
30th April 2007, 14:05
on PGC list what you see ?
BHH
2:00:09:16
2:00:09:16
0:00:02:01
2:00:09:16
0:00:02:01
0:24:03:20
that.
buzzqw
30th April 2007, 14:26
i suppose that "2:00:09:16" is the full lenght of those episodes... if so i suggest to do 1 big mkv and use chapter for "splitting" those episodes...
the ifo isn't reporting 5 episodes... so... i cannot do anything
BHH
Unrealbr
30th April 2007, 14:28
i suppose that "2:00:09:16" is the full lenght of those episodes... if so i suggest to do 1 big mkv and use chapter for "splitting" those episodes...
the ifo isn't reporting 5 episodes... so... i cannot do anything
BHH
Is there any way i can set a trim in automkv for it rip only from frame X to frame Y?
buzzqw
30th April 2007, 14:33
YES!
use the "Last line avs Script" and write trim(xxx,yyyy) :)
BHH
P.S. i will try to add this to the new preview fuction...
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.