Hi Over a month ago i did a DVD Rip of one of my old movies 'Hollow Man' and converted it to DivX in the XviD format to 2CD's for better quality which is normally fine for me but the problem i have now is that my Auido is AC3 (0x2000) which is fine playing on my PC because i have that Codec installed but i wanted to experiment and convert it to one KVCD.
I used DialHots version 3 Script and simple took out the ,false after the AviSource lines as i use Tok and didnt know how i could use 2 external audio MP2 for each of the AVI's and i have no idea of how to write a script that could handle the audio seperately for each avi.
I PM'ed RenalUnit and he was quite helpful in telling me how to deal with multipal AVI Sources and told me how to add them in my script but i dont want to keep bugging him lol so i thought id put this post up and get some ideas on my prob.
The problem is with the AC3 Audio after creating my script:
Code:
#==============================================#
# -= AviSynth script by MovieStacker v2.0.0 (beta3) =- #
#==============================================#
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\atc.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Blockbuster.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\DctFilter.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Deen.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\GripFit_YV12.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\undot.dll")
AviSource("C:\Movies\Hollow Man\Hollow_cd1.avi") ++
\AviSource("C:\Movies\Hollow Man\Hollow_cd2.avi")
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max=3,variance=0.1,seed=1)
ATC(2,3,5,0.5,false)
GripCrop(HEIGHT, WIDTH, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
GripBorders()
Now when i put that script into Media Player to test it like i always do WMP gave me the following error:
"
ACM failed to suggest a compatible PCM format"
"
(C:\Movies\Hollow Man\Hollow.avs, line 14"
Like i said the audio is AC3 @ 48Khz bitrate=192Kb/s (96/ch stereo CBR)
Could some one please suggest a script line that i could add to deal with this please as i need the audio to be converted to MP2 now.
Thanks in advance.