View Single Post
Old 15th September 2009, 14:32   #2011  |  Link
Mrsash
Registered User
 
Join Date: Jan 2002
Posts: 210
Buzz regarding my bluray encoding problem. The moment I unticked multi thread it started working. Anyway I had posted this problem in x264 thread for which one of them advised instaed of this in the script

SetMemoryMax(512)
SetMTMode(2,0)

#Source File
AVCSource("F:\HDConvertToX\temp\job0\movie.dga")


#Applying Resizing
GaussResize(1920,1072,0,4,-0,-4,p=75)

#Insert Filters As Requested

hqdn3d(1)




You only need to "disable" the multithreaded opening of the source material ... so your AVS script (taken from the one in the logfile) should read:

SetMemoryMax(512)
SetMTMode(2,0)

SetMTMode(5,0)
AVCSource("F:\HDConvertToX\analysis\movie.dga")
SetMTMode(2,0)

GaussResize(1920,1072,0,4,-0,-4,p=75)
hqdn3d(1)


Well this script was made by HDC(not sure) so is this correct?


http://forum.doom9.org/showthread.ph...49#post1325649
Mrsash is offline   Reply With Quote